/* ============================================================
   QUILLBROOK ACCOUNTING — Warm Editorial Luxury
   Design system: ink + brushed gold + ivory paper
   ============================================================ */

:root {
  /* Palette */
  --ink:        #14110F;   /* near-black, warm */
  --ink-soft:   #2B2521;   /* secondary text on light */
  --paper:      #F7F3EC;   /* ivory background */
  --paper-2:    #EFE8DB;   /* slightly deeper paper */
  --gold:       #B08D57;   /* brushed gold accent */
  --gold-deep:  #97743F;   /* gold on hover / borders */
  --sage:       #6B7A6E;   /* muted secondary */
  --line:       #DAD0BF;   /* hairline on paper */
  --line-dark:  #34302B;   /* hairline on ink */
  --cream-dim:  rgba(247,243,236,0.62);

  /* Type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* paper grain texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.005em; }
.display {
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 500;
  line-height: 0.98;
}
.display em { font-style: italic; color: var(--gold-deep); }
h2.section-title { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center;
}
.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 54ch; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; z-index: 2; }
.pad { padding-block: var(--section-y); }
.center { text-align: center; }
.mxauto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn-ghost { border-color: var(--line-dark); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-ghost-light { border-color: rgba(247,243,236,0.35); color: var(--paper); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .crest {
  width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-size: 1.05rem;
  color: var(--gold-deep); flex-shrink: 0;
}
.brand .name { font-family: var(--display); font-size: 1.18rem; letter-spacing: 0.06em; font-weight: 420; }
.brand .name span { color: var(--gold-deep); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
/* the scene gives the pinned hero its scroll distance to scrub through */
.hero-scene { position: relative; height: 200vh; background: var(--ink); }
.hero { position: sticky; top: 0; height: 100svh; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg {
  position: absolute; inset: -2%; z-index: 0; will-change: transform, opacity; transform: scale(1.05);
  background-position: center 38%; background-size: cover; background-repeat: no-repeat;
}
.hero-bg--messy { background-image: url("../assets/hero-messy.jpg"); opacity: 1; }
.hero-bg--clean { background-image: url("../assets/hero.jpg"); opacity: 0; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background: #0E0B09; opacity: 0; pointer-events: none; }
.hero .wrap { padding-top: clamp(5rem, 10vh, 7rem); padding-bottom: clamp(3rem, 6vh, 5rem); }
.hero-copy { will-change: transform, opacity; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,11,9,0.94) 0%, rgba(14,11,9,0.78) 34%, rgba(14,11,9,0.30) 64%, rgba(14,11,9,0.20) 100%),
    linear-gradient(0deg, rgba(14,11,9,0.92) 0%, rgba(14,11,9,0.25) 38%, transparent 60%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-top: clamp(7rem, 18vh, 11rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.hero-copy { max-width: 820px; }
.hero .eyebrow { color: var(--gold); }
.hero .display { color: var(--paper); margin: 1.5rem 0 1.7rem; font-size: clamp(3.2rem, 9.5vw, 7.5rem); font-weight: 500; letter-spacing: -0.01em; text-shadow: 0 2px 40px rgba(0,0,0,0.4); }
.hero .display em { color: var(--gold); }
.hero .lede { color: rgba(247,243,236,0.86); max-width: 50ch; }
.hero-copy .lede { margin-bottom: 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { margin-top: 3rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-trust .stat .n { font-family: var(--display); font-size: 2rem; color: var(--paper); display: block; line-height: 1; }
.hero-trust .stat .l { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }
.hero-trust .stat { padding-right: 2.2rem; border-right: 1px solid rgba(247,243,236,0.18); }
.hero-trust .stat:last-child { border: 0; }
/* scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(247,243,236,0.55); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.35); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---- transparent header over the cinematic hero (home only) ---- */
body.home .site-header { background: transparent; backdrop-filter: none; border-color: transparent; }
body.home .site-header .nav { position: relative; z-index: 1; }
body.home .site-header::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,11,9,0.55), rgba(14,11,9,0) 100%);
  transition: opacity 0.4s var(--ease);
}
body.home .site-header.scrolled::before { opacity: 0; }
body.home .site-header .brand .name span { color: var(--gold); }
body.home .site-header.scrolled .brand .name span { color: var(--gold-deep); }
body.home .site-header .brand .name { color: var(--paper); }
body.home .site-header .nav-links a { color: rgba(247,243,236,0.78); }
body.home .site-header .nav-links a:hover, body.home .site-header .nav-links a.active { color: var(--paper); }
body.home .site-header .menu-toggle span { background: var(--paper); }
body.home .site-header.scrolled { background: rgba(247,243,236,0.9); backdrop-filter: blur(14px); border-color: var(--line); }
body.home .site-header.scrolled .brand .name { color: var(--ink); }
body.home .site-header.scrolled .nav-links a { color: var(--ink-soft); }
body.home .site-header.scrolled .nav-links a:hover, body.home .site-header.scrolled .nav-links a.active { color: var(--ink); }
body.home .site-header.scrolled .menu-toggle span { background: var(--ink); }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker { background: var(--ink); color: var(--paper); padding: 1.1rem 0; overflow: hidden; border-block: 1px solid var(--line-dark); }
.ticker-track { display: flex; gap: 3.5rem; white-space: nowrap; animation: scroll-x 32s linear infinite; }
.ticker-track span { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--cream-dim); display: inline-flex; align-items: center; gap: 3.5rem; }
.ticker-track span::after { content: "✦"; color: var(--gold); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS — generic
   ============================================================ */
.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head.center { margin-inline: auto; }
.on-ink { background: var(--ink); color: var(--paper); }
.on-ink .lede { color: var(--cream-dim); }
.on-ink .section-title, .on-ink h3 { color: var(--paper); }
.on-paper-2 { background: var(--paper-2); }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card { background: var(--paper); padding: clamp(1.8rem, 3vw, 2.8rem); transition: background 0.4s var(--ease); position: relative; }
.svc-card:hover { background: var(--paper-2); }
.svc-card .num { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.svc-card h3 { font-size: 1.5rem; margin: 0.8rem 0 0.7rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; }
.svc-card .more { margin-top: 1.2rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; opacity: 0; transform: translateY(6px); transition: 0.4s var(--ease); }
.svc-card:hover .more { opacity: 1; transform: none; }

/* ---------- Feature / value rows ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.value-item .ico { width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); margin-bottom: 1.1rem; }
.value-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.96rem; color: var(--ink-soft); }
.on-ink .value-item p { color: var(--cream-dim); }
.on-ink .value-item .ico { border-color: var(--gold); }

/* ---------- Split / quote ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.bigquote { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.25; font-weight: 360; }
.bigquote em { color: var(--gold-deep); font-style: italic; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.8rem, 3vw, 2.5rem); display: flex; flex-direction: column; transition: 0.4s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(20,17,15,0.25); }
.price-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); position: relative; }
.price-card.featured .price-amt, .price-card.featured h3 { color: var(--paper); }
.price-card.featured .feat-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; }
.price-card h3 { font-size: 1.55rem; }
.price-card .tier-sub { font-size: 0.9rem; color: var(--sage); margin-bottom: 1.3rem; }
.price-card.featured .tier-sub { color: var(--cream-dim); }
.price-amt { font-family: var(--display); font-size: 2.6rem; line-height: 1; margin-bottom: 0.3rem; }
.price-amt small { font-family: var(--sans); font-size: 0.9rem; color: var(--sage); font-weight: 500; }
.price-card ul { margin: 1.6rem 0; display: flex; flex-direction: column; gap: 0.85rem; flex-grow: 1; }
.price-card li { font-size: 0.94rem; display: flex; gap: 0.7rem; align-items: flex-start; }
.price-card li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; }
.price-card.featured li::before { color: var(--gold); }
.price-note { font-size: 0.86rem; color: var(--sage); margin-top: 1.5rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; cursor: pointer; padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.4s var(--ease); }
.faq-q .pm::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding-bottom: 1.7rem; color: var(--ink-soft); max-width: 64ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--sage); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  padding: 0.9rem 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,87,0.15); }
.form-note { font-size: 0.84rem; color: var(--sage); margin-top: 1rem; }
.form-success { background: var(--ink); color: var(--paper); padding: 2.5rem; border-radius: 4px; text-align: center; }
.form-success h3 { color: var(--paper); margin-bottom: 0.6rem; }
.form-success p { color: var(--cream-dim); }

/* ---------- Contact info cards ---------- */
.contact-cards { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-card { border: 1px solid var(--line); border-radius: 4px; padding: 1.4rem 1.5rem; transition: 0.3s; }
.contact-card:hover { border-color: var(--gold); }
.contact-card .k { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.contact-card .v { font-family: var(--display); font-size: 1.25rem; margin-top: 0.35rem; }
.contact-card .v a:hover { color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); border-radius: 6px; padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(176,141,87,0.22), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band .section-title { color: var(--paper); margin-bottom: 1rem; }
.cta-band .lede { color: var(--cream-dim); margin-inline: auto; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--cream-dim); padding-top: clamp(3.5rem, 7vw, 6rem); border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand .name { font-family: var(--display); font-size: 1.5rem; color: var(--paper); letter-spacing: 0.05em; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.94rem; margin-bottom: 0.7rem; color: var(--cream-dim); transition: color 0.3s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.8rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--paper); }
.socials { display: flex; gap: 1rem; }
.socials a { width: 36px; height: 36px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; transition: 0.3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero .display { margin: 1.2rem 0; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.breadcrumb { font-size: 0.82rem; color: var(--sage); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-deep); }

/* ---------- service detail blocks ---------- */
.svc-detail { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: clamp(1.5rem, 4vw, 4rem); padding-block: clamp(2.5rem,5vw,4rem); border-bottom: 1px solid var(--line); align-items: start; }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail .lead-col .num { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--gold); }
.svc-detail h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0.5rem 0; }
.svc-detail .body-col p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.svc-detail ul.inc { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }
.svc-detail ul.inc li { font-size: 0.95rem; display: flex; gap: 0.6rem; }
.svc-detail ul.inc li::before { content: "—"; color: var(--gold-deep); }

/* about timeline / values */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.principles { display: grid; gap: 1.5rem; }
.principle { display: flex; gap: 1.2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.principle:last-child { border: 0; }
.principle .n { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 1.3rem; }
.principle h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.principle p { color: var(--ink-soft); font-size: 0.96rem; }
.on-ink .principle p { color: rgba(247,243,236,0.72); }

/* tax partner block */
.partner { background: var(--paper-2); border: 1px solid var(--line); border-radius: 5px; padding: clamp(1.8rem,4vw,3rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.partner h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.partner p { color: var(--ink-soft); max-width: 50ch; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-scene { height: auto; }
  .hero { position: relative; }
  .scroll-cue .line { animation: none; }
}

/* ---------- portrait / image frame ---------- */
.portrait { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; background: var(--ink); box-shadow: 0 40px 80px -34px rgba(20,17,15,0.5); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,11,9,0.6), transparent 52%), radial-gradient(120% 80% at 30% 10%, transparent 40%, rgba(176,141,87,0.16) 100%); }
.portrait .cap { position: absolute; left: 1.3rem; bottom: 1.2rem; z-index: 2; }
.portrait .cap .nm { font-family: var(--display); font-size: 1.2rem; color: var(--paper); }
.portrait .cap .rl { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid, .value-row, .price-grid, .split, .about-grid, .form-grid, .footer-top, .svc-detail { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
  .partner { grid-template-columns: 1fr; }
  .svc-detail ul.inc { grid-template-columns: 1fr 1fr; }
  .hero-bg { background-position: center 30%; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
  }
  body.home .site-header.open .nav-links a { color: var(--ink-soft); }
  .site-header.open .nav-links a { padding: 0.9rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .price-grid { gap: 2.5rem; }
  .svc-detail ul.inc { grid-template-columns: 1fr; }
  .hero::after { background:
    linear-gradient(0deg, rgba(14,11,9,0.95) 0%, rgba(14,11,9,0.45) 45%, rgba(14,11,9,0.35) 100%); }
  .hero-trust { gap: 1.4rem; }
  .hero-trust .stat { padding-right: 1.4rem; }
  .hero-trust .stat .n { font-size: 1.6rem; }
  .scroll-cue { display: none; }
}
@media (max-width: 720px) and (max-height: 720px) { .scroll-cue { display: none; } }
