/* ==========================================================================
   Columbus Custom Cabinets - homepage concept
   Design language: Coastal Restraint (assigned)
   Display: Kaisei Decol   Body: Noto Sans   (assigned)
   Palette: sampled from the Columbus Custom Cabinets logo lockup.
   ========================================================================== */

:root {
  /* --- Colour, all of it from their own logo ------------------------------ */
  --char:        #3d3d3d;   /* logo wordmark charcoal, sampled */
  --slate:       #5d6e91;   /* logo subline + drawer front, sampled */
  --navy:        #3d4961;   /* logo cabinet box, sampled */

  --navy-deep:   #232b3c;   /* their navy, deepened for dark bands */
  --navy-deep-2: #1b2231;
  --slate-deep:  #4a5878;   /* their slate, deepened for small text on paper */
  --slate-light: #a9b7d2;   /* their slate, lightened for text on navy */

  --paper:       #f5f6f8;
  --paper-2:     #ffffff;
  --mist:        #e3e7ee;
  --hair:        #d3d9e3;
  --hair-dark:   rgba(169, 183, 210, 0.24);

  --body:        #4d525c;
  --body-dark:   rgba(245, 246, 248, 0.80);

  /* --- Type --------------------------------------------------------------- */
  --font-display: 'Kaisei Decol', Georgia, 'Times New Roman', serif;
  --font-body:    'Noto Sans', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* --- Layout ------------------------------------------------------------- */
  --wrap:      min(90%, 1100px);
  --wrap-wide: min(92%, 1400px);
  --nav-h:     78px;
  --pad-band:  clamp(4.5rem, 9vw, 9.5rem);
  --pad-band-s: clamp(3rem, 6vw, 6rem);
  --gap:       clamp(1.75rem, 4vw, 4.5rem);

  /* --- Motion ------------------------------------------------------------- */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* --------------------------------------------------------------------------
   Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy-deep);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

p { margin: 0; }

::selection { background: var(--slate); color: #fff; }

:focus-visible {
  outline: 2px solid var(--slate-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap      { width: var(--wrap);      margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  background: var(--navy-deep);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   Shared type pieces
   -------------------------------------------------------------------------- */
.kicker {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-deep);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  line-height: 1.4;
}
.kicker::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--hair);
  max-width: 120px;
}
.on-dark .kicker { color: var(--slate-light); }
.on-dark .kicker::after { background: var(--hair-dark); }

.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.72;
  max-width: 62ch;
}

.on-dark { background: var(--navy-deep); color: var(--body-dark); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }

.band { padding-block: var(--pad-band); }
.band--s { padding-block: var(--pad-band-s); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn__mark {
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
  flex: 0 0 auto;
}
.btn:hover .btn__mark { width: 34px; }

.btn--solid { background: var(--navy-deep); color: var(--paper); }
.btn--solid:hover { background: var(--slate-deep); }

.btn--line { color: var(--navy-deep); border-color: var(--hair); background: transparent; }
.btn--line:hover { border-color: var(--navy-deep); background: var(--paper-2); }

.on-dark .btn--solid { background: var(--paper); color: var(--navy-deep); }
.on-dark .btn--solid:hover { background: var(--slate-light); }
.on-dark .btn--line { color: var(--paper); border-color: var(--hair-dark); }
.on-dark .btn--line:hover { border-color: var(--slate-light); background: rgba(169, 183, 210, 0.10); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.textlink:hover { color: var(--navy-deep); border-color: var(--slate-deep); }
.on-dark .textlink { color: var(--slate-light); border-color: var(--hair-dark); }
.on-dark .textlink:hover { color: var(--paper); border-color: var(--slate-light); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  width: auto;
  height: 38px;
  max-width: 220px;
  object-fit: contain;
}
.nav__brand { display: inline-flex; align-items: center; min-height: 44px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--char);
  text-decoration: none;
  padding-block: 0.6rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__links a:hover { color: var(--navy-deep); border-color: var(--slate); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--hair);
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__cta:hover { border-color: var(--navy-deep); background: var(--paper-2); }

.nav__burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--char);
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}

/* Mobile drawer. The close control lives INSIDE the drawer so it shares the
   drawer's stacking context and can never be painted over by it. */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.drawer.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--nav-h) - 1.25rem);
}
.drawer__close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--hair);
  border-radius: 2px;
  cursor: pointer;
  color: var(--char);
}
.drawer__close svg { width: 18px; height: 18px; }

.drawer__links {
  list-style: none;
  margin: clamp(1.5rem, 6vh, 3rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--hair);
}
.drawer__links li { border-bottom: 1px solid var(--hair); }
.drawer__links a {
  display: flex;
  align-items: center;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  color: var(--navy-deep);
  text-decoration: none;
}
.drawer__foot { margin-top: auto; padding-top: 2.5rem; }
.drawer__foot .btn { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Hero: split, paper left, their photography right
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: stretch;
  background: var(--paper);
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(1.75rem, 5vw, 5.5rem) clamp(2.5rem, 6vw, 5rem);
  margin-left: auto;
  width: 100%;
  max-width: 780px;
}
.hero h1 {
  font-size: clamp(2.3rem, 3.45vw, 3.55rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: 16ch;
  color: var(--navy-deep);
}
.hero h1 .em { color: var(--slate-deep); }
.hero__sub {
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.72;
  max-width: 46ch;
}
.hero__actions {
  margin-top: clamp(1.9rem, 3vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.25rem;
}
.hero__rule {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-deep);
  font-weight: 600;
}

.hero__media { position: relative; overflow: hidden; background: var(--mist); }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  background: rgba(35, 43, 60, 0.88);
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
}

/* --------------------------------------------------------------------------
   Intro band
   -------------------------------------------------------------------------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--gap);
  align-items: start;
}
.intro h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  max-width: 14ch;
}
.intro__body p + p { margin-top: 1.35rem; }
.intro__body { max-width: 60ch; }

/* --------------------------------------------------------------------------
   Rooms: typographic index with a sticky plate of their own photography
   -------------------------------------------------------------------------- */
.rooms__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.rooms__head h2 { font-size: clamp(1.9rem, 3.1vw, 3.1rem); max-width: 15ch; }
.rooms__head p { max-width: 46ch; }

.rooms__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: var(--gap);
  align-items: start;
}

.rooms__media {
  position: sticky;
  top: calc(var(--nav-h) + 3.5rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}
.room__plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s var(--ease-slow), transform 1.4s var(--ease-slow);
}
.room__plate.is-active { opacity: 1; transform: scale(1); }

.rooms__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hair); }
.room {
  border-bottom: 1px solid var(--hair);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
}
.room__no {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--slate-deep);
  font-variant-numeric: tabular-nums;
}
.room h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  margin-top: 0.35rem;
  transition: color 0.3s var(--ease);
}
.room.is-active h3 { color: var(--slate-deep); }
.room p { margin-top: 0.7rem; max-width: 46ch; font-size: 0.9688rem; }
.room__inline { display: none; }

/* --------------------------------------------------------------------------
   Full-bleed quiet band
   -------------------------------------------------------------------------- */
.plate {
  position: relative;
  height: clamp(280px, 52vw, 620px);
  overflow: hidden;
  background: var(--mist);
}
.plate img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   Process: the elevation drawing
   -------------------------------------------------------------------------- */
.process__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--gap);
  align-items: end;
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}
.process h2 { font-size: clamp(1.9rem, 3.1vw, 3.1rem); max-width: 13ch; }
.process__intro { max-width: 50ch; }

.elevation {
  width: 100%;
  height: auto;
  overflow: visible;
}
.elevation__cap {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.elevation .ln {
  fill: none;
  stroke: var(--slate-light);
  stroke-width: 1.4;
  stroke-linecap: square;
  vector-effect: non-scaling-stroke;
}
.elevation .ln--thin { stroke-width: 0.9; stroke: rgba(169, 183, 210, 0.55); }
.elevation .ln--pull { stroke-width: 2.2; stroke: var(--slate-light); stroke-linecap: round; }
.elevation .fillpanel { fill: rgba(169, 183, 210, 0.07); stroke: none; opacity: 0; transition: opacity 1.2s var(--ease-slow) 0.9s; }
.elevation.is-drawn .fillpanel { opacity: 1; }

html.js .elevation .ln {
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
}
html.js .elevation.is-drawn .ln {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s var(--ease-slow);
}

.steps {
  list-style: none;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.steps li { padding-top: 1.4rem; border-top: 1px solid var(--hair-dark); }
.steps__no { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; color: var(--slate-light); font-variant-numeric: tabular-nums; }
.steps h3 { font-size: clamp(1.1875rem, 1.7vw, 1.4375rem); margin-top: 0.5rem; }
.steps p { margin-top: 0.7rem; font-size: 0.9688rem; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 34ch; }
.reviews__head h2 { font-size: clamp(1.9rem, 3.1vw, 3.1rem); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.review {
  padding: 0 clamp(1.25rem, 2.4vw, 2.25rem);
  border-left: 1px solid var(--hair);
}
.review:first-child { padding-left: 0; border-left: 0; }
.review:last-child { padding-right: 0; }
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.28vw, 1.1875rem);
  line-height: 1.62;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.review figcaption {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hair);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-deep);
}

/* --------------------------------------------------------------------------
   Areas
   -------------------------------------------------------------------------- */
.areas__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--gap);
  align-items: center;
}
.areas__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--navy-deep-2); }
.areas__media img { width: 100%; height: 100%; object-fit: cover; }
.areas h2 { font-size: clamp(1.9rem, 3.1vw, 3.1rem); max-width: 14ch; }
.areas__lede { margin-top: 1.3rem; max-width: 48ch; }
.areas__list {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--hair-dark);
}
.areas__list li {
  break-inside: avoid;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--hair-dark);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  color: var(--paper);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */
.close__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: end;
}
.close h2 { font-size: clamp(2.1rem, 3.9vw, 3.8rem); max-width: 12ch; }
.close__body { max-width: 44ch; }
.close__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem 1.1rem; }
.close__hours {
  margin-top: 1.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hair);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot { background: var(--paper-2); border-top: 1px solid var(--hair); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: var(--gap);
  align-items: start;
}
.foot__logo { width: auto; height: 40px; max-width: 220px; object-fit: contain; }
.foot__blurb { margin-top: 1.4rem; max-width: 34ch; font-size: 0.9375rem; }
.foot h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-deep);
  margin-bottom: 1.1rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li + li { margin-top: 0.15rem; }
.foot a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.9375rem;
  color: var(--body);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.foot a:hover { color: var(--navy-deep); }
.foot__base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.err {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 12vw, 9rem);
  padding-top: calc(var(--nav-h) + clamp(4rem, 10vw, 8rem));
}
.err__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
  color: rgba(169, 183, 210, 0.28);
  letter-spacing: -0.04em;
}
.err h1 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin-top: 1.5rem; color: var(--paper); max-width: 16ch; }
.err p { margin-top: 1.2rem; max-width: 52ch; }
.err .btn { margin-top: 2.25rem; }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow); }

html.js .hero__media { clip-path: inset(0 0 100% 0); }
html.js .hero__media.is-in { clip-path: inset(0 0 0 0); transition: clip-path 1.25s var(--ease-slow) 0.15s; }
html.js .hero__line { opacity: 0; transform: translateY(14px); }
html.js .hero__line.is-in { opacity: 1; transform: none; transition: opacity 0.85s var(--ease-slow), transform 0.85s var(--ease-slow); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .hero__line { opacity: 1 !important; transform: none !important; }
  html.js .hero__media { clip-path: none !important; }
  html.js .elevation .ln { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  html.js .elevation .fillpanel { opacity: 1 !important; }
  .plate img { transform: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .rooms__head { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; align-items: start; }
  .foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    height: auto;
  }
  .hero__text {
    max-width: none;
    padding: calc(var(--nav-h) + 2.75rem) 5vw 3rem;
  }
  .hero h1 { font-size: clamp(2.1rem, 8.4vw, 3rem); max-width: 18ch; }
  .hero__media { position: relative; height: clamp(340px, 76vw, 560px); }
  .hero__img { object-position: 50% 40%; }

  .intro__grid,
  .process__head,
  .areas__grid,
  .close__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .steps li { padding-block: 1.4rem; }
  .steps li:last-child { border-bottom: 1px solid var(--hair-dark); }

  .rooms__grid { grid-template-columns: minmax(0, 1fr); }
  .rooms__media { display: none; }
  .room__inline {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 1.4rem;
    background: var(--mist);
  }

  .reviews__grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .review { border-left: 0; border-top: 1px solid var(--hair); padding: clamp(1.75rem, 5vw, 2.25rem) 0 0; }
  .review:first-child { border-top: 0; padding-top: 0; }
  .review + .review { margin-top: clamp(1.75rem, 5vw, 2.25rem); }

  .areas__media { aspect-ratio: 16 / 11; }
}

@media (max-width: 620px) {
  :root { --nav-h: 68px; }
  .hero__rule { font-size: 0.75rem; gap: 0.35rem 1.1rem; }
  .kicker { letter-spacing: 0.18em; }
  .kicker::after { display: none; }
  .areas__list { columns: 1; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn,
  .close__actions .btn { width: 100%; }
}
