:root {
  --ink: #171c20;
  --ink-soft: #2a3034;
  --paper: #fbfaf7;
  --ivory: #f1ece3;
  --stone: #77736d;
  --line: #d8d0c4;
  --gold: #b38a52;
  --white: #fff;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --pad: clamp(1.4rem, 5vw, 5.5rem);
  --section: clamp(5.5rem, 10vw, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--white); }

.skip-link { position: fixed; z-index: 1000; top: 0; left: 1rem; padding: .7rem 1rem; background: var(--white); transform: translateY(-120%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 5.25rem; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; color: var(--white); transition: background .35s, color .35s, box-shadow .35s; }
.site-header.scrolled { background: rgba(251,250,247,.96); color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,.08); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: .8rem; font-weight: 500; letter-spacing: .03em; }
.brand-mark { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; }
.brand-name { font-size: .92rem; text-transform: uppercase; letter-spacing: .12em; }
.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.nav a:not(.nav-cta) { position: relative; padding: .5rem 0; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .25rem; height: 1px; background: var(--gold); transition: right .25s; }
.nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid currentColor; padding: .75rem 1rem; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav-toggle { display: none; border: 0; background: none; width: 2.6rem; height: 2.6rem; padding: .6rem; }
.nav-toggle span { display: block; height: 1px; margin: .45rem 0; background: currentColor; transition: transform .2s; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden; color: var(--white); }
.hero-image, .hero-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-image { animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(7,10,12,.7) 0%, rgba(7,10,12,.18) 56%, rgba(7,10,12,.1)), linear-gradient(0deg, rgba(7,10,12,.48), transparent 44%); }
.hero-content { position: relative; z-index: 2; padding: 0 var(--pad) clamp(8rem, 15vh, 11rem); }
.hero h1 { margin: .65rem 0 .5rem; max-width: 900px; font: 400 clamp(4rem, 9vw, 8.4rem)/.87 var(--serif); letter-spacing: -.035em; }
.hero-subtitle { margin: 1.25rem 0 2.6rem; font-size: clamp(1rem, 1.6vw, 1.35rem); letter-spacing: .04em; }
.hero-price { display: inline-block; margin: -.9rem 0 2.2rem; padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.55); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.hero-price[hidden] { display: none; }
.hero-facts { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.3); background: rgba(13,17,19,.32); backdrop-filter: blur(12px); }
.hero-facts span { padding: 1.25rem var(--pad); border-right: 1px solid rgba(255,255,255,.22); font-size: .72rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow, .section-kicker { margin: 0 0 1.2rem; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.light { color: var(--white); }
.text-link { display: inline-flex; gap: .7rem; align-items: center; padding-bottom: .25rem; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.text-link span { color: var(--gold); }

.section { padding: var(--section) var(--pad); }
.intro { background: var(--paper); }
.section-kicker { padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: clamp(3rem,8vw,9rem); padding-top: clamp(3.5rem,7vw,7rem); }
.display { margin: 0; font: 400 clamp(3.6rem,7vw,7.2rem)/.94 var(--serif); letter-spacing: -.035em; }
.display.small { font-size: clamp(3.2rem,5.4vw,5.7rem); }
.display em { color: var(--gold); font-weight: 400; }
.display.light em { color: #d4b27e; }
.intro-copy { max-width: 39rem; }
.intro-copy p { margin: 0 0 1.4rem; color: var(--stone); }
.intro-copy .lead { color: var(--ink); font: 400 clamp(1.4rem,2.1vw,1.8rem)/1.45 var(--serif); }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 3.25rem; padding: .85rem 1.35rem; border: 1px solid; cursor: pointer; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { margin-top: 1rem; background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-dark:hover { background: var(--gold); border-color: var(--gold); }
.button-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }

.manifesto { display: grid; grid-template-columns: repeat(4,1fr); padding: 0 var(--pad) var(--section); }
.stat { min-height: 12rem; padding: 2.2rem; border: 1px solid var(--line); border-right: 0; display: flex; flex-direction: column; justify-content: space-between; }
.stat:last-child { border-right: 1px solid var(--line); }
.stat strong { color: var(--gold); font: 400 clamp(3.5rem,5vw,5.5rem)/1 var(--serif); }
.stat span { font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.levels { display: grid; grid-template-columns: minmax(320px,.86fr) minmax(360px,1.14fr); padding: 0; background: var(--ivory); }
.levels-image { min-height: 850px; }
.levels-image img { height: 100%; object-fit: cover; }
.levels-content { padding: var(--section) var(--pad); }
.level-list { list-style: none; padding: 2rem 0 0; margin: 3rem 0 0; border-top: 1px solid var(--line); }
.level-list li { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.level-list li > span { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .1em; }
.level-list p { margin: 0; color: var(--stone); }
.level-list strong { display: block; margin-bottom: .15rem; color: var(--ink); font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }

.feature { min-height: 94vh; position: relative; display: grid; grid-template-columns: 1fr 1fr; background: var(--ivory); }
.feature-photo img { height: 100%; object-fit: cover; }
.feature-card { align-self: end; margin: var(--pad); margin-left: max(-7rem,-9vw); padding: clamp(3rem,6vw,6.5rem); background: rgba(251,250,247,.96); position: relative; z-index: 2; }
.feature-card h2 { margin: 0 0 1.6rem; font: 400 clamp(3rem,5vw,5.5rem)/.96 var(--serif); letter-spacing: -.03em; }
.feature-card p:last-child { max-width: 34rem; color: var(--stone); }
.feature-card.dark { background: rgba(21,26,30,.96); color: var(--white); }
.feature-card.dark p:last-child { color: #c9c7c2; }

.editorial-pair { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,6vw,7rem); align-items: start; }
.editorial-pair .offset { margin-top: 10rem; }
figure { margin: 0; }
figcaption { margin-top: 1rem; color: var(--stone); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

.dark-section { background: var(--ink); color: var(--white); }
.terrace-story { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2.5rem,7vw,8rem); align-items: center; }
.terrace-copy > p:last-child { max-width: 34rem; color: #c8c6c1; }
.terrace-photo img { max-height: 760px; object-fit: cover; }
.quiet-note { grid-column: 1/-1; display: flex; justify-content: flex-end; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.17); color: #d4b27e; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.parking { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem,7vw,8rem); align-items: center; }
.parking-photo img { max-height: 760px; object-fit: cover; }
.parking-copy p:last-child { max-width: 32rem; color: var(--stone); }

.bedrooms .section-heading, .gallery .section-heading, .details .section-heading { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; margin-bottom: clamp(3rem,7vw,7rem); }
.bedroom-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(1.5rem,3vw,3rem); }
.bedroom-grid figure img { aspect-ratio: 1.08; object-fit: cover; }
.bedroom-grid .wide { grid-column: 1/-1; margin-top: clamp(2rem,6vw,6rem); }
.bedroom-grid .wide img { aspect-ratio: 2/1; object-fit: cover; object-position: center 42%; }

.details-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,2.5rem); }
.details-grid img { aspect-ratio: .78; height: 100%; object-fit: cover; }
.details-grid figcaption { color: #b7b5af; }
.details-note { margin: 4rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.17); color: #d4b27e; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.details-meta { margin: 1rem 0 0; color: #c8c6c1; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.details-meta span { color: var(--gold); padding: 0 .5rem; }

.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-auto-rows: 300px; gap: 1rem; }
.gallery-item { appearance: none; border: 0; padding: 0; background: #ddd; cursor: zoom-in; overflow: hidden; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: 1/-1; }
.photo-carousel { position: relative; }
.carousel-stage { position: relative; overflow: hidden; background: #11161a; box-shadow: 0 28px 75px rgba(26,28,30,.14); }
.carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { position: relative; flex: 0 0 100%; width: 100%; padding: 0; border: 0; background: #11161a; scroll-snap-align: start; cursor: zoom-in; overflow: hidden; }
.carousel-slide img { display: block; width: 100%; height: min(70vh,760px); min-height: 470px; object-fit: contain; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.carousel-slide:hover img { transform: scale(1.012); }
.carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 5rem 2rem 1.6rem; color: #fff; text-align: left; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(transparent,rgba(0,0,0,.68)); pointer-events: none; }
.carousel-arrow { position: absolute; z-index: 2; top: 50%; width: 3.4rem; height: 3.4rem; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(15,19,22,.62); color: #fff; font-size: 1.25rem; cursor: pointer; backdrop-filter: blur(8px); transform: translateY(-50%); transition: background .25s,border-color .25s,transform .25s; }
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: 1.4rem; }
.carousel-next { right: 1.4rem; }
.carousel-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; padding: 1.4rem 0 1rem; color: var(--stone); }
.carousel-meta p { margin: 0; }
.carousel-meta p:first-child { color: var(--ink); font-family: var(--serif); font-size: 1.8rem; }
.carousel-meta p:last-child { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
.carousel-divider { margin: 0 .55rem; color: var(--gold); }
.carousel-thumbs { display: flex; gap: .65rem; overflow-x: auto; padding: .2rem 0 1rem; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.carousel-thumb { flex: 0 0 112px; height: 72px; padding: 0; border: 2px solid transparent; background: #ddd; cursor: pointer; opacity: .58; transition: opacity .25s,border-color .25s; }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel-thumb:hover, .carousel-thumb.active { opacity: 1; border-color: var(--gold); }
.video-tour { padding-top: clamp(5rem,10vw,10rem); padding-bottom: clamp(5rem,10vw,10rem); }
.video-tour-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem,6vw,7rem); align-items: end; margin-bottom: clamp(2.5rem,5vw,5rem); }
.video-tour-heading > p { max-width: 34rem; color: rgba(255,255,255,.72); font-size: clamp(1.05rem,1.35vw,1.3rem); line-height: 1.65; }
.video-frame { position: relative; max-width: 1180px; margin-inline: auto; padding: clamp(.35rem,.7vw,.65rem); background: #c09a5d; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.video-frame video { display: block; width: 100%; max-height: 78vh; background: #090b0d; object-fit: contain; }

.location { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem,7vw,8rem); align-items: center; background: var(--ivory); }
.location-copy > p { color: var(--stone); }
.transport-list { margin: 2.5rem 0 0; }
.transport-list div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.transport-list dt { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.transport-list dd { margin: 0; color: var(--stone); }
.map-wrap { background: var(--paper); padding: .8rem; box-shadow: 0 25px 70px rgba(20,20,20,.1); }
.map-wrap iframe { width: 100%; min-height: 620px; border: 0; filter: grayscale(1) sepia(.15) contrast(.9); }
.map-wrap > a { display: block; padding: .85rem .5rem .2rem; color: var(--stone); font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(4rem,9vw,10rem); align-items: start; }
.contact-intro > p:not(.eyebrow) { max-width: 42rem; color: #c8c6c1; }
.contact-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.5rem; }
.contact-links a { color: #d4b27e; border-bottom: 1px solid currentColor; }
.visit-form { display: grid; gap: 1.15rem; padding: clamp(2rem,4vw,4rem); border: 1px solid rgba(255,255,255,.18); }
.visit-form label { display: grid; gap: .45rem; color: #aaa9a5; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.visit-form input, .visit-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; padding: .7rem 0; background: transparent; color: var(--white); outline: 0; resize: vertical; text-transform: none; letter-spacing: normal; }
.visit-form input:focus, .visit-form textarea:focus { border-color: var(--gold); }
.form-status { min-height: 1.5rem; margin: 0; color: #d4b27e; font-size: .8rem; }

.footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem var(--pad); background: #0f1316; color: #aaa9a5; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.footer a { color: #d4b27e; }

.lightbox { width: min(94vw, 1500px); max-width: none; height: min(92vh, 1000px); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(8,10,11,.94); backdrop-filter: blur(12px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox button { position: fixed; top: max(1rem, env(safe-area-inset-top)); right: max(1rem, env(safe-area-inset-right)); width: 3rem; height: 3rem; padding: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.25); color: var(--white); font-family: Arial, sans-serif; font-size: 2rem; font-weight: 300; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes hero-in { from { transform: scale(1.045); opacity: .7; } to { transform: scale(1); opacity: 1; } }

@media (max-width: 950px) {
  .site-header { height: 4.5rem; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 4.5rem 0 0; padding: 4rem var(--pad); display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem; background: var(--ink); color: var(--white); transform: translateX(100%); transition: transform .3s; }
  .nav.open { transform: none; }
  .nav a { font-size: 1rem; }
  .nav-cta { margin-top: 1rem; }
  .hero-facts { grid-template-columns: repeat(2,1fr); }
  .hero-facts span { padding: .9rem var(--pad); }
  .intro-grid, .levels, .feature, .terrace-story, .parking, .location, .contact { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 1px solid var(--line); }
  .levels-image { min-height: 620px; }
  .feature { min-height: auto; }
  .feature-photo img { max-height: 760px; }
  .feature-card { margin: -5rem var(--pad) var(--section); }
  .terrace-copy { order: 2; }
  .terrace-photo { order: 1; }
  .quiet-note { order: 3; }
  .parking-copy { order: 1; }
  .parking-photo { order: 2; }
  .location-copy { max-width: 800px; }
  .map-wrap iframe { min-height: 520px; }
}

@media (max-width: 650px) {
  /* Mobile comfort pass */
  :root { --pad: 1.35rem; --section: 5rem; }
  body { font-size: 1rem; -webkit-text-size-adjust: 100%; }
  .site-header { padding-left: max(var(--pad), env(safe-area-inset-left)); padding-right: max(var(--pad), env(safe-area-inset-right)); }
  .brand, .nav-toggle { min-width: 48px; min-height: 48px; }
  .brand { justify-content: flex-start; }
  .brand-mark { width: 2.5rem; height: 2.5rem; }
  .nav-toggle { width: 3rem; height: 3rem; padding: .7rem; touch-action: manipulation; }
  .nav { height: calc(100dvh - 4.5rem); padding-top: 2.5rem; padding-bottom: max(2.5rem, env(safe-area-inset-bottom)); overflow-y: auto; }
  .nav a { display: flex; align-items: center; min-height: 48px; min-width: 100%; }
  .nav-cta { justify-content: center; }
  .hero { min-height: max(720px, 100svh); }
  .hero-content { padding-bottom: 10.5rem; }
  .hero-subtitle { max-width: 18rem; line-height: 1.45; }
  .text-link, .map-wrap > a, .contact-links a, .footer a { display: inline-flex; align-items: center; min-height: 44px; }
  .section-heading { margin-bottom: 3rem; }
  .carousel-track { touch-action: pan-x; }
  .carousel-slide { touch-action: pan-x; }
  .carousel-arrow { width: 3rem; height: 3rem; touch-action: manipulation; }
  .carousel-meta { gap: 1rem; }
  .carousel-meta p:last-child { font-size: .64rem; }
  .carousel-thumbs { padding-bottom: 1.1rem; scroll-snap-type: x proximity; }
  .carousel-thumb { min-width: 88px; min-height: 58px; scroll-snap-align: center; touch-action: manipulation; }
  .video-frame { width: 100%; padding: .3rem; }
  .video-frame video { width: 100%; max-height: 72svh; }
  .map-wrap { padding: .55rem; }
  .map-wrap iframe { min-height: 390px; }
  .contact { gap: 3rem; }
  .contact-links { gap: .4rem 1.5rem; }
  .visit-form { padding: 1.5rem; }
  .visit-form input { min-height: 48px; }
  .visit-form textarea { min-height: 130px; }
  .button { min-height: 48px; }
  .footer { gap: .65rem; padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
  .brand-name { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 11rem; }
  .hero h1 { font-size: clamp(3.6rem,18vw,5.4rem); }
  .hero-facts span { font-size: .6rem; }
  .display { font-size: clamp(3.2rem,15vw,5rem); }
  .display.small { font-size: clamp(3rem,14vw,4.5rem); }
  .intro-grid { gap: 2.8rem; }
  .manifesto { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { border-right: 1px solid var(--line); }
  .editorial-pair { grid-template-columns: 1fr; }
  .editorial-pair .offset { margin-top: 0; }
  .feature-card { margin-top: -2rem; }
  .bedrooms .section-heading, .gallery .section-heading, .details .section-heading { grid-template-columns: 1fr; }
  .bedroom-grid, .details-grid { grid-template-columns: 1fr; }
  .bedroom-grid .wide { grid-column: auto; margin-top: 0; }
  .bedroom-grid .wide img { aspect-ratio: 1/1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: auto; }
  .carousel-slide img { height: 58vh; min-height: 380px; }
  .carousel-arrow { width: 2.8rem; height: 2.8rem; }
  .carousel-prev { left: .7rem; }
  .carousel-next { right: .7rem; }
  .carousel-caption { padding: 4rem 1rem 1rem; font-size: .62rem; }
  .carousel-meta { align-items: flex-start; }
  .carousel-meta p:last-child { max-width: 13rem; text-align: right; line-height: 1.45; }
  .carousel-thumb { flex-basis: 82px; height: 56px; }
  .video-tour-heading { grid-template-columns: 1fr; align-items: start; }
  .transport-list div { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 430px; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
