/* =============================================
   PRABHA EV — styles.css
   Palette: Oxblood Maroon + Gold on near-black
   ============================================= */

/* === TOKENS === */
:root {
  --black:        #07030A;
  --deep:         #0D0510;
  --maroon-dark:  #120608;
  --maroon:       #1C0A0A;
  --maroon-mid:   #6B1A1A;

  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dim:     #7A6030;
  --gold-faint:   rgba(201, 168, 76, 0.08);
  --gold-border:  rgba(201, 168, 76, 0.18);

  --cream:        #F5EDD6;
  --text:         #C0AE96;
  --muted:        #7A6A58;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --section-py: clamp(5rem, 10vw, 8rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPE === */
h1, h2, h3 {
  font-family: var(--ff-display);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.05;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold);
}
strong { color: var(--gold); font-weight: 500; }

.label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.1rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.btn--gold {
  background: var(--gold);
  color: #07030A;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold-border);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* === REVEAL === */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.visible { opacity: 1; transform: none; }

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem var(--pad-x);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 3, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--gold-border);
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  font-weight: 400;
}
.nav__logo em {
  font-style: italic;
  color: var(--gold);
  margin-left: 0.25em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  border: 1px solid var(--gold-border) !important;
  padding: 0.5rem 1.25rem;
  color: var(--gold) !important;
  transition: background 0.25s, border-color 0.25s !important;
}
.nav__cta:hover {
  background: var(--gold-faint) !important;
  border-color: var(--gold) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 300;
  width: min(300px, 85vw);
  background: #0D0510;
  border-left: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  padding: 5rem 2.5rem 2.5rem;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu__link {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.25s;
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link--cta {
  margin-top: 2rem;
  border: 1px solid var(--gold);
  padding: 0.85rem 1.5rem;
  color: var(--gold);
  text-align: center;
  border-bottom: 1px solid var(--gold);
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu__overlay.visible { opacity: 1; pointer-events: all; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__orb--1 {
  width: min(700px, 100vw);
  height: min(700px, 100vw);
  background: radial-gradient(circle, rgba(107,26,26,0.45) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  bottom: 50px;
  left: -100px;
}
.hero__graphic {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(480px, 45vw);
  height: min(480px, 45vw);
  pointer-events: none;
}
.hero__rings {
  width: 100%;
  height: 100%;
  animation: slowRotate 60s linear infinite;
}
@keyframes slowRotate {
  to { transform: rotate(360deg); }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__heading {
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 2.75rem;
  max-width: 400px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Hero credential badge — desktop anchor for the right side */
.hero__badge {
  position: absolute;
  bottom: 5.5rem;
  right: calc(var(--pad-x) + 0.5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}
.hero__badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.hero__badge-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.75;
}
.hero__badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__badge-rule {
  width: 1px;
  height: 36px;
  background: var(--gold-border);
  align-self: flex-end;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ==================== TRUST BAR ==================== */
.trustbar {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: rgba(201,168,76,0.025);
  padding: 1.25rem var(--pad-x);
}
.trustbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.trustbar__gem { color: var(--gold); font-size: 0.55rem; }
.trustbar__sep {
  width: 1px;
  height: 18px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* ==================== STORY ==================== */
.story {
  background: var(--deep);
  padding: var(--section-py) var(--pad-x);
  border-bottom: 1px solid var(--gold-border);
}
.story__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.story__left h2 {
  font-size: clamp(2.5rem, 4.5vw, 5.5rem);
  margin-bottom: 2rem;
}
.story__left p {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 1.4rem;
  line-height: 1.85;
}
.story__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story__card {
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  padding: 2rem 2rem 1.75rem;
  transition: border-color 0.3s;
}
.story__card:hover { border-color: rgba(201,168,76,0.45); }
.story__card--inset { margin-left: 1.5rem; }
.story__card-letter {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.story__card-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.story__card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==================== SERVICES ==================== */
.services {
  padding: var(--section-py) var(--pad-x);
  background: var(--black);
}
.services__header {
  max-width: var(--max-w);
  margin: 0 auto 4.5rem;
  text-align: center;
}
.services__header .label { justify-content: center; display: flex; align-items: center; }
.services__header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.services__header p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.85;
}
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.scard {
  background: var(--deep);
  border: 1px solid var(--gold-border);
  padding: 3rem;
  transition: border-color 0.3s, transform 0.3s;
}
.scard:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.scard--alt {
  background: var(--maroon);
}
.scard__tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.85rem;
  margin-bottom: 2rem;
}
.scard__icon {
  width: 80px;
  height: 50px;
  margin-bottom: 1.75rem;
}
.scard h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.scard > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.85;
}
.scard__features {
  margin-bottom: 2.25rem;
  border-top: 1px solid var(--gold-border);
}
.scard__features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gold-border);
  letter-spacing: 0.04em;
}
.scard__features li::before {
  content: '-';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ==================== PROCESS ==================== */
.process {
  background: var(--deep);
  padding: var(--section-py) var(--pad-x);
  border-top: 1px solid var(--gold-border);
}
.process__header {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  text-align: center;
}
.process__header .label { justify-content: center; display: flex; align-items: center; }
.process__header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}
.process__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.process__num {
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.32;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.process__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  font-family: var(--ff-display);
  font-weight: 400;
}
.process__body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.85;
}
.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
  align-self: center;
  margin-top: -80px;
}

/* ==================== STATS ==================== */
.stats {
  background: var(--maroon);
  padding: clamp(4rem, 8vw, 6rem) var(--pad-x);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__item { position: relative; }
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--gold-border);
}
.stats__num {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats__num:not(.stats__num--noplus)::after { content: '+'; font-size: 0.55em; }
.stats__num--only::before {
  content: 'Only';
  display: block;
  font-family: var(--ff-display);
  font-size: 0.28em;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: -0.2em;
}
.stats__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==================== CONTACT ==================== */
.contact {
  padding: var(--section-py) var(--pad-x);
  background: var(--black);
}
.contact__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.contact__left h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.contact__left > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.contact__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact__detail {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.25rem;
}
.contact__detail-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact__detail p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.65;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #040108;
  border-top: 1px solid var(--gold-border);
  padding: 4.5rem var(--pad-x) 2.5rem;
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer__logo em { font-style: italic; color: var(--gold); margin-left: 0.2em; }
.footer__brand p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.8;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a { color: var(--muted); transition: color 0.25s; }
.footer__legal a:hover { color: var(--cream); }

/* ==================== RESPONSIVE ==================== */

/* 1100px — trim nav padding, fit trustbar on one row, shrink rings */
@media (max-width: 1100px) {
  .nav, .nav.scrolled {
    padding-left: clamp(1.5rem, 3.5vw, 2.5rem);
    padding-right: clamp(1.5rem, 3.5vw, 2.5rem);
  }
  .trustbar__item { padding-left: 1rem; padding-right: 1rem; }
  .hero__graphic { width: min(380px, 38vw); height: min(380px, 38vw); }
}

/* 900px — real structural break: grids go single column */
@media (max-width: 900px) {
  .hero__badge { display: none; }
  .story__wrap,
  .services__grid,
  .contact__wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story__card--inset { margin-left: 0; }
  .process__steps { flex-direction: column; align-items: center; gap: 3.5rem; }
  .process__connector { display: none; }
  .process__step { max-width: 500px; width: 100%; text-align: left; padding: 0; }
  .process__num { font-size: 3.5rem; display: inline-block; margin-bottom: 0.5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2)::after,
  .stats__item:nth-child(4)::after { display: none; }
  .contact__right { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* 768px — mobile nav, hide hero graphic, stack trustbar */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .hero__graphic { display: none; }
  .hero__heading { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; gap: 0.75rem; }
  .hero__eyebrow::before { width: 24px; }
  .trustbar { padding-top: 1rem; padding-bottom: 1rem; }
  .trustbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  .trustbar__sep { display: none; }
  .trustbar__item {
    padding: 0.4rem 0;
    font-size: 0.65rem;
    white-space: normal;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item::after { display: none !important; }
  .process__step { max-width: 100%; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* 480px — small mobile: stack buttons, single-col contact details & footer nav */
@media (max-width: 480px) {
  :root { --section-py: clamp(3rem, 10vw, 4.5rem); }
  .hero__heading { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero__sub { font-size: 0.88rem; }
  .hero__actions,
  .contact__actions { flex-direction: column; }
  .hero__actions .btn,
  .contact__actions .btn { text-align: center; justify-content: center; }
  .scard { padding: 2rem 1.5rem; }
  .scard h3 { font-size: 1.6rem; }
  .contact__right { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats__num { font-size: clamp(2.8rem, 10vw, 3.5rem); }
  .story__card { padding: 1.5rem; }
  .story__card-letter { font-size: 2.8rem; }
  .footer__nav { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; }
  .footer__legal { flex-direction: column; align-items: center; gap: 0.5rem; }
  .process__header { margin-bottom: 3rem; }
}

/* ==================== COVERAGE ==================== */
.coverage {
  padding: var(--section-py) var(--pad-x);
  background: var(--deep);
  border-top: 1px solid var(--gold-border);
}
.coverage__header {
  max-width: var(--max-w);
  margin: 0 auto 4.5rem;
  text-align: center;
}
.coverage__header .label { justify-content: center; display: flex; align-items: center; }
.coverage__header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.coverage__header p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.85;
}
.coverage__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.vcard {
  display: block;
  background: var(--black);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.vcard:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.vcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--maroon);
}
.vcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.35s, transform 0.5s;
}
.vcard:hover .vcard__thumb img { opacity: 1; transform: scale(1.04); }
.vcard__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcard__info { padding: 1.5rem; }
.vcard__tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.vcard__info h3 {
  font-size: 0.98rem;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.vcard__channel {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Coverage: "Follow our work" row */
.coverage__follow {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 2.5rem var(--pad-x) 0;
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.coverage__follow-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage__follow-sep {
  width: 1px;
  height: 16px;
  background: var(--gold-border);
  flex-shrink: 0;
}
.coverage__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
}
.coverage__social-link:hover { color: var(--gold); }

/* Coverage responsive */
@media (max-width: 768px) {
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__follow { gap: 1rem; }
  .coverage__follow-sep { display: none; }
}

/* ==================== NAV SOCIAL ICON ==================== */
.nav__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.25s;
  padding: 0.2rem;
}
.nav__social-icon:hover { color: var(--gold); }

/* ==================== MOBILE MENU ADDITIONS ==================== */
.mobile-menu__link--phone {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  border-bottom: none;
  padding-top: 1.5rem;
  text-transform: none;
}
.mobile-menu__link--phone:hover { color: var(--gold); }
.mobile-menu__socials {
  display: flex;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: auto;
}
.mobile-menu__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.mobile-menu__socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-faint);
}

/* ==================== CONTACT PHONE ==================== */
.contact__phone {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.contact__phone a { color: var(--gold); transition: opacity 0.2s; }
.contact__phone a:hover { opacity: 0.75; }

/* ==================== FOOTER SOCIAL ==================== */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer__social-link:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.45);
  background: var(--gold-faint);
}

/* ==================== WHATSAPP FAB ==================== */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
@media (max-width: 480px) {
  .wa-fab { bottom: 1.25rem; right: 1.25rem; width: 54px; height: 54px; }
}

/* ==================== PAGE LAYOUT ==================== */
.page-hero {
  padding: 10rem var(--pad-x) 4rem;
  background: var(--black);
  border-bottom: 1px solid var(--gold-border);
}
.page-hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.25rem;
}
.page-lede {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
}

.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.25s;
}
.text-link:hover { opacity: 0.75; }

.section-action {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  text-align: center;
}

.page-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem var(--pad-x);
}
.page-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.page-nav a:hover { color: var(--gold); }

/* Services page: 4 cards */
.services__grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .services__grid--4 { grid-template-columns: 1fr; }
}
