/* =========================================================================
   Wiltshire Aircon — art-deco luxury, black & gold, glassmorphism
   ========================================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---- Tokens ---- */
:root {
  --bg:          #09090b;
  --bg-2:        #0c0c0f;
  --bg-3:        #101015;
  --panel:       rgba(255, 255, 255, 0.035);
  --panel-2:     rgba(255, 255, 255, 0.055);
  --line:        rgba(230, 200, 140, 0.16);
  --line-soft:   rgba(230, 200, 140, 0.10);

  --gold:        #e6c888;
  --gold-bright: #f5e6bd;
  --gold-deep:   #c39a4c;
  --gold-glow:   rgba(230, 200, 140, 0.35);

  --ink:         #f5f1e7;
  --text:        #bcb6a9;
  --muted:       #8b8579;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ---- Base ---- */
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric background: layered gold glows + fine grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 78% -5%, rgba(230, 200, 140, 0.10), transparent 60%),
    radial-gradient(50% 45% at 8% 8%, rgba(195, 154, 76, 0.07), transparent 55%),
    radial-gradient(70% 60% at 50% 108%, rgba(230, 200, 140, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 40%, var(--bg));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%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(--serif); font-weight: 400; color: var(--ink); line-height: 1.08; letter-spacing: 0.005em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { max-width: 62ch; }
strong { color: var(--ink); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text); max-width: 56ch; }
.gold-text { color: var(--gold); }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--gold-bright); }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1.1rem; }
.section-head p { margin-top: 1.2rem; }
.section-head.center p { margin-inline: auto; }

/* Deco divider */
.deco-rule { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold-deep); }
.deco-rule::before, .deco-rule::after { content: ""; height: 1px; width: min(6rem, 18vw); background: linear-gradient(90deg, transparent, var(--line)); }
.deco-rule::after { background: linear-gradient(90deg, var(--line), transparent); }
.deco-diamond { width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg); position: relative; }
.deco-diamond::after { content: ""; position: absolute; inset: 2px; border: 1px solid var(--gold-deep); }

/* ---- Glass card ---- */
.glass {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
/* Gold corner ticks (art-deco frame) */
.ticked::before, .ticked::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.ticked::before { top: 10px; left: 10px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.ticked::after  { bottom: 10px; right: 10px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  will-change: transform;
}
.btn-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 10px 30px -12px var(--gold-glow);
  border: 1px solid transparent;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px var(--gold-glow); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn-arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-mark path, .brand-mark text { transition: fill 0.4s var(--ease), stroke 0.4s var(--ease); }
.brand-mark .dg { fill: none; stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.brand-mark .d-out { stroke: var(--gold); }
.brand-mark .d-in { stroke: var(--gold-deep); }
.brand-mark .w { fill: var(--gold-bright); font-family: var(--serif); font-weight: 500; }
.brand:hover .brand-mark .d-out { stroke: var(--gold-bright); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .b1 { font-family: var(--serif); font-size: 1.28rem; letter-spacing: 0.34em; color: var(--ink); text-transform: uppercase; }
.brand-word .b2 { font-family: var(--sans); font-weight: 300; font-size: 0.6rem; letter-spacing: 0.55em; color: var(--gold); text-transform: uppercase; margin-top: 3px; padding-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  position: relative; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); padding-block: 0.4rem; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: 0.6rem; }
/* Nav quote button: refined outlined gold, not a bright fill */
.nav-cta.btn-primary {
  color: var(--gold-bright);
  background: rgba(230, 200, 140, 0.08);
  border: 1px solid var(--gold);
  box-shadow: none;
  padding: 0.85rem 1.6rem;
}
.nav-cta.btn-primary:hover {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 12px 30px -14px var(--gold-glow);
}

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: var(--gold); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 84px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) brightness(0.6) contrast(1.05); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,9,11,0.96) 0%, rgba(9,9,11,0.8) 42%, rgba(9,9,11,0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.hero-inner { max-width: 44rem; }
.hero h1 { margin: 1.6rem 0 0; }
.hero h1 .line { display: block; }
.hero .serif-accent { font-weight: 300; }
.hero-sub { margin-top: 1.8rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text); max-width: 40ch; }
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta { margin-top: 3.2rem; display: flex; flex-wrap: wrap; gap: 2.4rem; }
.hero-meta .item .k { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-bright); }
.hero-meta .item .v { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.hero-trust { margin-top: 2.8rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-trust svg { width: 15px; height: 15px; color: var(--gold-deep); flex: none; }
.hero-trust span { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero-trust strong { color: var(--gold); font-weight: 400; }

/* Scroll cue */
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--muted); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---- Trust strip ---- */
.trust { border-block: 1px solid var(--line-soft); background: rgba(255,255,255,0.015); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; padding-block: 1.6rem; }
.trust .t-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); }
.trust .t-item svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ---- Service cards ---- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card { padding: 2.2rem 2rem 2.4rem; overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.service-card:hover { transform: translateY(-6px); border-color: var(--line); }
.service-card .num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.service-card .s-icon { width: 46px; height: 46px; margin: 1.4rem 0 1.5rem; color: var(--gold); }
.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { font-size: 0.95rem; }
.service-card .more { margin-top: 1.6rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.service-card .more svg { width: 15px; transition: transform 0.4s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* Feature split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5 / 4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(12%) brightness(0.82) contrast(1.03); transition: transform 1.1s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media .frame { position: absolute; inset: 14px; border: 1px solid var(--line-soft); pointer-events: none; }
.split-body .eyebrow { margin-bottom: 1.1rem; }
.split-body h2 { margin-bottom: 1.2rem; }
.split-list { margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.split-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.96rem; }
.split-list svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }

/* ---- Areas ---- */
.areas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.area-chip { font-size: 0.8rem; letter-spacing: 0.08em; padding: 0.5rem 1.1rem; border: 1px solid var(--line-soft); border-radius: 40px; color: var(--text); background: rgba(255,255,255,0.02); transition: all 0.35s var(--ease); }
.area-chip:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---- Testimonials ---- */
.quote-card { padding: 2.4rem 2.2rem; display: flex; flex-direction: column; }
.quote-card .mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.5; color: var(--gold-deep); height: 1.4rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.24rem; font-style: italic; color: var(--ink); line-height: 1.5; margin: 1.2rem 0 1.6rem; }
.quote-card .who { margin-top: auto; }
.quote-card .who .name { color: var(--gold-bright); font-size: 0.95rem; letter-spacing: 0.04em; }
.quote-card .who .src { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }
.stars { display: flex; gap: 3px; margin-bottom: 0.4rem; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; overflow: hidden; }
.cta-panel { padding: clamp(3rem, 6vw, 5rem); text-align: center; }
.cta-panel h2 { margin-bottom: 1.2rem; }
.cta-panel p { margin: 0 auto 2.4rem; }
.cta-panel .hero-actions { justify-content: center; }

/* ---- Contact ---- */
.wrap-wide { max-width: 1360px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-info .info-item { padding: 1.5rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .label { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.contact-info .value { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.contact-info .value a:hover { color: var(--gold-bright); }
.contact-info .sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

form.enquiry { padding: clamp(1.8rem, 4vw, 2.8rem); }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-weight: 300; font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 0.95rem 1.1rem; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.05); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c39a4c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1.2rem; font-size: 0.9rem; display: none; }
.form-status.ok { display: block; color: var(--gold-bright); }
.form-status.err { display: block; color: #e0857a; }

/* ---- Page hero (interior pages) ---- */
.page-hero { padding-top: calc(84px + clamp(3.5rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
.page-hero .crumbs { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 1.6rem; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line-soft); padding-top: clamp(3.5rem, 6vw, 5rem); background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35)); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.8rem; }
.footer-col a { font-size: 0.92rem; color: var(--text); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-group { border-top: 1px solid var(--line-soft); padding-block: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-group .group-lockup { display: flex; align-items: center; gap: 1.1rem; }
.footer-group .group-lockup img { height: 52px; width: auto; opacity: 0.92; }
.footer-group .group-lockup .gl-text { font-size: 0.82rem; color: var(--muted); max-width: 30ch; }
.footer-group .group-lockup .gl-text strong { color: var(--text); }
.footer-group .group-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-group .group-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 0.45rem; transition: color 0.3s var(--ease); }
.footer-group .group-links a svg { width: 13px; height: 13px; color: var(--gold-deep); }
.footer-group .group-links a:hover { color: var(--gold-bright); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.8rem; border-top: 1px solid var(--line-soft); font-size: 0.78rem; color: var(--muted); }
.footer-legal a:hover { color: var(--gold); }

/* ---- 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; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .split-media { aspect-ratio: 16 / 10; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 1rem var(--gutter) 2rem;
    background: rgba(9, 9, 11, 0.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform 0.5s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: none; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
  .nav-links .nav-cta { width: 100%; margin: 1rem 0 0; }
  .nav-links .btn { width: 100%; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
