/* =========================================================================
   Carlton Hwee — Property Agent
   Design system: Navy + Gold Premium
   Tokens follow primitive -> semantic naming. Never use raw hex in blocks.
   ========================================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand primitives */
  --navy-950: #080D18;
  --navy-900: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --slate-200:#E2E8F0;
  --slate-100:#F1F5F9;
  --slate-50: #F8FAFC;
  --gold-700: #854D0E;
  --gold-600: #A16207;   /* accent on light — 5.3:1 on white */
  --gold-400: #C89A3C;   /* decorative rules, bullets, borders */
  --gold-300: #DDB65C;   /* accent on dark  — 8.1:1 on navy-900 */
  --gold-100: #FDF6E7;
  --gold-logo: #FFC94D;  /* brand mark only — brighter than the UI golds */

  /* Semantic */
  --bg:          #FFFFFF;
  --bg-tint:     var(--slate-50);
  --bg-invert:   var(--navy-900);
  --surface:     #FFFFFF;
  --text:        var(--navy-900);
  --text-muted:  #475569;
  --text-invert: #FFFFFF;
  --text-invert-muted: #C3CCDA;
  --accent:      var(--gold-600);
  --accent-dark: var(--gold-300);
  --border:      var(--slate-200);
  --border-invert: rgba(255,255,255,.14);
  --ring:        var(--gold-600);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (density 4 — marketing page) */
  --space-1: .25rem;  --space-2: .5rem;   --space-3: .75rem;
  --space-4: 1rem;    --space-5: 1.5rem;  --space-6: 2rem;
  --space-7: 3rem;    --space-8: 4rem;    --space-9: 6rem;

  /* Radii + elevation */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-md: 0 4px 12px rgba(15,23,42,.07), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 18px 40px rgba(15,23,42,.10), 0 6px 14px rgba(15,23,42,.06);
  --shadow-xl: 0 32px 64px rgba(15,23,42,.16), 0 10px 24px rgba(15,23,42,.08);

  /* Motion — 150-300ms per UX guideline */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 150ms;
  --dur: 240ms;
  --dur-slow: 620ms;

  --wrap: 1200px;
  --nav-h: 76px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.018em; font-variation-settings: "SOFT" 0, "WONK" 0; }
p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em; line-height: 1.35; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.section--dark :focus-visible { outline-color: var(--accent-dark); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: var(--space-3) var(--space-5);
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-4); }

/* ---------- 3. LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space-5); }
.wrap--narrow { max-width: 820px; }

.section { padding-block: clamp(var(--space-8), 9vw, var(--space-9)); }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(200,154,60,.13), transparent 55%),
    var(--bg-invert);
  color: var(--text-invert);
}
.section--dark h2, .section--dark h3 { color: var(--text-invert); }
.section--dark p { color: var(--text-invert-muted); }

.section__head { max-width: 760px; margin-bottom: var(--space-7); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lede { font-size: 1.075rem; color: var(--text-muted); margin-top: var(--space-4); }
.section--dark .section__lede { color: var(--text-invert-muted); }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-3);
}
.eyebrow--light { color: var(--accent-dark); }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 48px; padding: var(--space-3) var(--space-5);
  border: 1px solid transparent; border-radius: var(--r-full);
  font: inherit; font-weight: 600; font-size: .96rem; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold-600); color: #fff;
  box-shadow: 0 6px 18px rgba(161,98,7,.28);
}
.btn--gold:hover { background: var(--gold-700); box-shadow: 0 10px 26px rgba(161,98,7,.34); }

.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--slate-200); }
.btn--ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: #fff; }

.btn--sm { min-height: 42px; padding: var(--space-2) var(--space-4); font-size: .9rem; }
/* The address is long — let it shrink a touch rather than force a wrap */
.btn--email { font-size: .92rem; letter-spacing: -.01em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--accent); font-weight: 600; text-decoration: none;
  min-height: 44px;
}
.link-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 5. NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--text); }
/* An arch on two piers with a crossbar: reads as a portico, as a C for Carlton,
   and as an H for Hwee. */
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  background: var(--navy-900);
  border-radius: var(--r-md);
}
.brand__mark svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--gold-logo); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text strong { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
.brand__text small { font-size: .74rem; color: var(--text-muted); letter-spacing: .04em; }

.nav__links { display: flex; align-items: center; gap: var(--space-2); }
.nav__links > a:not(.btn) {
  padding: var(--space-2) var(--space-3); min-height: 44px; display: inline-flex; align-items: center;
  font-size: .93rem; font-weight: 500; color: var(--text-muted); text-decoration: none;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--navy-900); background: var(--slate-100); }

.nav__toggle {
  display: none; width: 48px; height: 48px; flex: none;
  background: none; border: 0; cursor: pointer; border-radius: var(--r-sm);
  padding: 13px 12px;
}
.nav__toggle span { display: block; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease); }
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  padding-block: clamp(var(--space-7), 7vw, var(--space-9)) 0;
  background:
    radial-gradient(90% 70% at 12% 8%, rgba(161,98,7,.07), transparent 60%),
    linear-gradient(180deg, var(--slate-50) 0%, #fff 72%);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--space-6), 4vw, var(--space-8));
  align-items: end;
}
.hero__copy { padding-bottom: clamp(var(--space-7), 6vw, var(--space-9)); }
.hero__title { margin-bottom: var(--space-5); }
.hero__title .hl {
  color: var(--accent);
  background: linear-gradient(180deg, transparent 66%, var(--gold-100) 66%);
  padding-inline: .08em;
}
.hero__lede { font-size: 1.1rem; color: var(--text-muted); max-width: 56ch; }
.hero__lede strong { color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5);
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-size: .87rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--slate-500);
}
.hero__proof li { position: relative; }
.hero__proof li + li::before {
  content: ""; position: absolute; left: calc(var(--space-5) / -2); top: 50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-400); transform: translateY(-50%);
}

.hero__media { position: relative; }

/* ---------- 7. MEDIA / PHOTO CARDS ---------- */
.media {
  margin: 0; border-radius: var(--r-xl); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-lg);
}
.media img { width: 100%; }
.media--portrait { max-width: 480px; margin-inline: auto; }
.media--portrait::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 42%;
  pointer-events: none;
}
.media--tall { border-radius: var(--r-xl); }

/* Transparent PNG cutout — stands on the page instead of sitting in a card.
   The backdrop shape lives on .about__media::before. */
.media--cutout {
  position: relative; z-index: 1;
  background: none; box-shadow: none; border-radius: 0; overflow: visible;
  max-width: 430px; margin-inline: auto;
}
.media--cutout img { filter: drop-shadow(0 26px 34px rgba(15,23,42,.22)); }

.media--float {
  position: absolute; right: -6%; bottom: 0; width: 37%; max-width: 176px;
  z-index: 2;
  border: 5px solid #fff; box-shadow: var(--shadow-xl);
  border-radius: var(--r-lg);
}
.media--wide { border-radius: var(--r-lg); }

.media__badge {
  position: absolute; left: -2%; bottom: 12%;
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--navy-900); color: #fff;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-lg); box-shadow: var(--shadow-xl);
}
.media__badge-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold-300); line-height: 1; }
.media__badge-lbl { font-size: .76rem; line-height: 1.3; letter-spacing: .07em; text-transform: uppercase; color: var(--text-invert-muted); }

/* ---------- 8. TRUST STRIP ---------- */
.strip { border-block: 1px solid var(--border); background: var(--bg); padding-block: var(--space-5); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); }
.strip__label {
  margin: 0; font-size: .74rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--slate-400); flex: none;
}
.strip__logos { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-6); }
.strip__logos li {
  font-size: .92rem; font-weight: 600; letter-spacing: .02em; color: var(--navy-700);
  opacity: .78; transition: opacity var(--dur) var(--ease);
}
.strip__logos li:hover { opacity: 1; }

/* ---------- 9. STATS ---------- */
.stats { background: var(--bg); padding-block: clamp(var(--space-7), 6vw, var(--space-8)); }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.stat { padding: var(--space-5); border-left: 3px solid var(--gold-400); background: var(--slate-50); border-radius: 0 var(--r-md) var(--r-md) 0; }
.stat__num {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 700; line-height: 1; color: var(--navy-900); margin: 0 0 var(--space-3);
  font-variant-numeric: tabular-nums;
}
/* A worded stat instead of a figure — sized down so it sits level with the numbers */
.stat__num--text { font-size: clamp(1.35rem, 1.9vw, 1.75rem); line-height: 1.15; }
.stat__lbl { font-size: .92rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ---------- 10. ABOUT ---------- */
.about__grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(var(--space-6), 5vw, var(--space-9)); align-items: center;
}
.about__media { position: relative; padding-bottom: var(--space-6); padding-right: var(--space-5); }
/* Soft halo the cutout stands in front of — no hard edges, so it never
   reads as a stray box behind him. */
.about__media::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 50%;
  width: 118%; height: 86%;
  transform: translate(-52%, -50%);
  background: radial-gradient(closest-side,
              rgba(200,154,60,.22) 0%,
              rgba(200,154,60,.09) 55%,
              rgba(200,154,60,0) 100%);
}
.about__copy p { color: var(--text-muted); }
.about__copy h2 { margin-bottom: var(--space-5); }
.about__copy strong { color: var(--text); font-weight: 600; }

/* Certificate / proof-of-credential card */
.credential {
  display: flex; align-items: center; gap: var(--space-5);
  margin: var(--space-6) 0 0; padding: var(--space-5);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.credential__thumb {
  flex: none; width: 108px; display: block;
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.credential__thumb:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.credential__thumb img { width: 100%; height: auto; }
.credential__body { margin: 0; min-width: 0; }
.credential__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-2);
}
.credential__text { font-size: .93rem; color: var(--text-muted); margin-bottom: var(--space-3); }
.credential__text strong { color: var(--text); font-weight: 600; }
.link-arrow--sm { font-size: .88rem; min-height: 32px; }

/* Credentials grid — the marketing qualification leads, at double width */
.credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); align-items: start; }
.credentials .credential { margin: 0; align-items: flex-start; }
.credential--feature {
  grid-column: 1 / -1;
  gap: var(--space-6); padding: var(--space-6);
  background: linear-gradient(140deg, var(--gold-100) 0%, #fff 58%);
  border-color: rgba(200,154,60,.42);
  box-shadow: var(--shadow-md);
}
.credential--feature .credential__thumb { width: 190px; }
.credential__head {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 700; line-height: 1.15; margin-bottom: var(--space-4);
}
.credential__label--gold { color: var(--gold-700); }

/* Transcript extract — the evidence, shown inline */
.proof {
  margin: var(--space-5) 0; padding: var(--space-3);
  background: #fff; border: 1px solid rgba(200,154,60,.45);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.proof img { width: 100%; height: auto; border-radius: var(--r-sm); }
.proof figcaption {
  margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: .84rem; line-height: 1.55; color: var(--text-muted);
}
.proof figcaption strong { color: var(--gold-700); font-weight: 700; }

/* Cohort rarity — the point that the grades alone don't make */
.rarity {
  margin: var(--space-5) 0; padding: var(--space-5) var(--space-6);
  background: var(--navy-900); color: #fff;
  border-radius: var(--r-md);
  border-left: 4px solid var(--gold-300);
}
.rarity__lead {
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600; line-height: 1.35; margin-bottom: var(--space-2); color: #fff;
}
.rarity__lead em { font-style: italic; color: var(--gold-300); }
.rarity__body { font-size: .95rem; line-height: 1.6; color: var(--text-invert-muted); margin: 0; }
.rarity__body strong { color: var(--gold-300); font-weight: 700; }
/* Two scans for a single credential (same course, two issuing bodies) */
.credential__thumbs { flex: none; display: flex; gap: var(--space-2); align-items: flex-start; }
.credential__thumb--sm { width: 84px; }
.credential__note {
  font-size: .78rem; font-style: italic; color: var(--slate-500); margin: 0;
}

.pull {
  margin: var(--space-6) 0; padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--gold-400); background: var(--gold-100);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; color: var(--navy-900);
}
.pull cite { display: block; margin-top: var(--space-3); font: 600 .82rem/1 var(--font-body); font-style: normal; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); }

/* ---------- 11. CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.card__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: var(--space-4);
  background: var(--gold-100); border-radius: var(--r-md); color: var(--gold-700);
}
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: var(--space-3); }
.card p { font-size: .95rem; color: var(--text-muted); margin: 0; }
.card strong { color: var(--text); font-weight: 600; }

/* ---------- 12. TRACK RECORD ----------
   Project names only. Unit counts were removed deliberately: an exact tally
   invites the reader to judge the number instead of the breadth. */
.projects { max-width: 900px; }
.projects__label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-4);
}
.projects__label--split {
  margin-top: var(--space-7); padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.projects__list {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
}
.projects__list li {
  padding: var(--space-3) var(--space-5);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .98rem; font-weight: 600; color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.projects__list li:hover { border-color: var(--gold-400); transform: translateY(-2px); }

/* District chips carry the number plus the towns it covers */
.projects__list--districts li {
  display: flex; align-items: baseline; gap: var(--space-2);
  border-radius: var(--r-md); color: var(--gold-700);
  font-variant-numeric: tabular-nums;
}
.projects__list--districts li span {
  font-weight: 500; font-size: .88rem; color: var(--text-muted);
}
.projects__note {
  margin-top: var(--space-6); font-size: .93rem; color: var(--text-muted); max-width: 62ch;
}
.projects__note a { color: var(--gold-700); }

.record__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); align-items: start; }
.record {
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface);
}
.record__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); background: var(--navy-900); color: #fff;
}
.record__head h3 { color: #fff; margin: 0; }
.record__count {
  font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy-900); background: var(--gold-300);
  padding: var(--space-1) var(--space-3); border-radius: var(--r-full); white-space: nowrap;
}
.record__list { padding: var(--space-2) var(--space-6) var(--space-5); }
.record__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4);
  padding-block: var(--space-4); border-bottom: 1px solid var(--border);
}
.record__list li:last-child { border-bottom: 0; }
.record__list span { font-weight: 600; }
.record__list em { font-style: normal; font-size: .88rem; color: var(--text-muted); white-space: nowrap; }

/* ---------- 13. AWARDS ---------- */
.awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.award {
  padding: var(--space-5); border: 1px solid var(--border-invert); border-radius: var(--r-lg);
  background: rgba(255,255,255,.035);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.award:hover { background: rgba(255,255,255,.07); border-color: rgba(221,182,92,.4); }
.award h3 { font-size: 1.02rem; margin-bottom: var(--space-2); }
.award p { font-size: .88rem; margin: 0; color: var(--text-invert-muted); }
.award--feature {
  grid-column: span 3; display: flex; align-items: center; gap: var(--space-5);
  background: linear-gradient(100deg, rgba(221,182,92,.16), rgba(221,182,92,.04));
  border-color: rgba(221,182,92,.36);
}
.award--feature h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.award__icon { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: var(--r-md); background: var(--gold-300); color: var(--navy-900); }
.award__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.awards__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-6); }

/* ---------- 13b. AWARD WALL ----------
   Masonry via CSS columns so mixed aspect ratios keep their shape and nothing
   gets cropped. Volume is the message — the tiles stay small on purpose. */
.wall { column-count: 6; column-gap: var(--space-3); }
.wall__item {
  display: block; margin-bottom: var(--space-3); break-inside: avoid;
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wall__item img { width: 100%; height: auto; display: block; }
.wall__item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--gold-300);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}
.wall__note {
  margin-top: var(--space-5); text-align: center;
  font-size: .88rem; color: var(--text-invert-muted);
}

/* ---------- 14. COMPARISON TABLE ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; text-align: left; }
.compare th, .compare td { padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare thead th {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-500); background: var(--slate-50); white-space: nowrap;
}
.compare tbody th { font-weight: 500; font-size: .95rem; color: var(--text); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare td { font-size: .93rem; color: var(--text-muted); }
.compare__me { background: var(--gold-100); color: var(--text) !important; font-weight: 600; }
.compare thead .compare__me { color: var(--gold-700); background: #F9EFD8; }
.tick { color: #15803D; font-weight: 700; margin-right: var(--space-2); }
.cross { color: #B91C1C; font-weight: 700; margin-right: var(--space-2); }
.compare__note { margin-top: var(--space-4); font-size: .85rem; color: var(--slate-500); max-width: 70ch; }

/* ---------- 15. FAQ ---------- */
.faq { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); min-height: 60px;
  font-weight: 600; font-size: 1.02rem; cursor: pointer; list-style: none;
  transition: background var(--dur) var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--slate-50); }
.faq__item summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px,-3px); }
.faq__item[open] summary { background: var(--slate-50); }
.faq__body { padding: 0 var(--space-6) var(--space-5); }
.faq__body p { color: var(--text-muted); margin: 0; max-width: 68ch; }

/* ---------- 16. CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(var(--space-6), 5vw, var(--space-8)); align-items: center; }
.contact__meta { display: grid; grid-template-columns: repeat(3, auto); gap: var(--space-5); margin: var(--space-6) 0 0; justify-content: start; }
.contact__meta dt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: var(--space-2); }
.contact__meta dd { margin: 0; font-size: .92rem; color: var(--text-invert-muted); line-height: 1.5; }

.contact__actions { display: grid; gap: var(--space-4); }
.contact-card {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); min-height: 88px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-invert);
  border-radius: var(--r-lg); text-decoration: none; color: #fff;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,.1); border-color: var(--gold-300); transform: translateY(-3px); }
/* WhatsApp is the primary channel — lift it above the other two */
.contact-card--wa { background: rgba(221,182,92,.11); border-color: rgba(221,182,92,.32); }
.contact-card--wa:hover { background: rgba(221,182,92,.18); }
.contact-card__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: var(--r-md); background: var(--gold-300); color: var(--navy-900); }
.contact-card__icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-card__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card__text strong { font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--accent-dark); }
.contact-card__text span { font-size: 1.06rem; font-weight: 600; word-break: break-word; }
.contact-card__arrow { width: 22px; height: 22px; margin-left: auto; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .5; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.contact-card:hover .contact-card__arrow { transform: translateX(5px); opacity: 1; }
.contact__hint { font-size: .87rem; color: var(--text-invert-muted); margin: var(--space-2) 0 0; }

/* ---------- 16b. CLIENT STORIES PAGE ---------- */
.pagehead {
  padding-block: clamp(var(--space-8), 8vw, var(--space-9)) var(--space-7);
  background:
    radial-gradient(80% 70% at 15% 10%, rgba(161,98,7,.08), transparent 62%),
    linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
}
.pagehead__lede { font-size: 1.1rem; color: var(--text-muted); margin-top: var(--space-5); }
.pagehead__note {
  margin-top: var(--space-5); padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--gold-400); background: var(--gold-100);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .88rem; line-height: 1.6; color: var(--gold-700);
}
.pagehead__jump { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.pagehead__jump a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--border); border-radius: var(--r-full);
  font-size: .9rem; font-weight: 600; text-decoration: none; color: var(--text-muted);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.pagehead__jump a:hover { border-color: var(--gold-600); color: var(--gold-700); background: var(--gold-100); }

.pagehead__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.pagehead__cta--left { justify-content: flex-start; }

/* ---------- RECRUITMENT PAGE ---------- */
.pagehead--join { padding-bottom: clamp(var(--space-7), 6vw, var(--space-8)); }
.join__hero {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(var(--space-6), 5vw, var(--space-8)); align-items: center;
}
.join__hero .media--wide { max-width: 460px; margin-inline: auto; }

/* Ad-account metrics */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.metric {
  padding: var(--space-5); text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-invert);
  border-radius: var(--r-lg);
}
.metric__num {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700; line-height: 1; color: var(--gold-300); margin: 0 0 var(--space-3);
  font-variant-numeric: tabular-nums;
}
.metric__lbl { font-size: .88rem; color: var(--text-invert-muted); margin: 0; line-height: 1.5; }
.metric__lbl span { display: block; margin-top: var(--space-1); color: #4ADE80; font-weight: 600; font-size: .82rem; }

/* Good fit / not a fit */
.fit { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); align-items: start; }
.fit__col {
  padding: var(--space-6); border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--surface);
}
.fit__col h3 { margin-bottom: var(--space-4); }
.fit__col ul { display: grid; gap: var(--space-3); }
.fit__col li {
  position: relative; padding-left: var(--space-6);
  font-size: .95rem; color: var(--text-muted); line-height: 1.55;
}
.fit__col li::before {
  position: absolute; left: 0; top: -1px; font-weight: 700; font-size: 1.05rem;
}
.fit__col--yes { border-color: rgba(21,128,61,.35); background: #F4FBF6; }
.fit__col--yes li::before { content: "\2713"; color: #15803D; }
.fit__col--no { border-color: rgba(185,28,28,.28); background: #FDF6F6; }
.fit__col--no li::before { content: "\2717"; color: #B91C1C; }
.btn--ghost-dark { color: #fff; border-color: var(--border-invert); }
.btn--ghost-dark:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: stretch; }
.cases--two { grid-template-columns: repeat(2, 1fr); }

.case {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.case__top { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3); margin-bottom: var(--space-4); }
.case__chip {
  display: inline-flex; align-items: center;
  padding: 3px var(--space-3); border-radius: var(--r-full);
  background: var(--slate-100); color: var(--navy-800);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.case__chip--gold { background: var(--gold-600); color: #fff; }
.case__role { font-size: .8rem; color: var(--slate-500); font-weight: 500; }
.case h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: var(--space-2); }
.case__where {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: var(--space-4);
}
.case p:not(.case__where) { font-size: .95rem; color: var(--text-muted); }
.case strong { color: var(--text); font-weight: 600; }
.case--feature {
  grid-column: span 2;
  background: linear-gradient(150deg, var(--gold-100) 0%, #fff 55%);
  border-color: rgba(200,154,60,.42);
}

/* The client account is the body of the card; attribution pins to the bottom
   so it lines up across a row of unequal-length stories. */
.case__quote {
  position: relative; margin: 0; padding-top: var(--space-5);
  display: flex; flex-direction: column; flex: 1;
}
.case__quote cite { margin-top: auto; }
.case__quote::before {
  content: "\201C";
  position: absolute; top: -6px; left: -4px;
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  color: var(--gold-400); opacity: .5; pointer-events: none;
}
.case__quote p {
  font-size: .95rem; line-height: 1.68; color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.case__quote p:last-of-type { margin-bottom: var(--space-5); }
.case__quote strong { color: var(--text); font-weight: 600; }
.case__quote cite {
  display: block; padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font: 600 .78rem/1.5 var(--font-body); font-style: normal;
  letter-spacing: .04em; color: var(--gold-700);
}
.case--feature .case__quote cite { border-top-color: rgba(200,154,60,.35); }

/* ---------- 16c. BLOG ---------- */
.posts { display: grid; gap: var(--space-6); max-width: 820px; margin-inline: auto; }
.posts__empty { text-align: center; color: var(--slate-500); padding-block: var(--space-8); }

.post {
  display: grid; grid-template-columns: 220px 1fr; gap: var(--space-5);
  padding-bottom: var(--space-6); border-bottom: 1px solid var(--border);
  align-items: start;
}
.post:last-child { border-bottom: 0; padding-bottom: 0; }
.post--nocover { grid-template-columns: 1fr; }
.post__cover {
  display: block; border-radius: var(--r-md); overflow: hidden;
  background: var(--slate-100); box-shadow: var(--shadow-sm);
}
.post__cover img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.post__body { min-width: 0; }
.post__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-3);
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-500);
}
.post__tag {
  padding: 2px var(--space-3); border-radius: var(--r-full);
  background: var(--gold-100); color: var(--gold-700); font-weight: 700;
}
.post__body h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: var(--space-3); }
.post__body h2 a { text-decoration: none; transition: color var(--dur) var(--ease); }
.post__body h2 a:hover { color: var(--gold-700); }
.post__excerpt { font-size: .96rem; color: var(--text-muted); margin-bottom: var(--space-3); }

/* single post */
.post__back { margin-bottom: var(--space-5); font-size: .9rem; }
.post__back a { color: var(--slate-500); text-decoration: none; }
.post__back a:hover { color: var(--gold-700); }
.post__title { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: var(--space-4); }
.post__standfirst { font-size: 1.15rem; line-height: 1.6; color: var(--text-muted); margin-bottom: var(--space-6); }
.post__hero { margin: 0 0 var(--space-6); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
/* Cap the height so a portrait cover can't swallow the whole screen */
.post__hero img { width: 100%; max-height: 460px; object-fit: cover; display: block; }

.prose { font-size: 1.03rem; line-height: 1.75; color: var(--text-muted); }
.prose p { margin-bottom: var(--space-5); }
.prose h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--text);
  margin: var(--space-7) 0 var(--space-4);
}
.prose h4 { font-size: 1.12rem; color: var(--text); margin: var(--space-6) 0 var(--space-3); }
.prose ul, .prose ol { margin: 0 0 var(--space-5); padding-left: var(--space-6); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--space-2); padding-left: var(--space-2); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--gold-700); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: var(--space-6) 0; padding: var(--space-4) var(--space-6);
  border-left: 3px solid var(--gold-400); background: var(--gold-100);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--navy-900);
}

.post__cta {
  margin-top: var(--space-8); padding: var(--space-6);
  background: var(--navy-900); color: var(--text-invert-muted);
  border-radius: var(--r-lg); border-left: 4px solid var(--gold-300);
}
.post__cta-lead {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: #fff; margin-bottom: var(--space-3);
}
.post__cta p { font-size: .95rem; margin-bottom: var(--space-5); }

@media (max-width: 640px) {
  .post { grid-template-columns: 1fr; gap: var(--space-4); }
  .post__cover img { aspect-ratio: 16/9; }
}

/* ---------- 17. FOOTER ---------- */
.footer { background: var(--navy-950); color: var(--text-invert-muted); padding-block: var(--space-8) var(--space-6); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-6); }
.footer__brand { display: flex; align-items: flex-start; gap: var(--space-3); color: #fff; }
/* The navy tile vanishes against the near-navy footer — lift it just here */
.footer__brand .brand__mark { background: rgba(255,255,255,.07); }
.footer__brand strong { font-size: 1.05rem; }
.footer__brand p { margin: 2px 0 0; font-size: .87rem; color: var(--text-invert-muted); }
.footer__contact { display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-5); margin-top: var(--space-3); }
.footer__contact li { display: flex; align-items: center; gap: var(--space-2); }
.footer__contact svg { width: 15px; height: 15px; flex: none; fill: var(--gold-300); }
.footer__contact a {
  font-size: .9rem; color: var(--text-invert-muted); text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center; word-break: break-word;
  transition: color var(--dur) var(--ease);
}
.footer__contact a:hover { color: var(--gold-300); }
.footer__links { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); align-content: center; }
.footer__links a { font-size: .92rem; text-decoration: none; color: var(--text-invert-muted); min-height: 44px; display: inline-flex; align-items: center; transition: color var(--dur) var(--ease); }
.footer__links a:hover { color: var(--gold-300); }
.footer__legal {
  grid-column: 1 / -1; margin-top: var(--space-5); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; line-height: 1.6;
}
.footer__legal p { margin: 0 0 var(--space-2); }
.footer__disclaimer { color: var(--slate-500); max-width: 80ch; }
.todo { color: var(--gold-300); font-weight: 600; }
.footer__admin { color: var(--slate-500); text-decoration: none; }
.footer__admin:hover { color: var(--gold-300); text-decoration: underline; }

/* ---------- 18. FLOATING CALL BUTTON (mobile) ---------- */
.fab {
  position: fixed; right: var(--space-4); z-index: 90;
  bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
  display: none; place-items: center; width: 58px; height: 58px;
  background: var(--gold-600); color: #fff; border-radius: 50%;
  box-shadow: 0 10px 28px rgba(161,98,7,.42);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.fab svg { width: 25px; height: 25px; fill: currentColor; }
.fab:active { transform: scale(.94); }

/* ---------- 18b. MOBILE TAB BAR ----------
   Blog/Stories were only reachable via the hamburger menu, and real users
   on real phones (iPhone + Android, tested directly) did not discover it --
   they scrolled to the footer instead. A hamburger has to be found; a tab
   bar is just always there, the way native apps do it. */
.mobile-tabbar {
  display: none;
  position: sticky; top: var(--nav-h); z-index: 95;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(15,23,42,.08);
}
.mobile-tabbar__inner { display: flex; }
.mobile-tabbar a, .mobile-tabbar button {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: var(--space-2) var(--space-1) 6px;
  color: var(--text-muted); text-decoration: none; background: none; border: 0;
  font: inherit; font-size: .66rem; font-weight: 600; letter-spacing: .01em; cursor: pointer;
}
.mobile-tabbar svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.mobile-tabbar a.is-active,
.mobile-tabbar button[aria-expanded="true"] { color: var(--gold-600); }

/* ---------- 19. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal--delay { transition-delay: 110ms; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .btn:hover, .card:hover, .contact-card:hover { transform: none; }
}

/* =========================================================================
   RESPONSIVE — mobile-first breakpoints applied as max-width overrides
   ========================================================================= */
@media (max-width: 1024px) {
  .cards, .awards, .awards__gallery, .cases { grid-template-columns: repeat(2, 1fr); }
  .case--feature { grid-column: span 2; }
  .wall { column-count: 4; }
  .award--feature { grid-column: span 2; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: var(--space-6); }
  .hero__media { max-width: 460px; margin-inline: auto; padding-bottom: var(--space-7); }
  .about__grid, .contact__grid, .join__hero { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; padding-right: var(--space-6); }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: var(--space-3) var(--space-5) var(--space-5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
  .nav__links > a:not(.btn) { padding: var(--space-3); font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav__links .btn { margin-top: var(--space-4); width: 100%; }
  .fab { display: grid; }
  .mobile-tabbar { display: block; }
}

@media (max-width: 720px) {
  .cards, .awards, .awards__gallery, .record__grid, .cases, .cases--two, .credentials { grid-template-columns: 1fr; }
  .case--feature { grid-column: span 1; }
  .wall { column-count: 3; }
  .fit, .metrics { grid-template-columns: 1fr; }
  .award--feature { grid-column: span 1; flex-direction: column; align-items: flex-start; text-align: left; }
  .contact__meta { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

@media (max-width: 560px) {
  :root { --space-9: 4.5rem; }
  .wall { column-count: 3; column-gap: var(--space-2); }
  .wall__item { margin-bottom: var(--space-2); }
  .credential { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .credential__thumb { width: 130px; }
  .credential--feature { padding: var(--space-5); }
  .credential--feature .credential__thumb { width: 140px; }
  .credential__thumbs { flex-direction: row; }
  .credential__thumb--sm { width: 104px; }
  .stats__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
  .media--float { right: -2%; bottom: -4%; width: 42%; }
  .media__badge { left: 0; padding: var(--space-3) var(--space-4); }
  .media__badge-num { font-size: 1.7rem; }
  .faq__item summary { padding: var(--space-4) var(--space-5); font-size: .97rem; }
  .faq__body { padding: 0 var(--space-5) var(--space-4); }
  .contact__meta { grid-template-columns: 1fr; }
  .contact-card { padding: var(--space-4); }
}

/* ---------- PRINT ---------- */
@media print {
  .nav, .fab, .mobile-tabbar, .skip-link { display: none !important; }
  .section--dark { background: #fff !important; color: #000 !important; }
  .section--dark h2, .section--dark h3, .section--dark p { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
