/* ============================================================
   Staplenet — styles.css
   Sections below are added per task. Section markers stay.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --dstv-blue:      #0072CE;
  --dstv-blue-deep: #003E7E;
  --dstv-blue-soft: #E6F1FB;
  --gold:           #D9A441;
  --gold-deep:      #B7861E;
  --gold-soft:      #FBF3DD;

  /* Neutrals */
  --ink:            #0E1828;
  --ink-deep:       #060A14;
  --ink-soft:       #2A3447;
  --muted:          #5C6577;
  --muted-soft:     #8A93A6;
  --border:         #E5EAF1;
  --border-soft:    #EEF1F6;
  --surface:        #F6F8FB;
  --surface-2:      #FFFFFF;
  --bg:             #FFFFFF;

  /* Status */
  --success:        #15A06B;
  --danger:         #DC2626;

  /* Layout */
  --header-h: 4.5rem;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadow system — layered, soft, modern */
  --shadow-1: 0 1px 2px rgba(14,24,40,0.04), 0 1px 3px rgba(14,24,40,0.06);
  --shadow-2: 0 4px 12px rgba(14,24,40,0.06), 0 2px 4px rgba(14,24,40,0.04);
  --shadow-3: 0 12px 28px rgba(14,24,40,0.10), 0 4px 10px rgba(14,24,40,0.06);
  --shadow-4: 0 24px 48px rgba(14,24,40,0.14), 0 8px 16px rgba(14,24,40,0.08);
  --shadow-gold: 0 8px 22px rgba(217,164,65,0.28);

  /* Type */
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01", "cv02";
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--dstv-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--dstv-blue-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 1.8vw + 1rem, 2.5rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem); letter-spacing: -0.015em; }
p  { margin: 0 0 1em; }
button { font: inherit; }

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 3. Layout primitives ---------- */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.section {
  padding-block: clamp(4rem, 6vw + 1rem, 7rem);
}
.section--dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,114,206,0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(217,164,65,0.10), transparent 55%),
    var(--ink);
  color: #E9ECF2;
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark h2 { color: #fff; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dstv-blue);
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              transform .15s var(--ease), box-shadow .2s var(--ease),
              border-color .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-deep);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(183,134,30,0.32);
}

.btn--outline-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* ---------- 5. Skip link ---------- */
.skip-link {
  position: absolute; left: 0; top: -3rem;
  background: var(--ink); color: #fff;
  padding: 0.75rem 1rem; z-index: 100;
  border-bottom-right-radius: var(--radius-md);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 6. Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 7. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  background: transparent;
  transition: background-color .3s var(--ease),
              box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(6, 10, 20, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.25);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand__sub {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.primary-nav { display: flex; align-items: center; gap: 1.75rem; }
.primary-nav ul {
  display: flex; gap: 1.5rem;
  list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color .2s var(--ease);
}
.primary-nav a:hover { color: #fff; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 0.6rem 1.1rem; font-size: 0.875rem; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: background-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.nav-toggle:hover { background: var(--gold-deep); transform: translateY(-1px); }
.nav-toggle:active { transform: translateY(0); }

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px; height: 18px;
}
.nav-toggle__bars span {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}
.nav-toggle__label {
  text-transform: uppercase;
  line-height: 1;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6, 10, 20, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.5rem;
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 0.25rem; }
  .primary-nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { margin-top: 0.75rem; align-self: stretch; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,10,20,0.92) 0%, rgba(6,10,20,0.72) 38%, rgba(6,10,20,0.25) 72%, rgba(6,10,20,0.05) 100%),
    linear-gradient(180deg, rgba(6,10,20,0.35) 0%, rgba(6,10,20,0.0) 30%, rgba(6,10,20,0.55) 100%);
  z-index: -1;
}
.hero__inner {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  max-width: 60rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  background: rgba(217,164,65,0.10);
  border: 1px solid rgba(217,164,65,0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,164,65,0.18);
}
.hero__title {
  color: #fff;
  margin: 0 0 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero__sub {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  max-width: 46rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.75rem; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1rem;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.875rem;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.95);
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero__chips span { color: var(--gold); font-weight: 700; }

@media (max-width: 768px) {
  .hero { min-height: 78vh; }
  .hero__bg { object-position: center right; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(6,10,20,0.55) 0%, rgba(6,10,20,0.82) 100%);
  }
}

/* ---------- Section heading helpers ---------- */
.section__lede {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ---------- Services cards ---------- */
.cards {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease),
              box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,114,206,0.06) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: rgba(0,114,206,0.25);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 44px; height: 44px;
  padding: 10px;
  color: var(--dstv-blue);
  background: var(--dstv-blue-soft);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.card:hover .card__icon {
  transform: scale(1.06);
  background: #D5E7F7;
}
.card h3 { margin: 0 0 0.5rem; color: var(--ink); }
.card p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.card__cta {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dstv-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.card__cta:hover {
  color: var(--dstv-blue-deep);
  gap: 0.55rem;
}

/* ---------- Why us ---------- */
.why-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-grid li {
  color: rgba(255,255,255,0.85);
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.why-grid li:hover {
  border-color: rgba(217,164,65,0.4);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.why-grid h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.why-grid p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.why-grid__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.why-grid__num::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gallery-item {
  border: 0; padding: 0; background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block; width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-2px);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,10,20,0.55) 100%);
  pointer-events: none;
  opacity: 0; transition: opacity .25s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,10,20,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox__img {
  max-width: 90vw; max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-4);
}
.lightbox__cap { color: rgba(255,255,255,0.85); margin-top: 1rem; font-size: 0.9375rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.75rem;
  line-height: 1;
  display: grid; place-items: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.about__reg {
  font-size: 0.8125rem;
  color: var(--muted-soft);
  margin-top: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.about__media {
  margin: 0;
  position: relative;
}
.about__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-4);
}
.about__media figcaption {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Chips ---------- */
.chips {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem;
}
.chips li {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.chips li:hover {
  background: var(--dstv-blue-soft);
  border-color: rgba(0,114,206,0.3);
  color: var(--dstv-blue-deep);
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; max-width: 56rem; }
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  transition: padding .2s var(--ease);
}
.faq-list details:first-of-type { border-top: 1px solid var(--border); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
  padding-right: 2.5rem;
  position: relative;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .2s var(--ease);
}
.faq-list summary:hover { color: var(--dstv-blue); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 28px; height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.faq-list summary::before {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  color: var(--dstv-blue);
  z-index: 1;
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::before { transform: rotate(45deg); }
.faq-list details[open] summary::after { background: var(--dstv-blue-soft); border-color: rgba(0,114,206,0.3); }
.faq-list p {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 50rem;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}
.contact-info {
  list-style: none; padding: 0; margin: 2.25rem 0 0;
  display: grid; gap: 1rem;
}
.contact-info li {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.contact-info a {
  color: #fff;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.contact-info a:hover { color: var(--gold); }

/* Quote form */
.quote-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-4);
  display: grid; gap: 1rem;
}
.quote-form__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.field__opt {
  color: var(--muted-soft);
  font-weight: 500;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 0.78rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: #CBD3DF;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--dstv-blue);
  box-shadow: 0 0 0 4px rgba(0,114,206,0.14);
}
.quote-form__submit {
  margin-top: 0.5rem;
  justify-self: start;
}
.quote-form__status { margin: 0.5rem 0 0; font-weight: 500; font-size: 0.9375rem; }
.quote-form__status.is-ok  { color: var(--success); }
.quote-form__status.is-err { color: var(--danger); }

/* Honeypot — visually hide but stay in DOM */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info li { grid-template-columns: 1fr; gap: 0.2rem; }
  .quote-form { padding: 1.75rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.9375rem;
}
.site-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .brand__mark { font-size: 1.125rem; }
.site-footer__tag {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.site-footer nav ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.55rem;
}
.site-footer a {
  color: rgba(255,255,255,0.8);
  transition: color .2s var(--ease);
}
.site-footer a:hover { color: var(--gold); }
.site-footer__contact {
  font-weight: 500;
  line-height: 1.9;
}
.site-footer__legal {
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ---------- Mobile call FAB ---------- */
.call-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 58px; height: 58px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 40;
  transition: opacity .2s var(--ease), transform .2s var(--ease), background-color .2s var(--ease);
}
.call-fab:hover {
  background: var(--gold-deep);
  color: var(--ink);
  transform: scale(1.06);
}
.call-fab.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }

@media (max-width: 960px) {
  .call-fab { display: flex; }
}

/* ---------- Anchor scroll offset (sticky header) ---------- */
section[id], main[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
