:root {
  --ink: #2f241b;
  --ink-soft: #665548;
  --cream: #fbf7ef;
  --ivory: #fffdf8;
  --sand: #eadcc9;
  --tan: #c6a57d;
  --brown: #7c5a3a;
  --brown-dark: #3c2a1d;
  --gold: #b8872f;
  --gold-light: #e7cc82;
  --gold-deep: #7d551c;
  --line: rgba(76, 55, 35, .16);
  --shadow: 0 24px 70px rgba(57, 37, 18, .14);
  --radius: 28px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: #fff; padding: .8rem 1rem; border-radius: 10px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem; color: var(--gold-deep); font-size: .76rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: #f7dfa2; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; margin: 0; font-weight: 600; }
h2 { font-size: clamp(2.4rem, 5vw, 4.7rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
p { margin: 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; padding: 16px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, .94); backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(55, 39, 21, .08); padding: 8px 0;
}
.nav-shell {
  width: min(1240px, calc(100% - 32px)); margin: auto; display: flex;
  align-items: center; justify-content: space-between; gap: 2rem;
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px; padding: 10px 12px 10px 17px; box-shadow: 0 12px 40px rgba(48, 28, 12, .12);
}
.site-header.scrolled .nav-shell { box-shadow: none; background: transparent; border-color: transparent; }
.brand img { width: 225px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 1.55rem; font-size: .9rem; font-weight: 600; }
.primary-nav > a { position: relative; }
.primary-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--gold); transition: right .25s ease; }
.primary-nav > a:hover::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: .2s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 1.45rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 1.15rem; font-size: .84rem; }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #38250e; box-shadow: 0 12px 25px rgba(179, 131, 45, .25); }
.button-gold:hover { box-shadow: 0 16px 36px rgba(179, 131, 45, .34); }
.button-dark { background: var(--brown-dark); color: #fff; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-outline { border-color: var(--gold); color: var(--gold-deep); }
.button-full { width: 100%; }
.text-link { border: 0; background: none; font-weight: 700; padding: .8rem 0; cursor: pointer; }
.text-link span { color: var(--gold); margin-left: .35rem; }

.hero { position: relative; min-height: 900px; height: 100svh; color: #fff; display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,16,9,.83) 0%, rgba(36,22,10,.58) 47%, rgba(34,21,8,.22) 72%, rgba(21,14,8,.45) 100%), linear-gradient(0deg, rgba(23,15,8,.67), transparent 45%); }
.hero-grain { position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero h1 { max-width: 850px; font-size: clamp(4rem, 8.5vw, 8.2rem); letter-spacing: -.05em; text-shadow: 0 12px 40px rgba(0,0,0,.22); }
.hero h1 em { font-weight: 500; color: #f1d99c; }
.hero-content > p { max-width: 640px; margin-top: 1.6rem; font-size: 1.15rem; color: rgba(255,255,255,.83); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-facts { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); max-width: 780px; margin-top: 3.8rem; border-top: 1px solid rgba(255,255,255,.28); padding-top: 1.4rem; }
.hero-facts div { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.2); padding-right: 1.2rem; margin-right: 1.2rem; }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { font-family: var(--serif); font-size: 1.55rem; }
.hero-facts span { font-size: .77rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; }
.scroll-cue { position: absolute; z-index: 2; right: 36px; bottom: 30px; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; display: flex; align-items: center; gap: .7rem; }
.scroll-cue span { width: 1px; height: 55px; background: rgba(255,255,255,.6); }

.intro-band { background: #fff; padding: 90px 0; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: .45fr 1.55fr 1fr; gap: 4rem; align-items: start; }
.section-number { color: var(--gold-deep); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.intro-grid h2 { font-size: clamp(2.3rem, 4.3vw, 4.2rem); }
.intro-grid > p:last-child { color: var(--ink-soft); font-size: 1.02rem; padding-top: 2.8rem; }

.property-section { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-heading > div > p { color: var(--ink-soft); margin-top: .5rem; }
.section-heading > p { max-width: 430px; color: var(--ink-soft); }
.section-heading.light { color: #fff; }
.section-heading.light > p { color: rgba(255,255,255,.72); }
.availability-pill { padding: .7rem 1rem; border: 1px solid rgba(69, 48, 26, .14); background: #fff; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.availability-pill span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #cf9f37; margin-right: .4rem; box-shadow: 0 0 0 5px rgba(207,159,55,.13); }
.property-showcase { display: grid; grid-template-columns: 1.28fr .82fr; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.property-photo-wrap { position: relative; min-height: 650px; }
.property-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.photo-tag { position: absolute; left: 24px; bottom: 24px; background: rgba(255,253,248,.9); backdrop-filter: blur(10px); padding: .7rem 1rem; border-radius: 999px; font-weight: 700; font-size: .8rem; }
.property-card { padding: clamp(2rem, 4vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; }
.property-price { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); padding-bottom: 1.7rem; margin-bottom: 1.7rem; }
.property-price span { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--gold-deep); }
.property-price strong { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; margin: .25rem 0; }
.property-price small { color: var(--ink-soft); }
.property-card > p { color: var(--ink-soft); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2rem 0; }
.feature-grid div { padding: 1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 34px 1fr; }
.feature-icon { grid-row: 1 / 3; width: 26px; height: 26px; border: 1px solid var(--gold); color: var(--gold-deep); border-radius: 50%; display: grid; place-items: center; font-size: .7rem; }
.feature-grid strong { font-size: .94rem; }
.feature-grid small { color: var(--ink-soft); }
.property-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.amenities-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; margin-top: 7rem; align-items: start; }
.amenities-copy h3 { margin-bottom: 1rem; }
.amenities-copy p { color: var(--ink-soft); }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.amenities-list div { padding: 1.25rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.amenities-list span { color: var(--gold); font-size: .72rem; margin-right: .8rem; }

.gallery-section { background: var(--brown-dark); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 265px; gap: 12px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 18px; overflow: hidden; cursor: zoom-in; background: #231810; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, opacity .3s; }
.gallery-item:hover img { transform: scale(1.045); opacity: .84; }
.gallery-item span { position: absolute; left: 16px; bottom: 14px; background: rgba(34,23,14,.68); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .45rem .75rem; font-size: .75rem; font-weight: 700; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.location-section { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 6rem; align-items: center; }
.location-card { padding: clamp(2rem, 5vw, 5rem); border-radius: var(--radius); background: linear-gradient(145deg, #f2e4d1, #fbf7ef); position: relative; overflow: hidden; }
.location-card::after { content: ""; width: 250px; height: 250px; border: 1px solid rgba(154,105,35,.24); border-radius: 50%; position: absolute; right: -70px; top: -80px; box-shadow: 0 0 0 35px rgba(180,133,50,.06), 0 0 0 70px rgba(180,133,50,.03); }
.location-card p { color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 590px; }
.distance-list div { display: grid; grid-template-columns: 120px 1fr; align-items: baseline; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.distance-list strong { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-deep); }
.distance-list span { color: var(--ink-soft); }

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 6rem; align-items: center; }
.about-image { position: relative; }
.about-image > img { width: 100%; min-height: 650px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.signature-card { position: absolute; right: -40px; bottom: 36px; background: var(--brown-dark); color: #fff; padding: 1.5rem 2rem; border-radius: 20px; box-shadow: 0 18px 42px rgba(39,24,12,.25); }
.signature-card span { display: block; color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: .65rem; }
.signature-card strong { font-family: var(--serif); font-size: 1.8rem; line-height: 1.15; }
.about-copy > p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.02rem; }
.value-row { margin-top: 2.2rem; }
.value-row div { display: grid; grid-template-columns: 45px 90px 1fr; gap: .8rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.value-row span { color: var(--gold); font-size: .73rem; }
.value-row strong { font-family: var(--serif); font-size: 1.25rem; }
.value-row small { color: var(--ink-soft); }

.coming-section { background: #fff; }
.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.coming-card { min-height: 420px; padding: 1.6rem; border-radius: 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background-size: cover; isolation: isolate; }
.coming-card::before, .coming-card::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.coming-card::before { background: linear-gradient(165deg, rgba(34,22,12,.14), rgba(38,22,8,.86)); }
.coming-card::after { inset: auto -20% -38% auto; width: 85%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 35px rgba(255,255,255,.04), 0 0 0 70px rgba(255,255,255,.025); }
.coming-a { background: linear-gradient(135deg,#b38b59,#6d4f34); }
.coming-b { background: linear-gradient(135deg,#d0b589,#8a6540); }
.coming-c { background: linear-gradient(135deg,#b7a58e,#6e5d4a); }
.coming-number { font-family: var(--serif); font-size: 3.8rem; opacity: .45; }
.coming-card small { text-transform: uppercase; letter-spacing: .15em; color: #f2d99d; }
.coming-card h3 { margin: .45rem 0; }
.coming-card p { color: rgba(255,255,255,.7); }
.coming-label { align-self: flex-start; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; padding: .45rem .8rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.notify-strip { margin-top: 1rem; padding: 1.4rem 1.5rem 1.4rem 2rem; border-radius: 22px; background: var(--sand); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.notify-strip div { display: flex; flex-direction: column; }
.notify-strip span { color: var(--ink-soft); }

.process-section { background: #f1e6d7; }
.center-heading { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid div { padding: 2.1rem; border-right: 1px solid rgba(78,55,32,.16); }
.process-grid div:last-child { border-right: 0; }
.process-grid span { color: var(--gold-deep); font-size: .76rem; font-weight: 700; letter-spacing: .14em; }
.process-grid h3 { margin: .7rem 0; font-size: 1.8rem; }
.process-grid p { color: var(--ink-soft); font-size: .93rem; }

.contact-section { background: var(--brown-dark); color: #fff; }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: start; }
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-copy > p { color: rgba(255,255,255,.72); margin-top: 1.5rem; max-width: 540px; }
.contact-links { margin-top: 3rem; display: flex; flex-direction: column; gap: .4rem; }
.contact-links a { color: var(--gold-light); font-weight: 700; }
.contact-links span { color: rgba(255,255,255,.58); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-links a { border-bottom: 1px solid rgba(255,255,255,.3); font-size: .86rem; }
.enquiry-form { background: var(--ivory); color: var(--ink); padding: clamp(1.5rem, 4vw, 3rem); border-radius: 24px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquiry-form label { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; font-size: .78rem; font-weight: 700; color: var(--ink-soft); }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; border: 1px solid rgba(75,51,29,.18); background: #fff; border-radius: 12px; padding: .85rem 1rem; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(184,135,47,.12); }
.enquiry-form textarea { resize: vertical; }
.consent { flex-direction: row !important; align-items: flex-start; font-weight: 500 !important; line-height: 1.4; }
.consent input { width: 17px; margin-top: 2px; }
.honeypot { position: absolute !important; left: -9999px; }
.form-status { margin-top: .7rem; font-size: .82rem; min-height: 1.4em; }
.form-status.success { color: #276b39; }
.form-status.error { color: #a12e2e; }

.site-footer { background: #fffaf1; padding: 48px 0 22px; }
.footer-top { display: grid; grid-template-columns: 245px 1fr auto; align-items: center; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-top img { width: 235px; }
.footer-top div { display: flex; flex-direction: column; }
.footer-top strong { font-family: var(--serif); font-size: 1.25rem; }
.footer-top span { color: var(--ink-soft); font-size: .9rem; }
.back-top { font-weight: 700; font-size: .85rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; color: var(--ink-soft); font-size: .8rem; }
.footer-bottom div { display: flex; gap: 1.2rem; }

.enquiry-modal { width: min(650px, calc(100% - 28px)); max-height: calc(100vh - 30px); overflow: auto; border: 0; border-radius: 28px; padding: 0; background: var(--cream); box-shadow: 0 30px 100px rgba(20,12,5,.4); }
.enquiry-modal::backdrop, .lightbox::backdrop { background: rgba(24,15,8,.78); backdrop-filter: blur(6px); }
.modal-close { position: sticky; z-index: 2; top: 12px; float: right; margin: 12px 12px 0 0; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; font-size: 1.6rem; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.modal-heading { padding: 2.5rem 2.5rem 0; }
.modal-heading h2 { font-size: 2.6rem; }
.modal-heading p { color: var(--ink-soft); margin-top: .8rem; }
.modal-form { box-shadow: none; padding-top: 2rem; }
.lightbox { width: min(1200px, calc(100% - 24px)); height: min(88vh, 820px); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; border-radius: 18px; }
.lightbox-close { position: absolute; right: -8px; top: -48px; color: #fff; background: none; border: 0; font-size: 2.2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.privacy-page { background: #fffaf2; }
.privacy-header { padding: 160px 0 70px; background: var(--brown-dark); color: #fff; }
.privacy-content { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.privacy-content h2 { font-size: 2rem; margin: 2.2rem 0 .8rem; }
.privacy-content p, .privacy-content li { color: var(--ink-soft); }

@media (max-width: 1050px) {
  .primary-nav { gap: 1rem; }
  .primary-nav > a { display: none; }
  .intro-grid { grid-template-columns: 1fr 2fr; }
  .intro-grid > p:last-child { grid-column: 2; padding-top: 0; }
  .property-showcase { grid-template-columns: 1fr; }
  .property-photo-wrap { min-height: 520px; }
  .amenities-wrap, .about-grid, .location-grid, .contact-shell { gap: 3rem; }
  .signature-card { right: 20px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .brand img { width: 190px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); display: none;
    flex-direction: column; align-items: stretch; background: #fffdf8; border-radius: 18px;
    padding: 1rem; box-shadow: var(--shadow); color: var(--ink);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a { display: block; padding: .7rem; }
  .primary-nav .button { width: 100%; }
  .hero { min-height: 780px; height: auto; padding: 140px 0 70px; }
  .hero h1 { font-size: clamp(3.3rem, 13vw, 6rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; }
  .hero-facts div:nth-child(2) { border-right: 0; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-grid > p:last-child { grid-column: auto; }
  .section-heading { align-items: start; flex-direction: column; gap: 1.2rem; }
  .amenities-wrap, .location-grid, .about-grid, .contact-shell { grid-template-columns: 1fr; }
  .amenities-wrap { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .gallery-tall { grid-row: span 1; }
  .coming-grid { grid-template-columns: 1fr; }
  .coming-card { min-height: 340px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid div:nth-child(2) { border-right: 0; }
  .process-grid div { border-bottom: 1px solid rgba(78,55,32,.16); }
  .footer-top { grid-template-columns: 1fr; gap: 1.3rem; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-shell { width: calc(100% - 20px); }
  .brand img { width: 165px; }
  .hero h1 { font-size: 3.35rem; }
  .hero-content > p { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-facts { margin-top: 2.4rem; }
  .hero-facts div { padding-right: .7rem; margin-right: .7rem; }
  h2 { font-size: 2.65rem; }
  .property-photo-wrap { min-height: 360px; }
  .property-card { padding: 1.5rem; }
  .feature-grid, .amenities-list { grid-template-columns: 1fr; }
  .property-actions { align-items: stretch; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-wide { grid-column: auto; }
  .distance-list div { grid-template-columns: 90px 1fr; }
  .about-image > img { min-height: 450px; }
  .signature-card { left: 18px; right: 18px; bottom: 18px; }
  .value-row div { grid-template-columns: 32px 80px 1fr; }
  .notify-strip { align-items: stretch; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid div { border-right: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; }
  .modal-heading { padding: 2rem 1.5rem 0; }
  .modal-heading h2 { font-size: 2.2rem; }
}

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