/* ==========================================================================
   JEAN LLESES — homepage
   --------------------------------------------------------------------------
   Same design language as the property pages, declared here rather than
   inherited so the homepage can stand alone: near-black ground, night
   photography, Cormorant Garamond display, Montserrat labels, Inter body,
   and the luminous blue accent.

   MOTION. The brief is "3D-like movement". Everything here is built on
   transform and opacity only — never top/left/width — so it composites on the
   GPU and holds up on a mid-range phone, which is what most of Jean's buyers
   are on. Three techniques carry it:

     · scroll parallax   hero layers translate at different rates
     · pointer tilt      cards rotate in perspective toward the cursor
     · reveal            sections rise and settle as they enter the viewport

   Every one is disabled under prefers-reduced-motion, and none is
   load-bearing: with JS off the page is a complete, readable document.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --dark: #07090F;
  --dark-2: #0D1220;
  --dark-3: #121929;
  --dark-4: #1A2438;

  /* The accent. Named --gold to match the property pages' token vocabulary,
     so one mental model covers the whole site. It is a LIGHT colour: legible
     as type on the dark ground, and it takes near-black type when used as a
     fill. White on it is 1.9:1 and is never correct. */
  --gold: #8FB8DF;
  --gold-light: #C2DDF5;
  --gold-dark: #5980A6;
  --gold-subtle: rgba(143, 184, 223, 0.12);

  --white: #FFFFFF;
  --text-body: #C8CDD8;
  --text-muted: #8A94A8;
  --border: rgba(143, 184, 223, 0.20);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --gut: clamp(20px, 5vw, 72px);
  --maxw: 1320px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.04; margin: 0; color: var(--white); }
p { margin: 0 0 1em; }
img { display: block; max-width: 100%; }
/* Images on this page ship width/height attributes for CLS. Those map to
   presentational width/height, which would otherwise beat any aspect-ratio
   the layout sets — so anything without an explicit CSS height gets auto. */
.jr-card img, .agent-photo img, .port-media img, .spot-card img { height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: rgba(143, 184, 223, .3); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.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: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--dark); padding: 12px 20px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 8px; top: 8px; }

.eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 18px; display: block;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 32px; border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); transform: translateY(-3px); }
.btn-ghost { border-color: rgba(255,255,255,.30); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 84px;
  display: flex; align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s, height .4s var(--ease);
}
.nav.scrolled {
  height: 68px; background: rgba(7, 9, 15, .90);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; width: 100%; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.86);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 13px 24px; font-size: 11px; }

.nav-burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: none; border: 1px solid var(--border); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-burger span { display: block; width: 19px; height: 1.5px; background: var(--white); transition: transform .3s var(--ease), opacity .3s; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 99; background: rgba(7,9,15,.98);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 100px var(--gut) 40px; overflow-y: auto; overflow-x: hidden; max-width: 100vw;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
body.menu-open .nav-drawer { opacity: 1; visibility: visible; transform: none; }
.nav-drawer a {
  font-family: var(--font-display); font-size: clamp(26px, 6.4vw, 40px);
  color: var(--white); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-drawer a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   HERO — The Oriana
   Three depth planes: the photograph sits furthest back and moves least on
   scroll, the veil keeps type legible over whatever part of it ends up
   behind, and the copy rides in front.
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 140px 0 clamp(48px, 8vh, 96px); overflow: hidden;
  perspective: 1200px;
}
.hero-media { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%;
  transform: scale(1.06); will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, var(--dark) 1%, rgba(7,9,15,.88) 24%, rgba(7,9,15,.36) 58%, rgba(7,9,15,.58) 100%),
    radial-gradient(120% 80% at 78% 28%, rgba(143,184,223,.15), transparent 62%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 960px; }
.hero h1 {
  font-size: clamp(3.2rem, 11.5vw, 8.6rem); line-height: .88; letter-spacing: -.015em;
  margin: 0;
}
.hero h1 .ital { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem); color: rgba(255,255,255,.94);
  margin: 20px 0 34px; max-width: 32ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: var(--gut); bottom: 20px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.74);
}
.hero-scroll i { display: block; width: 44px; height: 1px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero-scroll i::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue { 0% { transform: translateX(-100%) } 55%,100% { transform: translateX(100%) } }

/* Stat strip */
.stats { position: relative; z-index: 2; border-top: 1px solid var(--border); background: linear-gradient(180deg, rgba(13,18,32,.9), var(--dark)); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats > .wrap > div { padding: 34px 24px 34px 0; border-right: 1px solid var(--border); }
.stats > .wrap > div:not(:first-child) { padding-left: 28px; }
.stats > .wrap > div:last-child { border-right: 0; }
.stat-n { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.1rem); color: var(--white); line-height: 1; }
.stat-l { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); padding: 15px 0; background: var(--dark-2); }
.marquee-track { display: flex; width: max-content; animation: slide 52s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); font-size: 21px; color: rgba(255,255,255,.52);   /* .44 measured 4.37:1 */
  white-space: nowrap; display: flex; align-items: center; gap: 52px; padding-right: 52px;
}
.marquee span::after { content: '\25C6'; font-size: 7px; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%) } }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.sec { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.sec-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head h2 { font-size: clamp(2.2rem, 5.4vw, 4.2rem); letter-spacing: -.01em; }
.sec-head h2 em { font-style: italic; color: var(--gold); }
.sec-head p { color: var(--text-muted); font-size: 17px; margin-top: 20px; max-width: 58ch; }

/* Spotlight */
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; perspective: 1400px; }
.spot-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4; display: block;
  transform-style: preserve-3d; transition: transform .5s var(--ease);
  will-change: transform; background: var(--dark-3);
}
.spot-card img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .9s var(--ease); }
.spot-card:hover img { transform: scale(1.07); }
.spot-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,.94) 4%, rgba(7,9,15,.22) 54%, transparent 80%);
}
.spot-cap { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; transform: translateZ(40px); }
.spot-cap h3 { font-size: 27px; color: var(--white); margin-top: 6px; }
.spot-cap span { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* Portfolio */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1600px; }
.port-card {
  position: relative; display: block; background: var(--dark-2);
  border: 1px solid var(--border); overflow: hidden;
  transform-style: preserve-3d; transition: transform .5s var(--ease), border-color .4s;
  will-change: transform;
}
.port-card:hover { border-color: var(--gold); }
.port-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.port-media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .9s var(--ease); }
.port-card:hover .port-media img { transform: scale(1.06); }
.port-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 11px; background: var(--gold); color: var(--dark);
}
.port-tag.rfo { background: #0E7A38; color: #fff; }
.port-body { padding: 22px 24px 26px; transform: translateZ(24px); }
.port-body h3 { font-size: 26px; margin-bottom: 4px; }
.port-loc { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--text-muted); }
.port-price { font-family: var(--font-display); font-size: 21px; color: var(--gold); margin-top: 14px; }
.port-more { display: flex; justify-content: center; margin-top: 52px; }

/* Why DMCI */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.why-grid > div { padding: 38px 30px 38px 0; border-right: 1px solid var(--border); }
.why-grid > div:not(:first-child) { padding-left: 30px; }
.why-grid > div:last-child { border-right: 0; }
.why-n { font-family: var(--font-display); font-size: 15px; color: var(--gold); display: block; margin-bottom: 16px; }
.why-grid h3 { font-size: 25px; margin-bottom: 12px; }
.why-grid p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* Agent */
.agent { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(32px,6vw,80px); align-items: center; }
.agent-photo { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.agent-photo img { width: 100%; height: 100% !important; object-fit: cover; object-position: 50% 20%; }
.agent-photo::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--border); }
.agent blockquote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem,2.7vw,2rem);
  color: var(--white); margin: 0 0 26px; padding-left: 22px; border-left: 2px solid var(--gold); line-height: 1.35;
}
.agent-points { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 12px; }
.agent-points li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 15px; }
.agent-points li::before { content: '\2014'; color: var(--gold); }

/* Homepage bio runs long (Jean's Sales Manager write-up). Keep the portrait
   beside the text instead of floating in the middle of a tall column. */
@media (min-width: 900px) {
  #agent .agent { align-items: start; }
  #agent .agent-photo { position: sticky; top: 104px; }
}

/* Numbers */
.calc { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(32px,6vw,72px); align-items: center; }
.calc-sheet { border: 1px solid var(--border); background: linear-gradient(180deg, var(--dark-2), var(--dark)); }
.calc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 17px 26px; border-bottom: 1px solid rgba(143,184,223,.10); }
.calc-row:last-of-type { border-bottom: 0; }
.calc-row .k { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.calc-row .v { font-family: var(--font-display); font-size: 25px; color: var(--white); }
.calc-row.hi .v { color: var(--gold); }
.calc-fine { padding: 16px 26px; border-top: 1px solid var(--border); font-size: 11.5px; color: var(--text-muted); }

/* Journal */
.jr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; perspective: 1400px; }
.jr-card { display: block; border: 1px solid var(--border); background: var(--dark-2); overflow: hidden; transform-style: preserve-3d; transition: transform .5s var(--ease), border-color .4s; will-change: transform; }
.jr-card:hover { border-color: var(--gold); }
.jr-card img { aspect-ratio: 16/9; width: 100%; height: auto; object-fit: cover; }
.jr-body { padding: 24px; transform: translateZ(20px); }
.jr-meta { font-family: var(--font-sans); font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.jr-body h3 { font-size: 22px; margin: 12px 0 10px; }
.jr-body p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* FAQ */
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.15rem,2.2vw,1.6rem); color: var(--white);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 13px; height: 1px; background: var(--gold);
}
.faq-list summary::before {
  content: ''; position: absolute; right: 12px; top: 50%; width: 1px; height: 13px;
  background: var(--gold); transform: translateY(-50%); transition: transform .3s var(--ease), opacity .3s;
}
.faq-list details[open] summary::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq-list p { color: var(--text-muted); max-width: 74ch; padding-bottom: 26px; margin: 0; font-size: 15.5px; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px,6vw,72px); }
.contact-lines { margin-top: 34px; }
.contact-lines div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(143,184,223,.10); align-items: baseline; }
.contact-lines .k { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
form.jl { border: 1px solid var(--border); background: var(--dark-2); padding: clamp(24px,3.4vw,40px); display: grid; gap: 18px; }
form.jl .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form.jl label { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
form.jl input, form.jl select, form.jl textarea {
  width: 100%; background: var(--dark); border: 1px solid var(--border); color: var(--white);
  font-family: var(--font-body); font-size: 15px; padding: 13px 15px; border-radius: 0; transition: border-color .3s;
}
form.jl input:focus, form.jl select:focus, form.jl textarea:focus { border-color: var(--gold); outline: none; }
form.jl textarea { min-height: 104px; resize: vertical; }
form.jl .fine { font-size: 11.5px; color: var(--text-muted); }

/* Footer */
.foot { border-top: 1px solid var(--border); background: var(--dark-2); padding: clamp(48px,7vw,80px) 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.foot img { height: 34px; margin-bottom: 18px; }
.foot p { font-size: 14px; color: var(--text-muted); max-width: 40ch; }
.foot h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: 16px; }
.foot a { display: block; font-size: 14.5px; color: var(--text-body); padding: 5px 0; }
.foot a:hover { color: var(--gold); }
.foot-legal { border-top: 1px solid var(--border); padding: 20px 0 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   Hero entrance.
   The hero must present itself on load, so it is TIME-based, not scroll-based.
   A scroll observer with a bottom margin leaves the CTA buttons — which sit
   near the fold — invisible until the visitor scrolls, which is exactly the
   wrong first impression for the one screen everybody sees.
   -------------------------------------------------------------------------- */
.js .hero-in { opacity: 0; transform: translate3d(0, 26px, 0); animation: heroIn .95s var(--ease) forwards; }
.js .hero-in.h1 { animation-delay: .08s }
.js .hero-in.h2 { animation-delay: .18s }
.js .hero-in.h3 { animation-delay: .28s }
@keyframes heroIn { to { opacity: 1; transform: none } }

/* --------------------------------------------------------------------------
   Reveal-on-scroll. The hidden state is applied only when the .js class is
   present, which the script sets on itself before it observes anything — so a
   JS error leaves a fully visible page rather than a blank column.
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translate3d(0, 34px, 0); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.d1.in { transition-delay: .09s } .js .reveal.d2.in { transition-delay: .18s }
.js .reveal.d3.in { transition-delay: .27s } .js .reveal.d4.in { transition-delay: .36s }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .spot-grid, .port-grid, .jr-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid > div:nth-child(2) { border-right: 0; }
  .why-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .agent, .calc, .contact { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stats > .wrap > div:nth-child(2) { border-right: 0; }
  .stats > .wrap > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 720px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .spot-grid, .port-grid, .jr-grid, .why-grid { grid-template-columns: 1fr; }
  .why-grid > div { border-right: 0; border-bottom: 1px solid var(--border); padding-left: 0 !important; padding-right: 0; }
  form.jl .pair { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-lines div { grid-template-columns: 96px 1fr; }
  .hero { min-height: 92svh; }
  .hero-scroll { display: none; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero-media, .hero-media img { transform: none !important; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .nav, .nav-drawer, .hero-scroll, .marquee, form.jl, .uk-share-fab { display: none !important; }
  body { background: #fff; color: #111; }
  h1, h2, h3, h4 { color: #111; }
  .hero { min-height: auto; }
}
