@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Logo palette: royal blue + silver + black */
  --blue: #184092;
  --blue-deep: #102a66;
  --blue-soft: #2a5bb8;
  --silver: #a6a9aa;
  --silver-soft: #c5c8c9;
  --ink: #0a0a0a;
  --soft: #5c6066;
  --bg: #f4f5f7;
  --bg-warm: #e8eaee;
  --line: rgba(24, 64, 146, 0.14);
  --accent: var(--blue);
  --white: #fff;
  --nav: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-xl { width: min(1440px, calc(100% - 1.5rem)); margin-inline: auto; }

/* ========== NAV: equal left | logo | right ========== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--nav);
  display: flex; align-items: center;
  transition: background .4s var(--ease), color .3s, border-color .3s;
  border-bottom: 1px solid transparent;
  color: var(--white);
}
.nav.on, .nav.solid {
  background: rgba(244, 245, 247, 0.96);
  backdrop-filter: blur(16px);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.nav-row {
  width: min(1440px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.75rem;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-left a,
.nav-right a,
.nav-drop > summary {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  transition: opacity .2s, color .2s;
  list-style: none;
  cursor: pointer;
}
.nav-left a:hover,
.nav-right a:hover,
.nav-drop > summary:hover,
.nav-drop[open] > summary { opacity: 1; color: var(--silver-soft); }
.nav.on .nav-left a:hover,
.nav.solid .nav-left a:hover,
.nav.on .nav-right a:hover,
.nav.solid .nav-right a:hover,
.nav.on .nav-drop > summary:hover,
.nav.solid .nav-drop > summary:hover { color: var(--blue); }

.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop { position: relative; }
.nav-drop > summary::after {
  content: '▾';
  font-size: .6rem;
  margin-left: .3rem;
  opacity: .7;
}
.nav-mega {
  position: absolute;
  top: calc(100% + .95rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 540px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 1.15rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: .2s var(--ease);
  box-shadow: 0 18px 44px rgba(10, 10, 10, .1);
  z-index: 60;
}
.nav-drop[open] .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega a {
  display: block;
  padding: .4rem 0;
  font-size: .9rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  opacity: .85;
}
.nav-mega a:hover { opacity: 1; color: var(--blue); }
.nav-mega .mega-label {
  grid-column: 1 / -1;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  padding: .35rem 0 .15rem;
  margin-top: .25rem;
}
.nav-mega .mega-label:first-child { margin-top: 0; }
.nav-mega .mega-all {
  grid-column: 1 / -1;
  margin-top: .5rem;
  padding-top: .65rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-inline: 1.75rem;
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
  transition: filter .35s var(--ease);
}
/* Top of page / over hero: white logo */
.nav:not(.on):not(.solid) .brand img {
  filter: brightness(0) invert(1);
}
/* Scrolled or inner pages: natural logo colors */
.nav.on .brand img,
.nav.solid .brand img {
  filter: none;
}

.burger {
  display: none;
  width: 2.35rem;
  height: 2.35rem;
  position: relative;
  justify-self: end;
  margin-left: auto;
}
.burger i, .burger i::before, .burger i::after {
  position: absolute; left: .45rem; width: 1.4rem; height: 1.5px; background: currentColor;
}
.burger i { top: 50%; }
.burger i::before { content: ''; top: -7px; }
.burger i::after { content: ''; top: 7px; }

.drawer {
  display: none; position: fixed; inset: var(--nav) 0 0; background: var(--bg); z-index: 40;
  padding: 1.5rem 1.5rem 3rem; opacity: 0; pointer-events: none; transition: opacity .3s;
  overflow-y: auto; color: var(--ink);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a {
  display: block; padding: .85rem 0; font-family: var(--serif); font-size: 1.65rem;
  border-bottom: 1px solid var(--line);
}
.drawer .sub {
  font-family: var(--sans);
  font-size: .92rem;
  padding: .45rem 0 .45rem .75rem;
  border-bottom: none;
  color: var(--soft);
}
.drawer .group-label {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 1.1rem 0 .35rem;
  border-bottom: none;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh; min-height: 100dvh;
  position: relative; color: var(--white);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg video,
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
}
.hero-bg video {
  transform: scale(1.02);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.18) 40%, rgba(10,10,10,.78) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 8vw, 5.5rem);
  text-align: left;
  color: #fff;
  animation: rise .9s var(--ease) .15s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero-copy .eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  color: #fff; margin-bottom: 1rem; opacity: .9;
}
.hero-logo {
  margin-bottom: 1.1rem;
}
.hero-logo img {
  height: clamp(48px, 8vw, 72px);
  width: auto;
  filter: brightness(0) invert(1);
}
.hero-copy h1 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  max-width: 22ch; line-height: 1.25; color: #fff; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.4rem; font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; transition: .25s var(--ease);
}
.btn-fill { background: var(--white); color: var(--ink); }
.btn-fill:hover { background: var(--silver-soft); }
.btn-line { border: 1px solid rgba(255,255,255,.55); color: var(--white); }
.btn-line:hover { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--blue); color: var(--white); }
.btn-dark:hover { background: var(--blue-deep); }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ========== SECTIONS ========== */
.block { padding: clamp(4rem, 9vw, 7rem) 0; }
.num {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--blue); margin-bottom: .6rem;
}
.heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.02; letter-spacing: -.01em;
  max-width: 12ch;
}
.heading i { font-style: italic; color: var(--blue); }
.lede {
  margin-top: 1.1rem; max-width: 36ch; color: var(--soft); font-size: 1.02rem; font-weight: 300;
}
.rise { opacity: 0; transform: translateY(20px); transition: .75s var(--ease); }
.rise.in { opacity: 1; transform: none; }

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-top: 2.5rem;
}
.about-split.rev { direction: rtl; }
.about-split.rev > * { direction: ltr; }
.about-text p { color: var(--soft); font-weight: 300; max-width: 42ch; }
.about-text p + p { margin-top: 1rem; }
.about-text a { color: var(--blue); }
.quote {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-family: var(--serif); font-style: italic; font-size: 1.45rem; line-height: 1.3; max-width: 22ch;
  color: var(--ink);
}
.about-visual {
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4 / 3;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature {
  position: relative; min-height: min(78vh, 720px);
  color: var(--white); display: flex; align-items: flex-end;
  overflow: hidden;
}
.feature img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.feature::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.3) 55%, transparent 80%),
              linear-gradient(180deg, transparent 40%, rgba(16,42,102,.45));
}
.feature-copy {
  position: relative; z-index: 1;
  width: min(1440px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0 0 3.5rem;
  max-width: 28rem;
}
.feature-copy .tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver-soft); margin-bottom: .6rem;
}
.feature-copy h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.05;
  margin-bottom: .75rem;
}
.feature-copy p { font-weight: 300; opacity: .85; margin-bottom: 1.25rem; max-width: 32ch; }

.coll-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 2.25rem;
}
.room-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: .85rem;
  align-items: stretch;
}
.room {
  position: relative; overflow: hidden; background: var(--bg-warm);
  display: block; color: var(--white);
  min-height: 280px;
}
.room--tall { min-height: 560px; }
.room--stack {
  display: grid; gap: .85rem;
  grid-template-rows: 1fr 1fr;
}
.room--stack .room { min-height: 0; height: 100%; }
.room img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.1s var(--ease);
}
.room:hover img { transform: scale(1.04); }
.room::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(10,10,10,.72));
}
.room figcaption {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 1;
}
.room h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 400; }
.room span { display: block; margin-top: .2rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }

.finishes { background: var(--bg-warm); }
.finish-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; margin-top: 2.5rem;
}
.finish {
  background: var(--white);
  overflow: hidden;
  padding: 0 0 .85rem;
}
.finish img {
  width: 100%; aspect-ratio: 3/5; object-fit: cover; object-position: center top;
}
.finish p {
  padding: .85rem 1rem .15rem;
  font-family: var(--serif); font-size: 1.25rem;
}
.finish small {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--soft);
  padding: 0 1rem .35rem;
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.75rem;
}
.why-grid article { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.why-grid h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; margin-bottom: .5rem; }
.why-grid p { color: var(--soft); font-weight: 300; font-size: .95rem; }

.faq-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; margin-top: 1rem;
}
details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
summary {
  list-style: none; cursor: pointer; font-family: var(--serif); font-size: 1.3rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--sans); color: var(--blue); }
details[open] summary::after { content: '-'; }
details p { margin-top: .75rem; color: var(--soft); font-weight: 300; max-width: 50ch; }

.cta {
  position: relative; min-height: 420px; color: var(--white);
  display: flex; align-items: center; overflow: hidden;
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ''; position: absolute; inset: 0; background: rgba(16, 42, 102, .78); }
.cta .wrap { position: relative; z-index: 1; padding: 4rem 0; }
.cta h2 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; max-width: 12ch; line-height: 1.05; }
.cta p { margin: .9rem 0 1.5rem; max-width: 34ch; font-weight: 300; opacity: .85; }

.page-top {
  padding: calc(var(--nav) + 3.5rem) 0 3rem;
  background: linear-gradient(180deg, var(--bg-warm), var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-top h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 400; line-height: 1;
}
.page-top p { margin-top: .9rem; max-width: 42ch; color: var(--soft); font-weight: 300; }
.page-top a { color: var(--blue); }

.story {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; margin-top: 2rem;
}
.story img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg-warm); }
.story.rev { direction: rtl; }
.story.rev > * { direction: ltr; }
.meta { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }

.form-box { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-top: 1.5rem; }
.form-box .full { grid-column: 1 / -1; }
label { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); background: var(--white);
  font: inherit; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
textarea { min-height: 130px; resize: vertical; }
.contact-panel { background: var(--ink); color: var(--white); padding: 2rem; }
.contact-panel h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 1.25rem; }
.contact-panel dt { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); }
.contact-panel dd { margin: .25rem 0 1rem; font-weight: 300; }
.contact-panel a:hover { color: var(--silver-soft); }
.split-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }

.footer {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(24, 64, 146, 0.28), transparent 45%),
    linear-gradient(180deg, #0d0f14 0%, #07080b 100%);
  color: rgba(255,255,255,.72);
  padding: 4.5rem 0 1.75rem;
  border-top: 1px solid rgba(166, 169, 170, 0.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { margin-bottom: 1rem; }
.footer-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-lead {
  max-width: 28ch;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.footer h4 {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}
.footer-top a {
  display: block;
  padding: .28rem 0;
  font-weight: 300;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-top a:hover { color: #fff; }
.footer-contact p {
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  margin-top: .85rem;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1.4rem;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.product-hero {
  background: var(--bg-warm);
  overflow: hidden;
}
.product-hero.portrait {
  max-width: 420px;
}
.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specs {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.specs dt {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
}
.specs dd {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-top: .15rem;
}
.note {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--soft);
  font-weight: 300;
  max-width: 36ch;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}
.gal-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--bg-warm);
  overflow: hidden;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
  text-align: left;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gal-item:hover img,
.gal-item:focus-visible img {
  transform: scale(1.04);
}
.gal-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.product-hero .lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.product-hero .lightbox-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 10, 14, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.16);
}
body.lightbox-open {
  overflow: hidden;
}

.insp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.chip {
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  transition: .2s;
}
.chip:hover, .chip.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.insp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.insp-card {
  display: block;
  background: var(--white);
  overflow: hidden;
  color: var(--ink);
}
.insp-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.insp-card:hover img { transform: scale(1.04); }
.insp-card div { padding: .9rem 1rem .85rem; }
.insp-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.insp-card span {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--soft);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.25rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .nav-left, .nav-right { display: none; }
  .nav-row {
    grid-template-columns: 1fr auto;
  }
  .brand { justify-self: start; }
  .brand img { height: 36px; }
  .burger {
    display: block;
    justify-self: end;
    grid-column: 2;
  }
  .drawer { display: block; }

  .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-copy h1 { max-width: 20ch; }
  .hero-actions { justify-content: center; }
  .hero-logo img { margin-inline: auto; }

  .about-split,
  .faq-grid,
  .story,
  .story.rev,
  .split-2,
  .product-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .room--tall { min-height: 0; aspect-ratio: 4/3; }
  .room--stack {
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
  }
  .room--stack .room { min-height: 0; height: auto; aspect-ratio: 4/3; }

  .finish-row,
  .why-grid,
  .insp-grid,
  .gal-grid,
  .related-grid,
  .form-box,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .product-hero.portrait { max-width: none; }
}

@media (max-width: 560px) {
  .room--stack {
    grid-template-columns: 1fr;
  }
  .room--stack .room { aspect-ratio: 4/3; }
  .finish-row,
  .why-grid,
  .insp-grid,
  .gal-grid,
  .related-grid,
  .form-box,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .form-box .full { grid-column: 1 / -1; }
}
