/* ============================================
   BrownTuition — Production Design System
   ============================================ */

/* ── TOKENS ── */
:root {
  /* Brand */
  --blue:       #1547EB;
  --blue-deep:  #0A2680;
  --blue-mid:   #1A3060;
  --blue-light: #3A62F0;
  --amber:      #D4621A;
  --amber-lt:   #F07A38;
  --amber-pale: #FDE8D4;
  --ink:        #0D1A2E;
  --cream:      #FAF7F3;
  --bg:         #F0EDE8;
  --white:      #FFFFFF;
  --grey:       #8A8480;
  --muted:      rgba(255,255,255,0.65);

  /* Theme tokens (overridden by data-theme) */
  --t-bg:       var(--bg);
  --t-surface:  var(--white);
  --t-ink:      var(--ink);
  --t-muted:    #5A5450;
  --t-primary:  var(--blue);
  --t-accent:   var(--amber);
  --t-accent-lt:var(--amber-lt);
  --t-hero-bg:  var(--blue);
  --t-border:   rgba(0,0,0,0.08);

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Spacing */
  --section-pad: 7.5rem 5rem;
  --radius: 8px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(13, 26, 46, 0.04), 0 2px 6px rgba(13, 26, 46, 0.04);
  --shadow-md: 0 6px 18px rgba(13, 26, 46, 0.06), 0 2px 6px rgba(13, 26, 46, 0.04);
  --shadow-lg: 0 18px 48px rgba(13, 26, 46, 0.10), 0 6px 16px rgba(13, 26, 46, 0.05);
}

/* ── THEME: EDITORIAL (dark) ── */
[data-theme="editorial"] {
  --t-bg:       #090E1A;
  --t-surface:  #111827;
  --t-ink:      #F0EDE8;
  --t-muted:    rgba(240,237,232,0.55);
  --t-primary:  #4A7AFF;
  --t-accent:   #C8932A;
  --t-accent-lt:#E8B040;
  --t-hero-bg:  #090E1A;
  --t-border:   rgba(255,255,255,0.08);
}

/* ── THEME: MINIMAL (clean white) ── */
[data-theme="minimal"] {
  --t-bg:       #F8F7F5;
  --t-surface:  #FFFFFF;
  --t-ink:      #111111;
  --t-muted:    #555555;
  --t-primary:  #1547EB;
  --t-accent:   #D4621A;
  --t-accent-lt:#F07A38;
  --t-hero-bg:  #FFFFFF;
  --t-border:   rgba(0,0,0,0.07);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  background: var(--t-bg);
  color: var(--t-ink);
  overflow-x: hidden;
  max-width: 100vw;
  transition: background 0.4s, color 0.4s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11", "kern";
}
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; }

/* Long text in flex/grid children must be allowed to shrink */
.hero-left, .hero-body, .about-content, .enquiry-left, .enquiry-right,
.problem-text, .step, .step-desc, .service-card, .service-desc,
.faq-answer-inner, .footer-col, .footer-brand, .contact-item, .review-caption,
.section-sub, .form-fineprint, .consent-label, .pricing-list li {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Premium focus ring — visible only on keyboard */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--t-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection — branded */
::selection { background: var(--amber-pale); color: var(--ink); }

/* ── MATH TEXTURE ── */
.math-texture { position: relative; overflow: hidden; }
.math-texture::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='5' y='20' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E+%3C/text%3E%3Ctext x='25' y='20' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E%CE%94%3C/text%3E%3Ctext x='45' y='20' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E%C3%97%3C/text%3E%3Ctext x='5' y='40' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E%E2%88%9E%3C/text%3E%3Ctext x='25' y='40' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E%CF%80%3C/text%3E%3Ctext x='45' y='40' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3E%CE%A3%3C/text%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.math-texture > * { position: relative; z-index: 1; }

/* ── RESIT ANNOUNCEMENT BAR ── */
.resit-bar {
  background: var(--amber);
  background-image: linear-gradient(90deg, var(--amber) 0%, var(--amber-lt) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 0.65rem 4rem;
  position: relative;
  z-index: 210;
  font-size: 0.92rem;
  line-height: 1.3;
}
.resit-bar[hidden] { display: none; }
.resit-bar-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: resit-pulse 2s infinite;
}
@keyframes resit-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) { .resit-bar-pulse { animation: none; } }
.resit-bar-text { font-weight: 300; }
.resit-bar-text strong { font-weight: 800; letter-spacing: -0.01em; }
.resit-bar-cta {
  background: var(--ink); color: #fff;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.resit-bar-cta:hover { background: var(--blue); transform: translateY(-1px); }
.resit-bar-tel {
  color: #fff; font-weight: 700; font-size: 0.86rem;
  white-space: nowrap; opacity: 0.92;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 1px;
}
.resit-bar-tel:hover { opacity: 1; border-color: #fff; }
.resit-bar-close {
  position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 1.5rem; line-height: 1;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.resit-bar-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 768px) {
  .resit-bar { padding: 0.6rem 2.8rem 0.6rem 1.1rem; gap: 0.85rem; font-size: 0.8rem; flex-wrap: wrap; }
  .resit-bar-tel { display: none; }
  .resit-bar-cta { font-size: 0.66rem; padding: 0.45rem 0.95rem; letter-spacing: 0.06em; }
  .resit-bar-close { right: 0.6rem; }
}
@media (max-width: 480px) {
  .resit-bar { justify-content: flex-start; text-align: left; }
  .resit-bar-text { flex: 1 1 100%; }
}

/* ── NAVIGATION ── */
.site-nav {
  background: var(--blue);
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: sticky; top: 0; z-index: 200;
  transition: height 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 24px rgba(21,71,235,0.3);
}
[data-theme="editorial"] .site-nav { background: #090E1A; border-bottom: 1px solid rgba(255,255,255,0.06); }
[data-theme="minimal"] .site-nav { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 1px 12px rgba(0,0,0,0.07); }

.site-nav.scrolled { height: 60px; box-shadow: 0 4px 32px rgba(0,0,0,0.2); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-wordmark { display: flex; flex-direction: column; gap: 2px; }
.nav-name { font-size: 20px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: white; }
[data-theme="minimal"] .nav-name { color: var(--ink); }
.nav-name .n-amber { color: var(--amber-lt); }
[data-theme="minimal"] .nav-name .n-amber { color: var(--amber); }
.nav-tagline { font-size: 7.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
[data-theme="minimal"] .nav-tagline { color: rgba(0,0,0,0.35); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; }
[data-theme="minimal"] .nav-links a { color: rgba(0,0,0,0.6); }
.nav-links a:hover { color: white; }
[data-theme="minimal"] .nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: white; }
[data-theme="minimal"] .nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--amber) !important;
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  white-space: nowrap !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--amber-lt) !important; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; padding: 8px; border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
[data-theme="minimal"] .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-deep);
  z-index: 190; flex-direction: column;
  justify-content: center; align-items: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
[data-theme="editorial"] .nav-mobile { background: #090E1A; }
[data-theme="minimal"] .nav-mobile { background: white; }
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.01em;
  color: white; transition: color 0.2s;
}
[data-theme="minimal"] .nav-mobile a { color: var(--ink); }
.nav-mobile a:hover { color: var(--amber-lt); }
.nav-mobile .mobile-cta {
  background: var(--amber); color: white !important;
  padding: 1rem 3rem; border-radius: 8px; font-size: 1.2rem !important;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--t-accent);
  color: white;
  padding: 1.05rem 2.5rem;
  min-height: 48px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
  border: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 6px 16px rgba(212,98,26,0.18);
}
.btn-primary:hover {
  background: var(--t-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 32px rgba(212,98,26,0.32);
}
.btn-primary:active { transform: translateY(0); transition-duration: 0.1s; }
.btn-primary svg { transition: transform 0.25s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: white;
  padding: 1.05rem 2.5rem;
  min-height: 48px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.32);
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); transition-duration: 0.1s; }

.btn-outline {
  background: transparent; color: var(--t-primary);
  padding: 0.9rem 2.1rem;
  min-height: 44px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 6px; border: 1.5px solid var(--t-primary);
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-outline:hover { background: var(--t-primary); color: white; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(21,71,235,0.18); }
.btn-outline:active { transform: translateY(0); transition-duration: 0.1s; }

/* ── SECTION SHARED ── */
.section { padding: var(--section-pad); }
.section-label {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--t-primary); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--t-primary); }
.section-label.light { color: var(--t-accent-lt); }
.section-label.light::before { background: var(--t-accent-lt); }

.section-title {
  font-size: clamp(2.25rem, 4.2vw, 3.9rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--t-ink); margin-bottom: 1.5rem;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--t-primary); }
.section-title.light { color: white; }
.section-title.light em { color: var(--t-accent-lt); }

.section-sub {
  font-size: 1.075rem; color: var(--t-muted);
  max-width: 580px; line-height: 1.75; font-weight: 300;
  text-wrap: pretty;
}

/* ── HERO ── */
.hero {
  background: var(--blue);
  min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; position: relative; overflow: hidden;
}
[data-theme="editorial"] .hero { background: #090E1A; }
[data-theme="minimal"] .hero { background: var(--bg); }

.hero-left {
  padding: 6rem 4rem 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber-lt); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
[data-theme="minimal"] .hero-eyebrow { color: var(--blue); }
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: currentColor; }

.hero-heading {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-weight: 900; line-height: 0.96;
  color: white; letter-spacing: -0.03em;
  margin-bottom: 2rem;
  text-wrap: balance;
}
[data-theme="minimal"] .hero-heading { color: var(--ink); }
.hero-heading span { color: var(--amber-lt); display: block; }
[data-theme="minimal"] .hero-heading span { color: var(--blue); }

.hero-body {
  color: rgba(255,255,255,0.72);
  font-size: 1.075rem; line-height: 1.75;
  max-width: 500px; margin-bottom: 3rem; font-weight: 300;
  text-wrap: pretty;
}
[data-theme="minimal"] .hero-body { color: #5A5450; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-reviews-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.82); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
}
.hero-reviews-link:hover { color: #fff; gap: 0.8rem; }
.hero-reviews-link .hero-reviews-stars { color: var(--amber-lt); letter-spacing: 0.08em; font-size: 0.92rem; }
.hero-reviews-link svg { transition: transform 0.2s; }
.hero-reviews-link:hover svg { transform: translateX(3px); }
[data-theme="minimal"] .hero-reviews-link { color: #5A5450; }
[data-theme="minimal"] .hero-reviews-link:hover { color: var(--ink); }
[data-theme="minimal"] .hero-reviews-link .hero-reviews-stars { color: var(--amber); }

.hero-right {
  position: relative; overflow: hidden;
  background: var(--blue-mid);
}
[data-theme="editorial"] .hero-right { background: #1A2840; }
[data-theme="minimal"] .hero-right { background: #E8E4DF; }

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 1; mix-blend-mode: normal;
  /* Photo shown naturally — no overlay tint */
}
[data-theme="minimal"] .hero-photo { opacity: 1; mix-blend-mode: normal; }

/* Gradient overlay removed — photo shown clean */

.hero-badge {
  position: absolute; bottom: 3rem; right: 3rem;
  background: var(--amber); color: white;
  padding: 1.45rem 2.1rem; border-radius: 12px; z-index: 2; text-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 18px 48px rgba(212,98,26,0.38), 0 4px 14px rgba(13,26,46,0.18);
  letter-spacing: -0.01em;
}
.hero-badge-num { font-size: 3rem; font-weight: 900; line-height: 1; font-feature-settings: "lnum", "tnum"; }
.hero-badge-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ink); padding: 0;
  overflow: hidden; border-top: 1px solid rgba(255,255,255,0.04);
}
[data-theme="minimal"] .trust-bar { background: var(--ink); }
.trust-marquee {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.15rem 3rem;
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.62); font-weight: 500;
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s var(--ease);
}
.trust-marquee:hover .trust-item { color: rgba(255,255,255,0.5); }
.trust-marquee:hover .trust-item:hover { color: white; }
.trust-dot {
  width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(212,98,26,0.18);
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--t-surface);
  padding: var(--section-pad);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; margin-top: 4rem;
}
.problem-list { display: flex; flex-direction: column; gap: 1.2rem; }
.problem-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; border-radius: 10px;
  border: 1.5px solid var(--t-border);
  background: var(--t-bg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.25s var(--ease);
}
.problem-item:hover {
  border-color: var(--t-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--amber-pale); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
[data-theme="editorial"] .problem-icon { background: rgba(200,147,42,0.15); }
.problem-text { font-size: 0.95rem; color: var(--t-muted); line-height: 1.65; text-wrap: pretty; }
.problem-text strong { color: var(--t-ink); font-weight: 700; }

.solution-card {
  background: var(--t-primary); color: white;
  padding: 3rem; border-radius: 12px;
  position: relative; overflow: hidden;
}
[data-theme="minimal"] .solution-card { background: var(--blue); }
.solution-card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='5' y='20' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.05)'%3EΔ%3C/text%3E%3C/svg%3E");
}
.solution-card > * { position: relative; z-index: 1; }
.solution-card h3 { font-size: 1.85rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.02em; }
.solution-card p { font-size: 0.95rem; line-height: 1.7; opacity: 0.82; margin-bottom: 2rem; text-wrap: pretty; }
.solution-features { display: flex; flex-direction: column; gap: 0.8rem; }
.solution-feature {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem; font-weight: 500;
}
.solution-feature::before {
  content: '✓'; width: 22px; height: 22px;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}

/* ── ABOUT ── */
.about-section {
  background: var(--t-bg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.about-visual {
  background: var(--blue); position: relative;
  min-height: 540px; display: flex; align-items: flex-end; padding: 3rem;
}
[data-theme="editorial"] .about-visual { background: #1A2840; }
.about-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 1; mix-blend-mode: normal;
}
.about-quote-card {
  position: relative; z-index: 2;
  border-left: 3px solid var(--amber); padding-left: 1.5rem;
}
.about-quote-card p {
  font-size: 1.3rem; font-weight: 300;
  color: white; line-height: 1.55; font-style: italic;
}
.about-quote-card cite {
  display: block; margin-top: 0.8rem;
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber-lt); font-style: normal;
}
.about-content {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--t-surface);
}
.stat-row {
  display: flex; gap: 2.75rem; margin: 2.5rem 0;
  padding: 2.25rem 0;
  border-top: 1px solid var(--t-border);
  border-bottom: 1px solid var(--t-border);
}
.stat-num {
  font-size: 3rem; font-weight: 900;
  color: var(--t-primary); line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.025em;
  font-feature-settings: "lnum", "tnum";
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 0.45rem; font-weight: 600; }

/* ── SERVICES ── */
.services-section { background: var(--t-bg); padding: var(--section-pad); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 2rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--t-border);
  border: 1.5px solid var(--t-border);
  border-radius: 10px; overflow: hidden;
}
.service-card {
  background: var(--t-surface); padding: 3rem 2.5rem;
  position: relative; transition: background 0.35s var(--ease), color 0.35s var(--ease);
  cursor: default;
}
.service-card:hover { background: var(--t-primary); }
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-price { color: white; transition: color 0.35s var(--ease); }
.service-card:hover .service-num { color: rgba(255,255,255,0.1); transition: color 0.35s var(--ease); }
.service-num {
  font-size: 4rem; font-weight: 900; color: rgba(21,71,235,0.07);
  position: absolute; top: 1.5rem; right: 1.75rem; line-height: 1;
  transition: color 0.35s var(--ease);
  font-feature-settings: "lnum", "tnum";
  letter-spacing: -0.02em;
}
[data-theme="editorial"] .service-num { color: rgba(255,255,255,0.04); }
.service-icon {
  width: 48px; height: 48px; background: rgba(21,71,235,0.07);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.3rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.15); }
.service-title { font-size: 1.4rem; font-weight: 800; color: var(--t-ink); margin-bottom: 1rem; transition: color 0.35s var(--ease); letter-spacing: -0.015em; }
.service-desc { font-size: 0.93rem; color: var(--t-muted); line-height: 1.72; font-weight: 300; margin-bottom: 1.5rem; transition: color 0.35s var(--ease); text-wrap: pretty; }
.service-price { font-size: 1.6rem; font-weight: 900; color: var(--t-primary); transition: color 0.35s var(--ease); letter-spacing: -0.02em; font-feature-settings: "lnum", "tnum"; }
.service-price span { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em; }
.service-tag {
  display: inline-block; background: var(--amber-pale); color: var(--amber);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-top: 0.8rem;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-tag { background: rgba(255,255,255,0.2); color: white; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--ink); padding: var(--section-pad); }
[data-theme="minimal"] .how-section { background: var(--blue-deep); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 2rem; left: 2rem; right: 2rem;
  height: 1px; background: rgba(255,255,255,0.07);
}
.step { padding: 0 2rem 0 0; }
.step-num {
  width: 4rem; height: 4rem;
  background: rgba(255,255,255,0.08); color: white;
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; margin-bottom: 2rem; position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  font-feature-settings: "lnum", "tnum";
  letter-spacing: -0.01em;
}
.step:hover .step-num { background: var(--blue); transform: translateY(-2px); border-color: rgba(255,255,255,0.18); }
.step:last-child .step-num { background: var(--amber); border-color: transparent; }
.step-title { font-size: 1.075rem; font-weight: 800; color: white; margin-bottom: 0.85rem; letter-spacing: -0.01em; }
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.72; font-weight: 300; text-wrap: pretty; }

/* ── REVIEWS BOARD (replaces old testimonials) ── */
.reviews-board-section { background: var(--t-surface); padding: var(--section-pad); position: relative; overflow: hidden; scroll-margin-top: 90px; }
.reviews-board-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(212,98,26,0.05) 0%, transparent 38%),
    radial-gradient(circle at 82% 76%, rgba(21,71,235,0.05) 0%, transparent 38%);
}
.reviews-board-head { text-align: center; margin: 0 auto 3.5rem; max-width: 880px; position: relative; }
.reviews-board-head .section-label { justify-content: center; color: var(--amber); }
.reviews-board-head .section-label::before { display: none; }
.reviews-board-head .section-title .faded-word { color: rgba(13,26,46,0.18); font-weight: 300; font-style: italic; }
[data-theme="editorial"] .reviews-board-head .section-title .faded-word { color: rgba(240,237,232,0.22); }
[data-theme="minimal"] .reviews-board-head .section-title .faded-word { color: rgba(17,17,17,0.18); }
.reviews-board-sub { margin: 1.4rem auto 0; color: var(--t-muted); font-size: 1.025rem; font-weight: 300; line-height: 1.7; max-width: 540px; text-wrap: pretty; }
.reviews-board {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 280px)); gap: 2.5rem 1.5rem;
  max-width: 1340px; margin: 0 auto; align-items: start; justify-content: center; position: relative;
}
.review-phone { transition: transform 0.4s var(--ease), filter 0.4s var(--ease); will-change: transform; transform-origin: center bottom; }
.review-phone.phone-1 { transform: rotate(-2.2deg) translateY(8px); }
.review-phone.phone-2 { transform: rotate(1.6deg) translateY(28px); }
.review-phone.phone-3 { transform: rotate(-1.3deg) translateY(2px); }
.review-phone.phone-4 { transform: rotate(2.2deg) translateY(22px); }
.review-phone.phone-5 { transform: rotate(-1.8deg) translateY(14px); }
.review-phone:hover { transform: translateY(-6px) rotate(0deg) scale(1.02); z-index: 2; }

.review-caption {
  text-align: center; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--t-muted); margin-top: 1.25rem; line-height: 1.65;
}
.review-caption b { color: var(--t-ink); font-weight: 700; }
.review-caption .review-grade {
  display: inline-block; background: var(--blue); color: white;
  padding: 3px 9px; border-radius: 100px; margin-left: 4px;
  font-weight: 500; letter-spacing: 0.08em; font-size: 0.66rem;
  white-space: nowrap;
}

/* WhatsApp phone mock — see classic-WhatsApp section near bottom of file
   (search for "The phone bezel"). The previous duplicate dark-theme block
   that sat here was removed in v2 — it was dead code that only "worked"
   because a later block overrode it. Removing it eliminates the risk of
   a partial-deploy regression rendering the reviews as plain text. */

.reviews-board-foot {
  text-align: center; margin-top: 3.5rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t-muted); position: relative;
}

@media (max-width: 1100px) {
  .review-phone.phone-1, .review-phone.phone-2, .review-phone.phone-3, .review-phone.phone-4, .review-phone.phone-5 { transform: rotate(0) translateY(0); }
}

/* ── FAQ ── */
.faq-section { background: var(--t-bg); padding: var(--section-pad); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--t-border); }
.faq-item { border-bottom: 1px solid var(--t-border); }
.faq-question {
  width: 100%; background: transparent; text-align: left;
  padding: 1.55rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  font-size: 1.025rem; font-weight: 600; color: var(--t-ink);
  cursor: pointer; transition: color 0.25s var(--ease);
  letter-spacing: -0.005em;
  min-height: 44px;
}
.faq-question:hover { color: var(--t-primary); }
.faq-question.open { color: var(--t-primary); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--t-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  font-size: 0.7rem; color: var(--t-muted);
}
.faq-question:hover .faq-chevron { background: var(--amber-pale); color: var(--amber); }
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--t-primary); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem; color: var(--t-muted); line-height: 1.75; font-weight: 300;
  max-width: 60ch; text-wrap: pretty;
}

/* ── BOOKING SECTION ── */
.booking-section {
  background: var(--t-primary); padding: var(--section-pad);
  text-align: center; position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='5' y='20' font-family='monospace' font-size='14' fill='rgba(255,255,255,0.04)'%3EΔ%3C/text%3E%3C/svg%3E");
}
.booking-section > * { position: relative; z-index: 1; }

/* ── ENQUIRY FORM ── */
.enquiry-section {
  background: var(--t-surface);
  display: grid; grid-template-columns: 1fr 1fr;
}
.enquiry-left {
  background: var(--blue); padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
[data-theme="editorial"] .enquiry-left { background: #1A2840; }
.enquiry-right { padding: 5rem 4rem; background: var(--t-surface); }

.form-title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.5rem; color: var(--t-ink); }
.form-subtitle { font-size: 0.9rem; color: var(--t-muted); margin-bottom: 2.5rem; }
.form-fineprint { font-size: 0.78rem; color: var(--t-muted); margin: 1.1rem 0 0; line-height: 1.55; text-wrap: pretty; }
.form-fineprint a { color: var(--t-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form-fineprint a:hover { color: var(--t-accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.15rem;
  background: var(--t-bg); border: 1.5px solid transparent;
  border-radius: 6px; color: var(--t-ink);
  font-family: var(--font-main); font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  min-height: 48px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(138,132,128,0.7); }
.field input:hover, .field select:hover, .field textarea:hover { background: var(--t-surface); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--t-primary); background: var(--t-surface);
  box-shadow: 0 0 0 4px rgba(21,71,235,0.10);
}
.field textarea { resize: vertical; min-height: 110px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); pointer-events: none; color: var(--t-primary);
}
.submit-btn {
  width: 100%; background: var(--t-primary); color: white;
  padding: 1.15rem; min-height: 52px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 6px; margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 6px 16px rgba(21,71,235,0.18);
}
.submit-btn:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 32px rgba(21,71,235,0.28); }
.submit-btn:active { transform: translateY(0); transition-duration: 0.1s; }
.submit-btn svg { transition: transform 0.25s var(--ease); }
.submit-btn:hover svg { transform: translateX(4px); }

/* ── CONSENT CHECKBOX ── */
.consent-field { margin: 1.6rem 0 0.5rem; }
.consent-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.82rem; line-height: 1.55;
  color: var(--t-muted); font-weight: 400;
  letter-spacing: 0; text-transform: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  background: var(--t-bg);
  border: 1.5px solid var(--t-border);
  border-radius: 6px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.consent-label:hover { border-color: var(--t-primary); }
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--t-primary);
  cursor: pointer;
}
.consent-label a { color: var(--t-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.consent-label a:hover { color: var(--t-accent); }

.form-success {
  display: none; background: #D1FAE5; border: 1px solid #6EE7B7;
  border-radius: 8px; padding: 1.5rem; margin-top: 1rem;
  color: #065F46; font-size: 0.95rem;
}
.form-error {
  display: none; background: #FEE2E2; border: 1px solid #FCA5A5;
  border-radius: 8px; padding: 1.5rem; margin-top: 1rem;
  color: #991B1B; font-size: 0.95rem;
}

.contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-item a { color: var(--amber-lt); }
.contact-item a:hover { text-decoration: underline; }
.contact-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.12);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 3rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
[data-theme="minimal"] footer { background: var(--ink); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 0.5rem; }
.footer-logo-text { font-size: 1.2rem; font-weight: 800; }
.footer-logo-text .fn1 { color: var(--amber-lt); }
.footer-logo-text .fn2 { color: white; font-weight: 600; }
.footer-tagline { font-size: 8px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: white; }
.grad-bar { height: 3px; background: linear-gradient(90deg, var(--blue) 0%, var(--amber) 100%); }

/* ── FLOATING BUTTONS ── */
.whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; font-size: 1.6rem;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: white; font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); max-width: 700px; line-height: 1.6; }
.cookie-text a { color: var(--amber-lt); }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--amber); color: white; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: 6px;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--amber-lt); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  font-size: 0.8rem; font-weight: 600; padding: 0.65rem 1rem;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s;
}
.cookie-decline:hover { color: white; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .trust-marquee { animation: none; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blue); padding: 5rem;
  position: relative; overflow: hidden;
}
[data-theme="editorial"] .page-hero { background: #0D1A2E; }
[data-theme="minimal"] .page-hero { background: var(--bg); }
.page-hero-inner { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.025em;
  color: white; margin-bottom: 1.5rem;
}
[data-theme="minimal"] .page-hero h1 { color: var(--ink); }
.page-hero h1 em { font-style: normal; color: var(--amber-lt); }
[data-theme="minimal"] .page-hero h1 em { color: var(--blue); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
[data-theme="minimal"] .page-hero p { color: #5A5450; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 2rem;
}
[data-theme="minimal"] .breadcrumb { color: rgba(0,0,0,0.35); }
.breadcrumb a { color: var(--amber-lt); }
[data-theme="minimal"] .breadcrumb a { color: var(--blue); }
.breadcrumb span { opacity: 0.4; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --section-pad: 5.5rem 3rem; }
  .site-nav { padding: 0 2.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 3rem; }
  .about-section { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .about-content { padding: 3rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { grid-column: span 1; flex-direction: column; gap: 1.5rem; padding: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
  .step { padding: 0; }
  .enquiry-section { grid-template-columns: 1fr; }
  .enquiry-left { padding: 4rem 3rem; }
  .enquiry-right { padding: 4rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4.25rem 1.5rem; }
  .site-nav { padding: 0 1.25rem; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-left { padding: 3.5rem 1.5rem 4rem; }
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 1.5rem; }
  .hero-heading { font-size: clamp(2.5rem, 11vw, 3.5rem); margin-bottom: 1.5rem; }
  .hero-body { font-size: 1.025rem; margin-bottom: 2.25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { justify-content: center; }
  .section-title { font-size: clamp(1.95rem, 7.5vw, 2.5rem); }
  .section-sub { font-size: 1rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-row { gap: 1.5rem; flex-wrap: wrap; padding: 1.75rem 0; }
  .stat-num { font-size: 2.5rem; }
  .about-content { padding: 2.75rem 1.5rem; }
  .testimonial-card { padding: 2rem 1.75rem; }
  .testimonial-featured { padding: 2.25rem 1.75rem; }
  .testimonial-featured .testimonial-text { font-size: 1.075rem; }
  .service-card { padding: 2.5rem 2rem; }
  .solution-card { padding: 2.25rem 1.75rem; }
  .booking-section .btn-primary, .booking-section .btn-ghost { width: 100%; justify-content: center; }
  footer { padding: 2.75rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-legal { flex-wrap: wrap; gap: 1.25rem; }
  .cookie-banner { padding: 1.2rem 1.25rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; }
  .trust-item { padding: 1rem 1.75rem; font-size: 0.72rem; letter-spacing: 0.14em; }
  .page-hero { padding: 3.5rem 1.5rem; }
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-tooltip { display: none; }
  .faq-question { font-size: 0.97rem; padding: 1.25rem 0; }
  .form-title { font-size: 1.55rem; }
  .enquiry-left, .enquiry-right { padding: 3rem 1.5rem; }
  .nav-mobile a { font-size: 1.65rem; }
}

/* ─────────────────────────────────────────────────────────────
   SMALL PHONE TIER · 480px and below
   Designed for iPhone SE / mini / standard (375–414px) and
   smaller Android handsets. Drops decorative elements, tightens
   padding, simplifies multi-column inline grids, and forces
   anything-but-the-essential to a single column.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 3.25rem 1.15rem; }

  /* Nav */
  .site-nav { padding: 0 1rem; height: 60px; }
  .nav-name { font-size: 17px; }
  .nav-tagline { font-size: 7px; letter-spacing: 0.18em; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-left { padding: 2.5rem 1.15rem 3.25rem; }
  .hero-eyebrow { font-size: 0.66rem; letter-spacing: 0.2em; margin-bottom: 1.15rem; }
  .hero-eyebrow::before { width: 22px; }
  .hero-heading { font-size: clamp(2.1rem, 10vw, 2.85rem); margin-bottom: 1.15rem; letter-spacing: -0.025em; }
  .hero-body { font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.65rem; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost {
    width: 100%; padding: 0.95rem 1.2rem; font-size: 0.76rem; letter-spacing: 0.12em;
  }

  /* Buttons — make sure no oversized horizontal padding overflows */
  .btn-primary, .btn-ghost { padding: 0.95rem 1.4rem; font-size: 0.78rem; }
  .btn-outline { padding: 0.8rem 1.4rem; font-size: 0.78rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 8.5vw, 2.15rem); margin-bottom: 1.1rem; }
  .section-sub { font-size: 0.95rem; line-height: 1.65; }
  .section-label { font-size: 0.66rem; letter-spacing: 0.2em; margin-bottom: 1rem; }

  /* Problem + solution */
  .problem-grid { gap: 2rem; margin-top: 2.5rem; }
  .problem-item { padding: 1.1rem; gap: 0.85rem; }
  .problem-text { font-size: 0.9rem; }
  .solution-card { padding: 1.75rem 1.4rem; }
  .solution-card h3 { font-size: 1.45rem; }
  .solution-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .solution-feature { font-size: 0.85rem; }

  /* About */
  .about-visual { min-height: 220px; padding: 2rem 1.15rem; }
  .about-quote-card p { font-size: 1.05rem; }
  .about-content { padding: 2.25rem 1.15rem; }
  .stat-row { gap: 1.1rem; margin: 1.75rem 0; padding: 1.4rem 0; }
  .stat { min-width: 0; flex: 1 1 100px; }
  .stat-num { font-size: 1.95rem; }
  .stat-label { font-size: 0.66rem; letter-spacing: 0.14em; }

  /* Services */
  .services-grid, .services-grid[style] {
    grid-template-columns: 1fr !important;
  }
  .service-card { padding: 2rem 1.4rem; }
  .service-num { font-size: 3rem; top: 1rem; right: 1rem; }
  .service-title { font-size: 1.2rem; }
  .service-desc { font-size: 0.88rem; }
  .service-price { font-size: 1.35rem; }

  /* How-it-works steps */
  .steps-grid { gap: 1.5rem; margin-top: 2.5rem; }
  .step-num { width: 3rem; height: 3rem; font-size: 1rem; margin-bottom: 1.25rem; border-radius: 8px; }
  .step-title { font-size: 1rem; }
  .step-desc { font-size: 0.85rem; }

  /* Reviews */
  .reviews-board { gap: 0.85rem; max-width: 100%; padding: 0 0.25rem; }
  .reviews-board-head { margin-bottom: 2.5rem; }
  .reviews-board-sub { font-size: 0.95rem; }
  .review-caption { font-size: 0.66rem; margin-top: 0.9rem; }
  .review-caption .review-grade { font-size: 0.62rem; padding: 2px 7px; }
  .wa-body { min-height: 320px; }
  .reviews-board-foot { font-size: 0.66rem; margin-top: 2.5rem; }

  /* FAQ */
  .faq-section { padding: var(--section-pad); }
  .faq-question { font-size: 0.92rem; padding: 1.1rem 0; gap: 0.8rem; }
  .faq-chevron { width: 26px; height: 26px; }
  .faq-answer-inner { font-size: 0.88rem; padding-bottom: 1.25rem; }
  .faq-layout { gap: 2rem; }

  /* Booking CTA */
  .booking-section .btn-primary, .booking-section .btn-ghost { width: 100%; }

  /* Enquiry form */
  .enquiry-left, .enquiry-right { padding: 2.25rem 1.15rem; }
  .form-title { font-size: 1.35rem; }
  .form-subtitle { font-size: 0.85rem; margin-bottom: 1.75rem; }
  .field input, .field select, .field textarea { padding: 0.85rem 1rem; font-size: 0.92rem; }
  .submit-btn { padding: 1rem; font-size: 0.78rem; letter-spacing: 0.14em; }
  .contact-details { margin-top: 2rem; gap: 0.9rem; }
  .contact-item { font-size: 0.88rem; gap: 0.75rem; }
  .contact-icon { width: 32px; height: 32px; }
  .consent-label { padding: 0.85rem 0.95rem; font-size: 0.78rem; }

  /* Footer */
  footer { padding: 2.25rem 1.15rem; }
  .footer-top { gap: 1.75rem; padding-bottom: 2rem; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-col h4 { font-size: 0.68rem; margin-bottom: 1rem; }
  .footer-col ul { gap: 0.6rem; }
  .footer-col ul a { font-size: 0.85rem; }
  .footer-copy { font-size: 0.74rem; line-height: 1.55; }
  .footer-legal a { font-size: 0.74rem; }

  /* Trust bar */
  .trust-item { padding: 0.85rem 1.25rem; font-size: 0.66rem; letter-spacing: 0.12em; }

  /* Page hero (inner pages) */
  .page-hero { padding: 2.5rem 1.15rem; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .page-hero p { font-size: 0.95rem; line-height: 1.65; }
  .breadcrumb { font-size: 0.7rem; margin-bottom: 1.25rem; letter-spacing: 0.1em; }

  /* WhatsApp + cookie */
  .whatsapp-btn { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .whatsapp-btn svg { width: 22px; height: 22px; }
  .cookie-banner { padding: 1rem 1.15rem; gap: 0.85rem; }
  .cookie-text { font-size: 0.78rem; }
  .cookie-accept, .cookie-decline { font-size: 0.72rem; padding: 0.55rem 1rem; }

  /* Mobile menu drawer */
  .nav-mobile { gap: 1.5rem; }
  .nav-mobile a { font-size: 1.45rem; }
  .nav-mobile .mobile-cta { padding: 0.85rem 2.25rem; font-size: 1.05rem !important; }

  /* Inline-styled 2/3-col grids that need to stack */
  .services-full-grid,
  .services-full-grid[style],
  .approach-grid,
  .approach-grid[style],
  .credentials-grid,
  .perks-grid,
  .process-steps,
  .join-stats,
  .pricing-grid,
  .what-grid,
  .week-grid,
  .pricing-table tbody,
  .trust-cards {
    grid-template-columns: 1fr !important;
  }

  /* About inline grids — main split + KS2/KS3 split */
  section[style] > div[style*="1fr 1.4fr"],
  section > div[style*="1fr 1.4fr"] {
    display: block !important;
  }
  section[style] > div[style*="1fr 1.4fr"] > * + *,
  section > div[style*="1fr 1.4fr"] > * + * { margin-top: 2.5rem; }
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:repeat(2,1fr)"],
  div[style*="grid-template-columns: repeat(2,1fr)"],
  div[style*="grid-template-columns:repeat(2, 1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"],
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Pricing tables — allow horizontal scroll instead of cramming */
  .pricing-table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table thead, .pricing-table tbody { display: table; width: max-content; min-width: 100%; }
  .pricing-table th, .pricing-table td { padding: 0.85rem 1rem; font-size: 0.85rem; white-space: nowrap; }

  /* Long single-line text inside tight cards */
  .wa-name, .wa-online { max-width: 130px; overflow: hidden; text-overflow: ellipsis; }
}

/* ─────────────────────────────────────────────────────────────
   VERY SMALL PHONE · 380px and below
   iPhone SE (1st gen) / Galaxy Fold front / older Androids.
   Last-ditch tightening; never the design target, just a safety net.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  :root { --section-pad: 2.75rem 0.95rem; }
  .site-nav { padding: 0 0.85rem; }
  .nav-name { font-size: 16px; }
  .nav-tagline { display: none; }
  .hero-left { padding: 2rem 0.95rem 2.5rem; }
  .hero-heading { font-size: clamp(1.85rem, 10vw, 2.4rem); }
  .hero-body { font-size: 0.92rem; }
  .section-title { font-size: clamp(1.55rem, 8vw, 1.95rem); }
  .section-sub { font-size: 0.9rem; }
  .stat-num { font-size: 1.7rem; }
  .service-num { font-size: 2.5rem; }
  .service-card { padding: 1.65rem 1.1rem; }
  .solution-card { padding: 1.5rem 1.15rem; }
  .problem-item { padding: 0.95rem; }
  .enquiry-left, .enquiry-right, footer, .page-hero { padding-left: 0.95rem; padding-right: 0.95rem; }
  .form-title { font-size: 1.25rem; }
  .footer-legal { gap: 0.85rem 1rem; }
  .reviews-board-foot { letter-spacing: 0.12em; }
  .trust-item { padding: 0.75rem 1rem; }
}
/* ════════════════════════════════════════════════════════════════════
   REVIEWS BOARD — WhatsApp phone testimonials
   Paste this entire block at the END of css/styles.css
   ════════════════════════════════════════════════════════════════════ */

/* Section wrapper */
.reviews-board-section {
  background: var(--t-bg, #F7F4EE);
  padding: var(--section-pad, 6rem 8vw);
}
.reviews-board-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.reviews-board-sub {
  font-size: 1rem;
  color: var(--t-muted, #6B6B6B);
  margin-top: 1rem;
  font-weight: 300;
}

/* The phone grid — phones keep a realistic size and wrap onto multiple rows */
.reviews-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 280px));
  gap: 2.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
  justify-content: center;
}

/* Each review = one phone */
.review-phone {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}

/* The phone bezel */
.wa-frame {
  width: 100%;
  max-width: 280px;
  background: #0a0a0a;
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 18px 44px rgba(13,26,46,0.18),
    0 6px 14px rgba(13,26,46,0.08);
  position: relative;
}

/* Subtle phone tilts so they feel scattered, not lined up */
.phone-1 .wa-frame { transform: rotate(-1.5deg); }
.phone-2 .wa-frame { transform: rotate(1.2deg); }
.phone-3 .wa-frame { transform: rotate(-0.8deg); }
.phone-4 .wa-frame { transform: rotate(1.6deg); }
.phone-5 .wa-frame { transform: rotate(-1.2deg); }

/* The white screen inside the bezel */
.wa-screen {
  background: #ECE5DD;            /* classic WhatsApp chat background */
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}

/* Top status bar (time + signal dots) */
.wa-status {
  background: #075E54;
  color: rgba(255,255,255,0.9);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 16px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* WhatsApp green header with name + avatar */
.wa-header {
  background: #075E54;
  color: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-back {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.85;
  margin-right: -4px;
}
.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.wa-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.1;
}
.wa-online {
  font-size: 0.66rem;
  opacity: 0.75;
  margin-top: 2px;
}
.wa-header > div:nth-child(3) {
  flex: 1;
  min-width: 0;
}
.wa-icons {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Chat body — message bubbles */
.wa-body {
  flex: 1;
  padding: 12px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background:
    linear-gradient(rgba(236,229,221,0.92), rgba(236,229,221,0.92)),
    repeating-linear-gradient(
      45deg,
      transparent 0 8px,
      rgba(0,0,0,0.015) 8px 16px
    );
}
.wa-date {
  align-self: center;
  background: rgba(225,245,254,0.85);
  color: #4a5560;
  font-size: 0.62rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 8px;
  margin: 2px 0 6px;
}

/* The green incoming-bubble (from the parent) */
.wa-bubble {
  align-self: flex-start;
  background: #DCF8C6;             /* classic WhatsApp out-bubble green */
  color: #1f2933;
  font-size: 0.74rem;
  line-height: 1.4;
  padding: 6px 9px 16px;
  border-radius: 7px;
  max-width: 88%;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}
.wa-bubble:first-of-type::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 8px;
  height: 13px;
  background: #DCF8C6;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.wa-time {
  position: absolute;
  right: 7px;
  bottom: 3px;
  font-size: 0.55rem;
  color: rgba(0,0,0,0.45);
  font-weight: 500;
}

/* Bottom input bar */
.wa-input {
  background: #ECE5DD;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.wa-emoji {
  font-size: 0.85rem;
  opacity: 0.7;
}
.wa-input-pill {
  flex: 1;
  height: 24px;
  background: #fff;
  border-radius: 14px;
}

/* The caption under each phone */
.review-caption {
  font-size: 0.82rem;
  color: var(--t-ink, #1F2933);
  text-align: center;
  line-height: 1.5;
  padding: 0 0.5rem;
}
.review-caption b {
  font-weight: 700;
}
.review-grade {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber, #D4621A);
  text-transform: uppercase;
}

/* Footer line under the grid */
.reviews-board-foot {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-muted, #6B6B6B);
}

/* ── RESPONSIVE BREAKPOINTS ── */

/* Tablet — same auto-fit grid, just looser gap */
@media (max-width: 1100px) {
  .reviews-board {
    gap: 2.5rem 1.5rem;
  }
}

/* Phone — tighten outer padding, give bubbles room */
@media (max-width: 768px) {
  .reviews-board {
    gap: 2rem;
  }
  /* Remove tilts so phones sit straight on mobile */
  .phone-1 .wa-frame,
  .phone-2 .wa-frame,
  .phone-3 .wa-frame,
  .phone-4 .wa-frame,
  .phone-5 .wa-frame { transform: none; }
}

/* Small phone — minor reductions for caption sizing */
@media (max-width: 480px) {
  .reviews-board-head { margin-bottom: 2.5rem; }
  .reviews-board { gap: 1.75rem; }
  .wa-bubble { font-size: 0.72rem; }
  .review-caption { font-size: 0.78rem; }
}
