:root {
  --char: #141412;
  --char-2: #1c1b18;
  --char-3: #262420;
  --stone: #eeece8;
  --white: #ffffff;
  --text: #1a1916;
  --text-2: #4b4740;
  --mute: #7a746a;
  --on-dark: #f2eee7;
  --on-dark-2: #c9c2b5;
  --on-dark-3: #948c7e;
  --line: #e2ded7;
  --line-dark: #36332d;
  --brass: #c2a26b;
  --brass-hi: #d4b784;
  --brass-ink: #8a6b36;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; background: var(--white); color: var(--text); font: 17px/1.65 var(--sans); -webkit-font-smoothing: antialiased; font-variant-numeric: lining-nums; }
h1, h2, h3, .price, .n, .hero-stats b { font-variant-numeric: lining-nums; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.02; }
h1 { font-size: clamp(52px, 7vw, 96px); }
h2 { font-size: clamp(38px, 4.6vw, 62px); margin-bottom: 22px; }
h3 { font-size: 26px; line-height: 1.15; font-weight: 600; }
h1 em, h2 em { color: var(--brass); font-style: italic; }
h1, h2 { text-wrap: balance; }
p { margin: 0 0 16px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.kicker-ink { color: var(--brass-ink); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 30px; font-weight: 800; font-size: 15px; letter-spacing: .03em; text-decoration: none; border: 0; transition: background .15s, color .15s; }
.btn-brass { background: var(--brass); color: var(--char); }
.btn-brass:hover { background: var(--brass-hi); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 13px; white-space: nowrap; }
.btn .short { display: none; }
.brand { white-space: nowrap; }
.text-link { color: var(--on-dark); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 3px; }
.text-link:hover { color: var(--brass-hi); }

/* header: dark band behind the menu so it reads on any photo; solid once scrolled */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 30; color: var(--on-dark); background: linear-gradient(180deg, rgba(20,20,18,.78) 0%, rgba(20,20,18,.45) 60%, rgba(20,20,18,0) 100%); transition: background .25s, box-shadow .25s; }
.nav.solid { background: var(--char); box-shadow: 0 1px 0 var(--line-dark); }
.nav-in { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; gap: 36px; height: 80px; padding: 0 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 26px; letter-spacing: .01em; }
.brand svg { width: 22px; height: 22px; color: var(--brass); }
.links { display: flex; gap: 30px; margin-left: auto; }
.links a { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: var(--on-dark-2); }
.links a:hover { color: var(--on-dark); }

/* small-screen menu */
.menu-btn { display: none; width: 44px; height: 42px; padding: 0; background: transparent; border: 1px solid rgba(242,238,231,.28); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--on-dark); transition: transform .25s ease; }
.nav.open .menu-btn span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.open .menu-btn span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* sections ease in as they scroll into view (only when scripts run; never with reduced motion) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease var(--d, 0ms), transform .8s cubic-bezier(.22, .8, .24, 1) var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* hero */
.hero { position: relative; height: 100vh; min-height: 720px; max-height: 1000px; background: var(--char); color: var(--on-dark); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 60%; opacity: 0; transition: opacity .45s ease; }
.hero-img.is-on { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(20,20,18,.93) 0%, rgba(20,20,18,.78) 30%, rgba(20,20,18,.25) 58%, rgba(20,20,18,0) 75%),
  linear-gradient(0deg, rgba(20,20,18,.85) 0%, rgba(20,20,18,0) 26%); }
.hero-copy { position: absolute; left: max(40px, calc((100vw - 1440px) / 2 + 40px)); top: 50%; transform: translateY(-58%); width: min(600px, 90vw); }
.hero-copy .lede { font-size: 19px; color: var(--on-dark-2); margin: 26px 0 36px; max-width: 520px; }
.hero-copy h1 { margin: 0; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.hero-toggle { position: absolute; right: 40px; top: 108px; display: flex; gap: 4px; padding: 5px; background: rgba(20,20,18,.62); backdrop-filter: blur(8px); border: 1px solid rgba(242,238,231,.18); }
.hero-toggle button { font: 700 12px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-2); background: transparent; border: 0; padding: 10px 18px; cursor: pointer; }
.hero-toggle button.on { background: var(--brass); color: var(--char); }
.hero-stats { position: absolute; left: 40px; right: 40px; bottom: 36px; max-width: 1360px; margin: 0 auto; list-style: none; padding: 22px 0 0; display: grid; grid-template-columns: repeat(4, max-content); gap: 64px; border-top: 1px solid rgba(242,238,231,.22); }
.hero-stats b { display: block; font: 500 30px/1 var(--sans); letter-spacing: -.02em; color: var(--on-dark); margin-bottom: 8px; }
.hero-stats span { font-size: 14px; color: var(--on-dark-2); }

/* section surfaces */
.light { background: var(--white); padding: 120px 0; }
.dark { background: var(--char); color: var(--on-dark); padding: 120px 0; }
.stone { background: var(--char-2); color: var(--on-dark); padding: 120px 0; }
.dark p, .stone p { color: var(--on-dark-2); }
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.head h2 { margin: 0; }
.note { margin-top: 14px; font-size: 14px; color: var(--mute); }
.fine { font-size: 14px; color: var(--on-dark-3) !important; }
.fine a { color: var(--on-dark); }

/* before / after: drag or tap anywhere on the photo; vertical swipes still scroll the page */
@property --pos { syntax: "<percentage>"; inherits: true; initial-value: 50%; }
.compare { position: relative; margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--stone); user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; -webkit-tap-highlight-color: transparent; --pos: 50%; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; }
.compare-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare.glide { transition: --pos .5s cubic-bezier(.22, .8, .24, 1); }
.compare.hint { animation: sway 1.7s cubic-bezier(.45, 0, .25, 1) .15s; }
@keyframes sway { 0% { --pos: 50%; } 32% { --pos: 36%; } 68% { --pos: 63%; } 100% { --pos: 50%; } }
.handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--brass); pointer-events: none; box-shadow: 0 0 12px rgba(20,20,18,.25); }
.handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--char) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2a26b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 22px no-repeat; border: 2px solid var(--brass); box-shadow: 0 6px 18px rgba(20,20,18,.35); transition: transform .2s ease; }
.compare:hover .handle::after, .compare.dragging .handle::after { transform: translate(-50%, -50%) scale(1.08); }
.compare input { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.compare:has(input:focus-visible) { outline: 2px solid var(--brass); outline-offset: 4px; }
.ghost { position: absolute; inset: 0; z-index: 1; pointer-events: none; transition: opacity .45s ease; }
.ghost.out { opacity: 0; }
.compare .tag, .compare .handle { z-index: 2; }
.compare::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 30%; z-index: 3; background: var(--brass); opacity: 0; transform: translateX(-100%); }
.compare.busy::after { opacity: 1; animation: loading 1s ease-in-out infinite; }
@keyframes loading { to { transform: translateX(340%); } }
.tag { position: absolute; top: 18px; padding: 7px 13px; background: rgba(20,20,18,.8); color: var(--on-dark); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; pointer-events: none; }
.tag-l { left: 18px; }
.tag-r { right: 18px; background: var(--brass); color: var(--char); }

.tabs, .seg { display: inline-flex; gap: 4px; padding: 5px; border: 1px solid var(--line); }
.tabs button, .seg button { font: 700 12px var(--sans); letter-spacing: .14em; text-transform: uppercase; border: 0; background: transparent; color: var(--mute); padding: 11px 18px; cursor: pointer; }
.tabs button[aria-selected="true"] { background: var(--char); color: var(--on-dark); }
.seg { border-color: var(--line-dark); margin-bottom: 16px; }
.seg button { color: var(--on-dark-3); }
.seg button[aria-selected="true"] { background: var(--brass); color: var(--char); }

/* style switcher */
.paper { background: var(--stone); padding: 120px 0; }
.style-rooms { margin-bottom: 18px; background: var(--white); }
.style-picks { list-style: none; margin: 0; padding: 4px 3px 8px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.style-picks li button { font-size: 14px; }

/* gallery: caption bar with arrows under the photo, then one row of thumbnails you can swipe or drag */
.head-note { margin: 0; color: var(--mute); font-size: 15px; }
.gallery-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0 14px; }
.gallery-title { margin: 0; display: flex; align-items: baseline; gap: 14px; min-width: 0; }
.gallery-title span:first-child { font: 600 28px/1.1 var(--serif); color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gallery-title .count { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--mute); font-variant-numeric: tabular-nums; white-space: nowrap; }
.arrows { display: flex; gap: 8px; flex: none; }
.arrow { width: 46px; height: 46px; display: grid; place-items: center; padding: 0; background: transparent; border: 1px solid var(--line); color: var(--text); cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.arrow:hover { background: var(--char); border-color: var(--char); color: var(--on-dark); }
.arrow:active { transform: scale(.96); }
.paper .arrow { border-color: #d6d1c8; }
.strip { --fl: 0px; --fr: 0px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%); }
/* desktop: the photo on the left, all 20 rooms in a column beside it that scrolls on its own */
.gallery { display: grid; grid-template-columns: minmax(0, 1fr) 292px; grid-template-areas: "photo rail" "bar rail"; column-gap: 24px; }
.gallery > .compare { grid-area: photo; }
.gallery > .gallery-bar { grid-area: bar; }
.rooms { position: relative; list-style: none; margin: 0; padding: 3px 10px 3px 3px; grid-area: rail; height: 0; min-height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; align-content: start; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; scroll-snap-type: y proximity; scrollbar-width: thin; scrollbar-color: #d6d1c8 transparent; --ft: 0px; --fb: 0px; -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 var(--ft), #000 calc(100% - var(--fb)), transparent 100%); mask-image: linear-gradient(180deg, transparent 0, #000 var(--ft), #000 calc(100% - var(--fb)), transparent 100%); }
.rooms li { scroll-snap-align: center; }
.style-picks::-webkit-scrollbar { display: none; }
/* desktop styles: the five choices listed beside the photo, thumbnail and name side by side */
.gallery-styles .style-picks { grid-area: rail; height: 0; min-height: 100%; display: flex; flex-direction: column; gap: 10px; padding: 3px; overflow-y: auto; }
.gallery-styles .style-picks button { flex-direction: row; align-items: center; gap: 16px; padding: 0; border-bottom: 0; font-size: 16px; }
.gallery-styles .style-picks button img { width: 132px; flex: none; }
.gallery-styles .style-picks button[aria-current="true"] span { color: var(--text); box-shadow: inset 0 -2px 0 var(--brass); padding-bottom: 3px; }
.strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.strip.dragging button { pointer-events: none; }
.rooms button, .style-picks button { width: 100%; display: flex; flex-direction: column; gap: 8px; padding: 0 0 6px; background: transparent; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font: 600 13px/1.2 var(--sans); color: var(--mute); text-align: left; transition: color .2s, border-color .2s; }
.rooms button img, .style-picks button img { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; filter: saturate(.7) brightness(.96); transition: filter .25s, transform .35s cubic-bezier(.22, .8, .24, 1); -webkit-user-drag: none; }
.rooms button:hover, .style-picks button:hover { color: var(--text); }
.rooms button:hover img, .style-picks button:hover img { filter: none; transform: translateY(-2px); }
.rooms button[aria-current="true"], .style-picks button[aria-current="true"] { color: var(--text); border-bottom-color: var(--brass); }
.rooms button[aria-current="true"] img, .style-picks button[aria-current="true"] img { filter: none; outline: 2px solid var(--brass); outline-offset: 2px; }
.rooms button:focus-visible, .style-picks button:focus-visible, .arrow:focus-visible, .menu-btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* proof */
.split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.ticks { list-style: none; padding: 0; margin: 30px 0 0; }
.ticks li { position: relative; padding: 14px 0 14px 34px; border-top: 1px solid var(--line-dark); font-weight: 600; color: var(--on-dark); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 14px; height: 8px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg); }
.frame { margin: 0; }
.frame img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.frame figcaption { margin-top: 12px; font-size: 14px; color: var(--on-dark-3); min-height: 44px; }

/* explainer video */
.explainer { margin: 36px 0 20px; }
.explainer video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--char); }
.explainer figcaption { margin-top: 12px; font-size: 14px; color: var(--mute); }

/* steps */
.steps { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.steps li { border-top: 1px solid var(--line); padding-top: 26px; }
.steps .n { display: block; font: 300 56px/1 var(--sans); letter-spacing: -.04em; color: var(--brass); margin-bottom: 18px; }
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--text-2); margin: 0; }

/* ARMLS */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cards li { border: 1px solid var(--line-dark); padding: 26px; display: flex; flex-direction: column; gap: 8px; background: var(--char-3); }
.cards b { font: 600 23px var(--serif); color: var(--on-dark); }
.cards span { font-size: 15px; color: var(--on-dark-2); }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 18px; }
.plan { border: 1px solid var(--line); padding: 38px 34px; display: flex; flex-direction: column; }
.plan p { color: var(--text-2); margin: 0; }
.plan .price { font: 300 64px/1 var(--sans); letter-spacing: -.04em; color: var(--text); margin: 16px 0 18px; }
.plan-main { background: var(--char); border-color: var(--char); color: var(--on-dark); }
.plan-main p { color: var(--on-dark-2); }
.plan-main .price { color: var(--brass); }
.plan-main .btn { margin-top: 28px; align-self: flex-start; }
.plan-notes { margin-top: 24px; color: var(--mute); font-size: 15px; }

.area { background: var(--stone); padding: 36px 0; }
.area p { margin: 0; font-size: 18px; color: var(--text-2); }
.area b { color: var(--text); }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; margin-top: 10px; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; list-style: none; position: relative; padding-right: 36px; font: 600 23px/1.25 var(--serif); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: -4px; font: 400 30px var(--sans); color: var(--brass-ink); }
details[open] summary::after { content: "\2212"; }
details p { color: var(--text-2); margin: 12px 0 0; }

/* final call to action */
.final { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: var(--char); color: var(--on-dark); text-align: center; }
.final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.final-shade { position: absolute; inset: 0; background: rgba(20,20,18,.72); }
.final-copy { position: relative; padding: 80px 32px; max-width: 760px; }
.final-copy p { color: var(--on-dark-2); font-size: 19px; margin-bottom: 34px; }

/* footer */
.foot { background: var(--char); color: var(--on-dark-3); padding: 40px 0; font-size: 14px; border-top: 1px solid var(--line-dark); }
.foot-in { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.foot .brand { color: var(--on-dark); font-size: 22px; }
.foot p { margin: 0; }
.foot-links { margin-left: auto !important; display: flex; gap: 24px; }
.foot-links a { text-decoration: none; color: var(--on-dark-2); }
.foot-links a:hover { color: var(--brass); }

/* legal pages */
.doc-page { background: var(--white); padding: 150px 0 110px; }
.doc { max-width: 780px; }
.doc h1 { font-size: 56px; margin-bottom: 12px; }
.doc h2 { font-size: 30px; margin: 40px 0 10px; }
.doc p, .doc li { color: var(--text-2); }

@media (max-width: 1080px) {
  /* tablets and phones: one row of rooms under the photo, swiped (or dragged with a mouse) sideways */
  .gallery { display: block; }
  .rooms { height: auto; min-height: 0; display: flex; gap: 14px; padding: 4px 3px 8px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; scroll-snap-type: x proximity; scrollbar-width: none; cursor: grab; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%); }
  .rooms::-webkit-scrollbar { display: none; }
  .rooms li { flex: none; width: 172px; }
  .gallery-styles .style-picks { height: auto; min-height: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 4px 3px 8px; overflow: visible; }
  .gallery-styles .style-picks button { flex-direction: column; align-items: stretch; gap: 8px; padding: 0 0 6px; border-bottom: 2px solid transparent; font-size: 14px; }
  .gallery-styles .style-picks button[aria-current="true"] { border-bottom-color: var(--brass); }
  .gallery-styles .style-picks button[aria-current="true"] span { box-shadow: none; padding-bottom: 0; }
  .gallery-styles .style-picks button img { width: 100%; }
  .links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; margin: 0; padding: 4px 24px 18px; background: var(--char); box-shadow: 0 16px 30px rgba(20,20,18,.35); }
  .links a { padding: 15px 0; border-top: 1px solid var(--line-dark); font-size: 13px; color: var(--on-dark); }
  .nav.open { background: var(--char); }
  .nav.open .links { display: flex; }
  .menu-btn { display: inline-flex; }
  .nav-in { gap: 12px; padding: 0 24px; }
  .nav-in .btn { margin-left: auto; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .steps, .plans { grid-template-columns: 1fr; gap: 32px; }
  .faq { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, max-content); gap: 18px 48px; }
}
@media (max-width: 700px) {
  .rooms { gap: 10px; cursor: auto; }
  .rooms li { width: 124px; }
  .gallery-bar { padding: 12px 0 10px; }
  .gallery-title { gap: 10px; }
  .gallery-title span:first-child { font-size: 23px; }
  .gallery-title .count { font-size: 12px; letter-spacing: .1em; }
  .arrow { width: 42px; height: 42px; }
  .handle::after { width: 44px; height: 44px; background-size: 18px; }
  .tag { top: 12px; padding: 6px 10px; font-size: 10px; }
  .tag-l { left: 12px; }
  .tag-r { right: 12px; }
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-in { height: 66px; padding: 0 16px; }
  .brand { font-size: 22px; }
  .light, .dark, .stone, .paper { padding: 84px 0; }
  .style-rooms { display: flex; width: 100%; }
  .style-rooms button { flex: 1; padding: 11px 6px; letter-spacing: .06em; font-size: 11px; }
  .gallery-styles .style-picks { display: flex; flex-direction: row; overflow-x: auto; overscroll-behavior-x: contain; gap: 10px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .gallery-styles .style-picks li { flex: none; width: 140px; scroll-snap-align: center; }
  .nav-in .btn { min-height: 42px; }
  .menu-btn { width: 42px; }
  .brand { font-size: 21px; gap: 10px; }
  .brand svg { width: 18px; height: 18px; }
  .btn .long { display: none; }
  .btn .short { display: inline; }
  .hero { height: auto; min-height: 0; max-height: none; padding: 66px 0 32px; display: flex; flex-direction: column; }
  .hero-img { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 16 / 10; opacity: 1; order: -2; transition: none; }
  .hero-img:not(.is-on) { display: none; }
  .hero-shade { display: none; }
  .hero-copy { position: relative; left: auto; top: auto; transform: none; width: 100%; padding: 30px 20px 0; }
  .hero-copy .lede { font-size: 17px; }
  .actions .btn { flex: 1 1 100%; }
  .hero-toggle { position: relative; right: auto; top: auto; order: -1; align-self: stretch; justify-content: center; margin: 0; border: 0; border-bottom: 1px solid rgba(242,238,231,.14); background: var(--char-2); backdrop-filter: none; }
  .hero-toggle button { flex: 1; }
  .hero-stats { position: relative; left: auto; right: auto; bottom: auto; margin: 32px 20px 0; }
  .cards { grid-template-columns: 1fr; }
  .final { min-height: 520px; }
  .foot-links { margin-left: 0 !important; }
}
