/* ============================================================
   Sim Dhaliwal — V10 "Quiet Atelier"
   Understated luxury · warm ivory canvas · ink + restrained brass
   accent · airy grotesque + refined serif italics · gentle glide
   reveals · subtle scroll parallax · soft hover lifts.
   Synthesised from:
     · talkshop.com.au        (warmth, confidence, gradients)
     · connectalliedhealth    (calm clinical trust, structure)
     · simthespeechie.com.au  (client voice & data)
   ============================================================ */

:root {
  /* ---- Neutral surfaces (warm ivory ladder) ---- */
  --paper:      #faf8f4;   /* page */
  --paper-2:    #f3efe7;   /* soft sand band */
  --paper-3:    #ece7dd;   /* deeper sand */
  --surface:    #ffffff;
  --ink:        #211f1c;   /* warm near-black */
  --ink-soft:   #6c665e;   /* muted body */
  --ink-faint:  #a39d94;
  --hair:       #e7e1d6;   /* warm hairline */
  --hair-2:     #d8d1c3;

  /* ---- Restraint accent: aged brass / muted petrol ---- */
  --brass:      #9a7b3f;   /* rare signature */
  --brass-soft: #c4a878;
  --plum:       #5e3a4a;   /* deepest accent (rare) */

  /* ---- Whisper tints (tiny pastel pops, barely there) ---- */
  --blush:      #f3e7e3;
  --sage:       #e3ebdd;
  --sky:        #e4ebf3;
  --sand:       #f4ead8;

  /* ---- Type ---- */
  --font-display: 'Hanken Grotesk', system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* ---- Motion — slow, gentle glide ---- */
  --glide:    cubic-bezier(.22, .68, .28, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-soft: cubic-bezier(.4, .0, .2, 1);

  /* ---- Shadow (soft, low) ---- */
  --shadow-sm: 0 2px 16px rgba(33, 31, 28, .05);
  --shadow:    0 34px 70px -48px rgba(33, 31, 28, .30);
  --shadow-lg: 0 50px 90px -55px rgba(33, 31, 28, .36);

  /* ---- Radii ---- */
  --r:    14px;
  --r-lg: 26px;
  --r-xl: 40px;
  --pill: 999px;

  /* ---- Layout ---- */
  --wrap: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; }
.shape-defs { position: absolute; width: 0; height: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
em { font-style: italic; }
h1 em, h2 em, h3 em, .statement-text em, .big-quote em, .cta-inner em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
}
p { text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 32px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 14px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: var(--pill);
  z-index: 200; transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.center { display: block; text-align: center; margin-bottom: 22px; }

.section { padding: clamp(84px, 11vw, 158px) 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(52px, 7vw, 84px); }
.sec-head h2 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); font-weight: 300; letter-spacing: -.025em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  padding: 15px 30px; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background 420ms var(--glide), color 420ms var(--glide),
              transform 280ms var(--ease-out), box-shadow 420ms var(--glide),
              border-color 420ms var(--glide);
}
.btn svg { transition: transform 360ms var(--glide); }
.btn:active { transform: scale(.97); transition-duration: 120ms; }
.btn-sm { padding: 11px 22px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-ink { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
@media (hover: hover) and (pointer: fine) {
  .btn-ink:hover { background: var(--plum); transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn-ink:hover svg { transform: translateX(3px); }
}
.btn-quiet {
  background: transparent; color: var(--ink);
  border-color: var(--hair-2);
}
@media (hover: hover) and (pointer: fine) {
  .btn-quiet:hover { border-color: var(--ink); transform: translateY(-2px); }
  .btn-quiet:hover svg { transform: translateX(3px); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, .74);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--glide), background .4s var(--glide);
}
.site-header.scrolled { border-bottom-color: var(--hair); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.14rem;
  line-height: 1.05; display: flex; flex-direction: column; letter-spacing: -.01em;
}
.brand-sub {
  font-size: .56rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 4px;
}

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .92rem;
  color: var(--ink-soft); padding: 9px 16px; border-radius: var(--pill);
  position: relative; transition: color 320ms var(--glide);
}
.main-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1.5px;
  background: var(--brass); transform: scaleX(0); transform-origin: center;
  transition: transform 380ms var(--glide);
}
@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover { color: var(--ink); }
  .main-nav a:hover::after { transform: scaleX(1); }
}
.header-end { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.6px; background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--glide), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(120px, 16vw, 180px) 0 clamp(72px, 9vw, 120px);
  background:
    radial-gradient(55% 45% at 12% 4%, var(--sand) 0%, transparent 60%),
    radial-gradient(48% 42% at 92% 0%, var(--blush) 0%, transparent 58%),
    var(--paper);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-copy { max-width: 38ch; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  font-weight: 400; letter-spacing: -.028em;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  color: var(--ink-soft); margin-top: 28px; max-width: 44ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 40px;
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
}
.hero-trust li { position: relative; padding-left: 18px; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass-soft);
}

/* Hero media — layered portrait + floating organic + badge */
.hero-media { position: relative; min-height: 640px; }
.frame { position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.frame img { width: 100%; object-fit: cover; }
.frame--portrait { width: min(94%, 540px); margin-left: auto; aspect-ratio: 7/8; }
.frame--portrait img { height: 100%; }
.frame--float {
  position: absolute; left: 0; bottom: -34px; width: 224px; height: 224px;
  border-radius: 50%; box-shadow: var(--shadow-lg); background: var(--paper);
  padding: 10px;
}
.frame--float .organic { width: 100%; height: 100%; border-radius: 50%; }
.hero-badge {
  position: absolute; top: 8%; left: -8px;
  background: var(--surface); border-radius: var(--r);
  padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge b {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 2.4rem; line-height: 1; color: var(--brass);
}
.hero-badge b span { font-size: 1.3rem; vertical-align: super; }
.hero-badge small {
  font-size: .76rem; line-height: 1.35; color: var(--ink-soft);
  font-weight: 500; max-width: 110px;
}

/* ============================================================
   PHILOSOPHY STATEMENT
   ============================================================ */
.statement { padding: clamp(56px, 8vw, 100px) 0; text-align: center; }
.statement-text {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4; letter-spacing: -.01em; color: var(--ink);
  max-width: 24ch; margin: 0 auto;
}
.statement-text em { color: var(--brass); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%; aspect-ratio: 5/5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.about-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(33, 31, 28, .82); color: var(--paper);
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--pill); backdrop-filter: blur(6px);
}
.about-body .eyebrow { margin-bottom: 22px; }
.about-body h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 300; margin-bottom: 26px; }
.about-body p { color: var(--ink-soft); font-size: 1.04rem; margin-top: 18px; }
.about-body p em { color: var(--ink); font-weight: 500; }
.creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  margin-top: 34px;
}
.creds li {
  position: relative; padding-left: 22px; font-size: .92rem;
  font-weight: 500; color: var(--ink);
}
.creds li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brass-soft);
}

/* ============================================================
   HOW I WORK (pillars)
   ============================================================ */
.approach { background: var(--paper-2); }
.approach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 0;
}
.pillar {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 38px 30px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--glide), box-shadow .5s var(--glide);
}
@media (hover: hover) and (pointer: fine) {
  .pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
}
.pillar-num {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.7rem; color: var(--brass); display: block; margin-bottom: 22px;
}
.pillar h3 { font-size: 1.28rem; font-weight: 600; letter-spacing: -.015em; }
.pillar p { color: var(--ink-soft); font-size: .96rem; margin-top: 12px; }

/* ============================================================
   SUPPORT (list rows)
   ============================================================ */
.support { background: var(--surface); }
.support-list { max-width: 920px; margin: 0 auto; }
.srow {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
  padding: clamp(26px, 3vw, 38px) 8px;
  border-bottom: 1px solid var(--hair);
  transition: padding-left .5s var(--glide);
}
.srow:first-child { border-top: 1px solid var(--hair); }
@media (hover: hover) and (pointer: fine) {
  .srow:hover { padding-left: 18px; }
  .srow:hover .srow-dot { transform: scale(1.4); background: var(--brass); }
}
.srow-idx {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.4rem; color: var(--ink-faint); min-width: 40px;
}
.srow-main h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; letter-spacing: -.02em; }
.srow-main p { color: var(--ink-soft); font-size: .98rem; margin-top: 8px; max-width: 60ch; }
.srow-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brass-soft); transition: transform .5s var(--glide), background .5s var(--glide);
}
.support-foot {
  text-align: center; margin-top: 48px;
  font-size: .98rem; color: var(--ink-soft);
}

/* ============================================================
   GALLERY (organic shapes)
   ============================================================ */
.gallery { background: var(--paper-2); }
.gallery-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px); align-items: center;
}
.g-organic { width: 100%; max-width: 360px; margin: 0 auto; }
.g-up { transform: translateY(34px); }
.g-organic .organic { width: 100%; height: auto; aspect-ratio: 1; }
.g-organic:nth-child(1) .organic,
.g-organic:nth-child(2) .organic,
.g-organic:nth-child(3) .organic {
  filter: drop-shadow(0 30px 50px rgba(33,31,28,.18));
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { background: var(--surface); text-align: center; }
.big-quote { max-width: 800px; margin: 28px auto 0; }
.big-quote .qmark {
  font-family: var(--font-serif); font-style: italic; font-size: 4rem;
  color: var(--brass-soft); line-height: .5; display: block; margin-bottom: 8px;
}
.big-quote p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.4;
  letter-spacing: -.015em; color: var(--ink);
}
.big-quote p em { color: var(--brass); }
.big-quote footer {
  margin-top: 30px; font-size: .86rem; color: var(--ink-soft);
}
.bq-mark { font-weight: 600; color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper); }
.faq-layout {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 88px); align-items: start;
}
.faq-aside .eyebrow { margin-bottom: 22px; }
.faq-aside h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.faq-aside-note { color: var(--ink-soft); margin: 22px 0 28px; max-width: 32ch; }
.faq-list { display: flex; flex-direction: column; }
.faq { border-bottom: 1px solid var(--hair); }
.faq:first-child { border-top: 1px solid var(--hair); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem;
  color: var(--ink); padding: 26px 4px; letter-spacing: -.015em;
}
.faq-ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-2); position: relative;
  transition: transform .45s var(--glide), background .45s var(--glide);
}
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .4s var(--glide);
}
.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq[aria-expanded="true"] .faq-ico { background: var(--brass); transform: rotate(180deg); }
.faq[aria-expanded="true"] .faq-ico::before,
.faq[aria-expanded="true"] .faq-ico::after { background: var(--paper); }
.faq[aria-expanded="true"] .faq-ico::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--glide); }
.faq-a p { color: var(--ink-soft); font-size: .98rem; padding: 0 50px 28px 4px; max-width: 60ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 20px 0 clamp(70px, 9vw, 110px); }
.cta-inner {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 72px); text-align: center;
  background:
    radial-gradient(60% 60% at 15% 10%, var(--sand) 0%, transparent 62%),
    radial-gradient(55% 55% at 88% 8%, var(--blush) 0%, transparent 60%),
    radial-gradient(60% 50% at 70% 110%, var(--sage) 0%, transparent 58%),
    var(--paper-2);
  box-shadow: var(--shadow);
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 300;
  letter-spacing: -.025em; margin: 16px auto 0; max-width: 18ch;
}
.cta-inner p {
  color: var(--ink-soft); font-size: 1.06rem; margin: 18px auto 0; max-width: 42ch;
}
.cta-inner .btn { margin-top: 34px; }
.cta-inner .eyebrow { color: var(--brass); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--surface); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-info .eyebrow { margin-bottom: 22px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.contact-lede { color: var(--ink-soft); font-size: 1.06rem; margin: 22px 0 34px; max-width: 38ch; }
.contact-list { display: flex; flex-direction: column; }
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--hair);
}
.contact-list li:last-child { border-bottom: 1px solid var(--hair); }
.ci {
  width: 46px; height: 46px; border-radius: var(--r); flex: none;
  background: var(--paper-2); color: var(--brass);
  display: grid; place-items: center;
}
.contact-list small {
  display: block; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint);
}
.contact-list b, .contact-list a {
  font-weight: 600; font-size: 1.04rem; color: var(--ink);
  transition: color .3s var(--glide);
}
@media (hover: hover) and (pointer: fine) {
  .contact-list a:hover { color: var(--brass); }
}

.contact-form {
  background: var(--paper); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-sm);
  border: 1px solid var(--hair);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-size: .82rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: .01em; color: var(--ink);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--hair-2);
  border-radius: var(--r); padding: 13px 15px; width: 100%;
  transition: border-color .3s var(--glide), box-shadow .3s var(--glide);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(154, 123, 63, .12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: .86rem; color: var(--ink-soft); text-align: center;
  margin-top: 14px; min-height: 1.2em;
}
.form-note.ok { color: var(--brass); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(250, 248, 244, .66); padding: 72px 0 34px; }
.footer-grid {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 36px; border-bottom: 1px solid rgba(250, 248, 244, .14);
}
.footer-brand { max-width: 300px; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand p { margin-top: 18px; font-size: .92rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--paper); font-family: var(--font-display); font-weight: 600;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: .94rem; color: rgba(250, 248, 244, .72);
  transition: color .3s var(--glide);
}
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: var(--brass-soft); }
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; font-size: .8rem; color: rgba(250, 248, 244, .46);
}

/* ============================================================
   REVEAL + PARALLAX (gentle glide)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1s var(--glide), transform 1s var(--glide);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

[data-parallax] { will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-media { min-height: 480px; max-width: 460px; margin-inline: auto; }
  .frame--portrait { width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin-inline: auto; order: -1; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 22px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-end .btn { display: none; }
  /* Mobile menu */
  .main-nav.open {
    display: block; position: fixed; inset: 0; z-index: 95;
    background: var(--paper); padding: 110px 30px 40px;
    flex-direction: column;
  }
  .main-nav.open ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.open a { font-size: 1.5rem; padding: 14px 4px; border-bottom: 1px solid var(--hair); }
  .approach-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; gap: 50px; }
  .g-up { transform: none; }
  .creds { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .hero-badge { left: 0; padding: 12px 16px; }
  .hero-badge b { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
}
