/* ============================================================
   DR LIZELLE NORTJE — GLOBAL STYLESHEET
   AetherForge Designs
   Fonts: Instrument Serif + DM Sans (Google Fonts)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --teal:       #2BBFBF;
  --silver:     #B8BEC9;
  --navy:       #1A2744;
  --gold:       #C9A84C;
  --rose:       #E8A0A0;
  --bg-light:   #FAFAF8;
  --bg-cream:   #F5F3EF;
  --bg-dark:    #1A2744;
  --text-dark:  #3D3D3D;
  --text-white: #FFFFFF;

  --ff-serif: 'Instrument Serif', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 100px;
  --section-py-mob: 60px;
  --card-gap: 24px;
  --radius-card: 16px;
  --radius-btn: 50px;

  --shadow-card: 0 6px 32px rgba(0,0,0,0.12);
  --shadow-float: 0 12px 48px rgba(0,0,0,0.16);
}

/* ── BODY ── */
body {
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Subtle global grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.container--narrow {
  max-width: 760px;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  opacity: 0.9;
  margin-bottom: 12px;
}
.section-h2--centre { text-align: center; margin-bottom: 56px; }

.section-sub {
  font-family: var(--ff-sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 28px;
}

.section-body {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 65ch;
}
.section-body--centre {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
  opacity: 0.7;
  margin-bottom: 28px;
}

/* ── BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: var(--teal);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(43,191,191,0.25);
  white-space: nowrap;
}
.btn:hover {
  background: #25aaaa;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(43,191,191,0.32);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn--sm { height: 42px; padding: 0 22px; font-size: 14px; }

/* ── TEXT LINK ── */
.link {
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.link:hover { opacity: 0.75; text-decoration: underline; }
.link--light { color: var(--teal); }

.centre-link { text-align: center; margin-top: 12px; }

/* ── WAVE DIVIDERS ── */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { width: 100%; display: block; }
/* "to-X" = SVG path fill colour (next section); default bg = most common "from" colour */
.wave-divider--to-cream { background: var(--bg-light); }
.wave-divider--to-dark  { background: var(--bg-cream); }
.wave-divider--to-light { background: var(--bg-light); }
/* Background overrides for non-standard from/to colour combos */
.wave-divider--bg-light { background: var(--bg-light); }
.wave-divider--bg-cream { background: var(--bg-cream); }
.wave-divider--bg-dark  { background: var(--bg-dark); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--silver);
  box-shadow: 0 2px 16px rgba(26,39,68,0.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; flex-direction: column; gap: 1px; }
.nav__brand-link { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.nav__name {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav__tagline {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--navy);
  opacity: 0.5;
  font-style: italic;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.68;
  transition: opacity 0.2s;
}
.nav__link:hover { opacity: 1; }

/* Hamburger — hidden on desktop, shown on mobile via media query */
.nav__hamburger { display: none; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  background: var(--bg-cream) url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=75') center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  align-items: stretch;
  gap: 0;
}
.hero__text {
  margin: 32px 0 32px clamp(24px, 4vw, 60px);
  padding: clamp(28px, 3vw, 48px) clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(26,39,68,0.18), 0 2px 14px rgba(26,39,68,0.08);
  border: 1px solid rgba(184,190,201,0.55);
}

/* Hero panel — contained portrait, in scale with the text */
.hero__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 40px 52px 16px;
  overflow: hidden;
}
.hero__panel-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(26,39,68,0.20), 0 4px 18px rgba(26,39,68,0.10);
}
.hero__panel-overlay {
  display: none;
}

.hero__pretag {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin-bottom: 12px;
}

.hero__h1 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 12px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero__sub {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 10px;
}

.hero__body {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 66ch;
  margin-bottom: 8px;
  line-height: 1.6;
}
.hero__body--sm { font-size: 14px; opacity: 0.6; margin-bottom: 14px; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  margin-top: 4px;
}
.trust-bar li {
  font-family: var(--ff-sans);
  font-size: 11.5px;
  color: var(--navy);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ============================================================
   SECTION 2 — PROBLEM
   ============================================================ */
.problem {
  background: var(--bg-cream);
  padding: var(--section-py) 0;
}

/* Bento grid — uniform 3-col */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
/* Centre the 7th card in its row */
.bento .card:last-child { grid-column: 2; }

/* Card base — retro warm parchment style */
.card {
  background: linear-gradient(160deg, #faf8f4 0%, #fffdf7 100%);
  border-radius: 24px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184,190,201,0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Grain texture */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.05;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px) rotate(1.2deg) scale(1.015);
  box-shadow: 0 20px 56px rgba(0,0,0,0.14);
  z-index: 2;
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.65);
  flex-shrink: 0;
  opacity: 0.8;
}
.card__h {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  color: rgba(31,27,29,0.80);
  line-height: 1.3;
  margin-bottom: 12px;
}
.card__body {
  font-size: 15px;
  color: rgba(31,27,29,0.56);
  line-height: 1.65;
}

/* Pivot statement */
.pivot {
  text-align: center;
  padding: 60px 0 48px;
  position: relative;
}
.pivot__curve {
  width: 120px;
  margin-inline: auto;
  margin-bottom: 20px;
  display: block;
}
.pivot__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  color: var(--teal);
}

/* ============================================================
   SECTION 3 — AGITATION
   ============================================================ */
.agitation {
  background: var(--bg-dark);
  padding: 120px 0;
  position: relative;
}
/* Dot grid — subtle pattern on dark bg */
.agitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.agitation::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.04;
  pointer-events: none;
}

.agitation .container { position: relative; z-index: 1; }

.agitation__h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 36px;
}

.agitation__body {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 22px;
}

.agitation__quote {
  position: relative;
  margin: 64px 0;
  text-align: center;
}
.agitation__quote-mark {
  width: 60px;
  margin: 0 auto 16px;
  display: block;
}
.agitation__quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
  color: var(--teal);
}

.agitation__pivot {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 22px;
}

.agitation .link--light {
  margin-top: 8px;
  display: inline-block;
}

/* ============================================================
   SECTION 4 — SOLUTION
   ============================================================ */
.solution {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}

.solution__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: start;
}

.solution__content .section-h2 { margin-bottom: 8px; }
.solution__content .section-body { max-width: 100%; }

/* 3-step process */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 36px 0 32px;
  flex-wrap: nowrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.step__num {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.step__icon {
  margin-bottom: 10px;
  opacity: 0.8;
}
.step__label {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.85;
  line-height: 1.3;
}
.step__connector {
  flex-shrink: 0;
  padding-top: 36px;
  opacity: 0.7;
}

/* Callout box */
.callout {
  background: rgba(43,191,191,0.055);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-card);
  padding: 32px;
  margin: 32px 0 36px;
}
.callout__h {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.callout__body {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.65;
}

.solution__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Testimonial */
.testimonial {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 32px;
  position: relative;
}
.testimonial::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  background: linear-gradient(180deg, var(--teal), var(--rose));
}
.testimonial__curve {
  width: 80px;
  margin-bottom: 10px;
}
.testimonial__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
}
.testimonial__attr {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.58;
  margin-bottom: 12px;
}
.testimonial__link { font-size: 14px; }

/* Solution visual and portrait */
.solution__visual {
  position: sticky;
  top: 100px;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
.portrait-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  display: block;
  box-shadow: var(--shadow-float);
  animation: float 8s ease-in-out infinite;
}
.portrait-overlay {
  position: absolute;
  inset: 0;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: linear-gradient(
    150deg,
    rgba(43,191,191,0.06) 0%,
    rgba(232,160,160,0.04) 100%
  );
  pointer-events: none;
}
.portrait-botanical {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* ============================================================
   FOOTER — BRAND STRIP
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__name {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.footer__detail {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer__nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer__link {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--teal); }

/* ============================================================
   LEGAL BAR
   ============================================================ */
.legal-bar {
  background: #000;
  padding: 14px 0;
}
.legal-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-bar__copy {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.legal-bar__credit {
  color: rgba(43,191,191,0.6);
  transition: color 0.2s;
}
.legal-bar__credit:hover { color: var(--teal); }
.legal-bar__links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.legal-bar__policy {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.legal-bar__policy:hover { color: rgba(255,255,255,0.65); }

/* Responsive */
@media (max-width: 768px) {
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__nav { gap: 16px; }
  .legal-bar__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Nav scrolled state */
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(26,39,68,0.08);
}

/* ============================================================
   SECTION 5 — WHO IT'S FOR
   ============================================================ */
.who {
  background: var(--bg-cream);
  padding: var(--section-py) 0;
}
.who__pretag,
.services__pretag,
.authority__pretag,
.testimonials__pretag,
.faq__pretag {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.85;
  margin-bottom: 14px;
}
.who .section-h2 { margin-bottom: 12px; }
.who .section-sub { margin-bottom: 48px; }
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who__card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.who__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.15);
}
.who__card--wide {
  grid-column: span 3;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: linear-gradient(135deg, rgba(43,191,191,0.06) 0%, rgba(201,168,76,0.05) 100%);
  border-color: rgba(43,191,191,0.18);
}
.who__card-icon { margin-bottom: 20px; flex-shrink: 0; }
.who__card--wide .who__card-icon { margin-bottom: 0; margin-top: 4px; }
.who__card-h {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.who__card-body {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.72;
  line-height: 1.65;
}

/* ============================================================
   SECTION 6 — SERVICES
   ============================================================ */
.services {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0 36px;
}
.service-card {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
  border: 1px solid rgba(184,190,201,0.45);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.16);
}
.service-card__num {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
}
.service-card__h {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-card__body {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.service-card__list li {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--navy);
  opacity: 0.75;
  padding: 6px 0;
  border-bottom: 1px solid rgba(184,190,201,0.4);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.service-card__cta { margin-top: auto; align-self: flex-start; }
.services__note {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--navy);
  opacity: 0.5;
  margin-top: 8px;
}

/* ============================================================
   SECTION 7 — AUTHORITY / ABOUT
   ============================================================ */
.authority {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  position: relative;
}
/* Dot grid — subtle pattern on dark bg */
.authority::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.authority::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.03;
  pointer-events: none;
}
.authority__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.authority__pretag { color: var(--teal); }
.authority__h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}
.authority__body {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 60ch;
}
.authority__credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 18px;
}
.credential__num {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 52px;
}
.credential__icon { flex-shrink: 0; }
.credential__label {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.authority__blockquote {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(43,191,191,0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
}
.authority__blockquote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--teal);
  line-height: 1.45;
  margin-bottom: 20px;
}
.authority__blockquote footer {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.authority__mission {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 28px 32px;
}
.authority__mission-h {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.authority__mission-body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Trust box (gold credentials box — authority right col) */
.authority__trust-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 28px;
}
.authority__trust-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin: 0 0 20px;
}
.authority__trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.authority__trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.authority__trust-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.authority__trust-list li strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* ============================================================
   SECTION 8 — TESTIMONIALS (MASONRY IMAGE GRID)
   ============================================================ */
.testimonials {
  background: var(--bg-cream);
  padding: var(--section-py) 0;
}
.tmasonry {
  column-count: 3;
  column-gap: 20px;
  margin: 48px 0 28px;
}
.tmason-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
  cursor: default;
}
.tmason-card:hover {
  transform: scale(1.025);
  box-shadow: 0 20px 56px rgba(0,0,0,0.18);
  z-index: 2;
}
.tmason-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.tmason-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.64) 0%,
    rgba(0,0,0,0.22) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.tmason-card__content {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 20px;
}
.tmason-card__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tmason-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.72);
  background: rgba(43,191,191,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.tmason-card__name {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  letter-spacing: 0.03em;
}
.tmason-card__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.testimonials__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.4;
  margin-top: 4px;
}

/* ============================================================
   SECTION 6b — PRICING
   ============================================================ */
.pricing {
  background: var(--bg-cream);
  padding: var(--section-py) 0;
}

.pricing__pretag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 16px;
}

.pricing__card {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
  padding: 56px 64px;
  align-items: start;
}

.pricing__divider {
  background: #e8e4dc;
  height: 100%;
  min-height: 260px;
  border-radius: 2px;
}

.pricing__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.5;
  margin: 0;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0 4px;
}

.pricing__currency {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
}

.pricing__num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--navy);
  font-weight: 700;
}

.pricing__per {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.6;
}

.pricing__total {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.55;
  margin: 0 0 20px;
}

/* Currency converter strip */
.pricing__converter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--bg-cream);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing__converter-label {
  opacity: 0.6;
}

.pricing__usd {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
}

.pricing__refresh {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  color: var(--teal);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.4s;
  display: flex;
  align-items: center;
}

.pricing__refresh:hover {
  opacity: 1;
}

.pricing__refresh.spinning svg {
  animation: spin 0.6s linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pricing__rate-note {
  font-size: 11px;
  opacity: 0.4;
  width: 100%;
  margin-top: 2px;
}

/* Includes column */
.pricing__includes-h {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 20px;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.4;
}

.pricing__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__labs-note {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.45;
  margin: 0 0 28px;
}
.pricing__cta-group {
  display: flex;
  justify-content: center;
}
.pricing__cta {
  text-align: center;
}

.pricing__trust {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .pricing__card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 40px 0;
  }
  .pricing__divider {
    height: 1px;
    min-height: unset;
    width: 100%;
  }
  .pricing__num { font-size: 3.5rem; }
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}
.faq .section-h2 { margin-bottom: 40px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq__item {
  border-bottom: 1px solid rgba(26,39,68,0.1);
}
.faq__item:first-child { border-top: 1px solid rgba(26,39,68,0.1); }
.faq__q {
  font-family: var(--ff-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--navy);
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq__item:hover .faq__q { color: var(--teal); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--teal);
  font-weight: 300;
  transition: transform 0.25s ease;
}
details[open] .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__a {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.72;
  line-height: 1.75;
  padding: 0 40px 24px 0;
  max-width: 68ch;
}

/* ============================================================
   SECTION 10 — FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  padding: var(--section-py) 0;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,191,0.1) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta__h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.final-cta__body {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: 16px;
}
.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn--gold:hover {
  background: #b8922f;
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}
.link--white { color: rgba(255,255,255,0.55); font-size: 15px; }
.link--white:hover { color: #fff; }
.final-cta__detail {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
.final-cta__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 210px;
  max-width: 210px;
}
.final-cta__trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.final-cta__trust-num {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.final-cta__trust-label {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.final-cta__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__text { margin: 20px 16px 20px 16px; padding: 28px 24px; max-width: 100%; border-radius: 16px; }
  .hero__panel { display: none; }
  .wave-blob { max-width: 320px; }
  .wave-blob--echo { display: none; }

  .solution__grid { grid-template-columns: 1fr; }
  .solution__visual { display: none; }

  .who__grid { grid-template-columns: 1fr 1fr; }
  .who__card--wide { grid-column: span 2; }

  .services__grid { grid-template-columns: 1fr 1fr; }

  .authority__grid { grid-template-columns: 1fr; gap: 48px; }

  .tmasonry { column-count: 2; }

  .final-cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .final-cta__trust { flex-direction: row; }
  .final-cta__trust-divider { width: 32px; height: 1px; }
}

@media (max-width: 768px) {
  :root { --section-py: var(--section-py-mob); }

  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bento .card:last-child { grid-column: 1; }

  .steps { flex-direction: column; align-items: flex-start; gap: 20px; }
  .step { flex-direction: row; text-align: left; gap: 16px; }
  .step__num { min-width: 28px; }
  .step__connector { display: none; }

  .agitation { padding: 70px 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 100px 32px 40px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav__links.is-open .nav__link {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    opacity: 1;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav__links.is-open .nav__link:hover,
  .nav__links.is-open .nav__link[aria-current="page"] { color: var(--teal); }
  .nav__name { font-size: 24px; }
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
  }
  .nav__ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
  }
  .nav--scrolled .nav__ham-bar { background: var(--navy); }
  /* Home page — bar colour on light bg */
  .nav:not(.nav--scrolled) .nav__ham-bar { background: var(--navy); }
  /* Open state — cross */
  .nav__hamburger[aria-expanded="true"] .nav__ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__hamburger[aria-expanded="true"] .nav__ham-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger[aria-expanded="true"] .nav__ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* Hide CTA button in nav on mobile (nav has no room) */
  .nav > .nav__inner > .btn {
    display: none;
  }
  .nav__inner > .btn--sm { display: none; }

  .who__grid { grid-template-columns: 1fr; }
  .who__card--wide { grid-column: span 1; flex-direction: column; }

  .services__grid { grid-template-columns: 1fr; }

  .tmasonry { column-count: 1; }

  .final-cta__trust { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .trust-bar { gap: 8px 14px; }
  .pivot__text { font-size: 22px; }
  .agitation__quote p { font-size: 24px; }
}
