/* =========================================================
   CASA 408 — brand site
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --bg: #f6f3ee;
  --bg-2: #ede8e0;
  --ink: #1f2630;
  --ink-2: #5f6770;
  --line: rgba(31, 38, 48, .14);
  --accent: #b4874f;
  --footer: #333c4b;
  --white: #fff;

  --f-latin: "Jost", "Josefin Sans", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Noto Serif KR", "Apple SD Gothic Neo", "Nanum Myeongjo", serif;
  --f-sans: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --space: clamp(80px, 12vw, 160px);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, dl, dd, figure, address { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }

.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; padding: 8px 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow--light { color: rgba(255, 255, 255, .82); }
.eyebrow--ko { font-family: var(--f-sans); font-size: 13px; letter-spacing: .22em; text-transform: none; }

.title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  text-wrap: balance;
}

.lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 2;
  color: var(--ink-2);
  max-width: 60ch;
}

.link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .06em;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: opacity .3s ease;
}
.link:hover { opacity: .6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 34px;
  border: 1px solid currentColor;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .16em;
  line-height: 1;
  transition: background .35s ease, color .35s ease;
}
.btn__arrow {
  font-family: var(--f-latin);
  font-size: 16px;
  transition: transform .35s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--light { color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--dark { color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  padding: 26px 0;
  transition: background .45s ease, padding .45s ease, color .45s ease, box-shadow .45s ease;
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--f-latin);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .32em;
  line-height: 1;
}
.nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
}
.nav a { opacity: .82; transition: opacity .3s ease; }
.nav a:hover { opacity: 1; }
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 36px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1;
  transition: background .35s ease, color .35s ease;
}
.nav-cta:hover { background: #fff; color: var(--ink); }

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(246, 243, 238, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-scrolled .nav-cta:hover,
.site-header--solid .nav-cta:hover { background: var(--ink); color: #fff; }
.site-header--solid .nav-cta.is-current { background: var(--ink); color: #fff; border-color: var(--ink); }
.site-header--solid .nav-cta.is-current:hover { background: transparent; color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: -2;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(18, 22, 28, .38), rgba(18, 22, 28, 0) 32%),
    linear-gradient(to top, rgba(18, 22, 28, .68) 0%, rgba(18, 22, 28, .24) 46%, rgba(18, 22, 28, 0) 100%);
}
.hero__body {
  padding-top: 160px;
  padding-bottom: clamp(72px, 11vw, 130px);
}
.hero__title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.18;
  letter-spacing: -.015em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.95;
  max-width: 56ch;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 40px;
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .7);
}
.hero__scroll span {
  font-family: var(--f-latin);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(rgba(255, 255, 255, .85), rgba(255, 255, 255, 0));
  animation: drip 2.6s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- sections ---------- */
.section { padding-block: var(--space); }

.intro { text-align: center; }
.intro__in { max-width: 720px; margin-inline: auto; }
.intro .lead { margin-inline: auto; }

.feature__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.feature--rev .feature__grid { grid-template-columns: 1fr 1.15fr; }
.feature__media { overflow: hidden; }
.feature__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.specs { margin-top: 44px; border-top: 1px solid var(--line); }
.specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.specs dt { font-weight: 500; font-size: 15px; }
.specs dd { color: var(--ink-2); font-size: 14.5px; }
.feature__more { margin-top: 30px; }

.addr {
  margin-top: 36px;
  display: grid;
  gap: 4px;
  font-size: 15.5px;
  font-weight: 400;
}
.addr__old { color: var(--ink-2); font-size: 14px; font-weight: 300; }

.nearby { margin-top: 28px; margin-bottom: 36px; border-top: 1px solid var(--line); }
.nearby li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.nearby li span:last-child { color: var(--ink-2); }

/* ---------- night ---------- */
.night {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-block: 120px;
}
.night__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.night__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 14, 22, .3);
}
.night__quote {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.5;
  margin-bottom: 28px;
  text-wrap: balance;
}
.night .eyebrow { margin-bottom: 0; }

/* ---------- contact ---------- */
.contact { background: var(--bg-2); text-align: center; }
.contact__in { max-width: 720px; margin-inline: auto; }
.contact .lead { margin-inline: auto; }
.contact__btn { margin-top: 40px; }
.contact__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 36px;
}
.contact__links .link {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--ink-2);
}

/* ---------- sub page: banner ---------- */
.page-hero {
  position: relative;
  min-height: clamp(360px, 48vh, 540px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
}
.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(18, 22, 28, .25), rgba(18, 22, 28, 0) 40%),
    linear-gradient(to top, rgba(18, 22, 28, .62) 0%, rgba(18, 22, 28, .18) 55%, rgba(18, 22, 28, 0) 100%);
}
.page-hero__body {
  padding-top: 140px;
  padding-bottom: clamp(44px, 6vw, 72px);
}
.page-hero__title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.page-hero__lead {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255, 255, 255, .88);
}

/* ---------- sub page: booking ---------- */
.booking { padding-top: clamp(56px, 8vw, 96px); }
.booking__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.booking__head .title { margin-bottom: 0; }
.booking__ext { margin-bottom: 8px; color: var(--ink-2); white-space: nowrap; }
.booking__panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(6px, 1.5vw, 20px);
}
.booking__frame {
  display: block;
  width: 100%;
  height: 2200px;
  border: 0;
  background: #fff;
}
.cal-legend { display: none; }
@media (max-width: 760px) {
  .cal-legend {
    display: block;
    margin-bottom: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .45);
  }
  .cal-legend__t { font-size: 14px; font-weight: 500; letter-spacing: .02em; margin-bottom: 8px; }
  .cal-legend__t span { font-weight: 300; color: var(--ink-2); }
  .cal-legend__rooms { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0; padding: 0; list-style: none; counter-reset: room; }
  .cal-legend__rooms li { font-size: 13.5px; color: var(--ink); counter-increment: room; }
  .cal-legend__rooms li::before {
    content: counter(room);
    display: inline-block;
    min-width: 18px;
    height: 18px;
    margin-right: 6px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-family: var(--f-latin);
    font-size: 11px;
    line-height: 18px;
    text-align: center;
  }
  .cal-legend__note { margin-top: 10px; font-size: 12.5px; color: var(--ink-2); line-height: 1.7; }
}
.booking__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .02em;
}

/* ---------- sub page: guide ---------- */
.guide { background: var(--bg-2); }
.guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 8px;
}
.guide__col { min-width: 0; } /* let the refund table scroll instead of widening the column */
.guide__h {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .04em;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--ink);
}
.guide__h--table { margin-top: 44px; }
.rules li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-2);
}
.rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 5px;
  height: 1px;
  background: var(--ink-2);
}
.rules li.is-point { color: var(--ink); font-weight: 400; }
.rules li.is-point::before { background: var(--accent); width: 8px; }
.rules small { display: block; font-size: 13px; color: var(--ink-2); }

.refund { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.refund__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: center;
}
.refund__table th,
.refund__table td {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.refund__table th {
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.refund__table td {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
}
.refund__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-2);
}

.guide__contact {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
}
.guide__contact p { font-size: 14px; color: var(--ink-2); letter-spacing: .04em; }
.guide__contact .link {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .08em;
}

/* ---------- sub page: rooms ---------- */
.nav a.is-here { opacity: 1; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.rooms-intro { padding-bottom: 0; }
.rooms-intro .lead { max-width: 64ch; }
.rooms-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.rooms-nav a {
  font-size: 13px;
  letter-spacing: .06em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  transition: color .3s ease, border-color .3s ease;
}
.rooms-nav a:hover { color: var(--ink); border-color: var(--ink); }

.notice {
  max-width: 640px;
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}
.notice__h {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.notice li {
  position: relative;
  padding-left: 16px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
}
.notice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.rooms { padding-top: clamp(24px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 80px); }
.room {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-block: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.room:first-child { border-top: 0; }
.room__main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--bg-2);
}
.room__gallery, .room__info { min-width: 0; }
.room__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 6px;
  margin-top: 6px;
}
.room__thumbs button {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: .5;
  transition: opacity .3s ease;
}
.room__thumbs button:hover,
.room__thumbs button.is-active { opacity: 1; }
.room__thumbs img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.room__info .eyebrow { margin-bottom: 10px; }
.room__name {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  margin-bottom: 30px;
}
.room__h {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .04em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  margin-top: 30px;
}
.room__h span {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 10px;
}
.spec > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec dt { color: var(--ink-2); }
.spec dd { color: var(--ink); font-weight: 400; }
.amenity { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 16px; }
.amenity li {
  font-size: 13.5px;
  line-height: 1.5;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}
.room__btn { margin-top: 34px; }

/* ---------- notice popup ---------- */
.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 24, 30, .55);
  animation: notice-in .35s ease;
}
.notice-modal__box { position: relative; width: min(420px, 100%); }
.notice-modal img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}
.notice-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}
body.notice-open { overflow: hidden; }
@keyframes notice-in { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .notice-modal { animation: none; } }

/* ---------- footer ---------- */
.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 2.05;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, .7fr) 1.6fr minmax(160px, .6fr);
  gap: clamp(32px, 6vw, 96px);
  padding-block: clamp(56px, 7vw, 96px);
}
.footer__brand { text-align: center; align-self: center; color: #fff; }
.mark { width: 56px; height: 56px; margin: 0 auto 22px; display: block; }
.footer__name {
  font-family: var(--f-latin);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .34em;
  padding-left: .34em; /* optical centering for tracking */
  line-height: 1;
}
.footer__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
  letter-spacing: .06em;
}
.footer__h {
  font-family: var(--f-latin);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
}
.footer__info li span { color: #fff; margin-right: 6px; }
.footer__info li span + span { margin-left: 6px; }
.footer__info a { transition: color .3s ease; }
.footer__info a:hover { color: #fff; }

.footer__sns ul { display: flex; gap: 12px; }
.footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
  transition: background .3s ease, color .3s ease;
}
.footer__sns a:hover { background: #fff; color: var(--footer); }
.footer__sns svg { width: 22px; height: 22px; }
.footer__sns .blog { font-family: var(--f-latin); font-size: 13px; letter-spacing: .02em; line-height: 1; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .04em;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.2, .6, .2, 1), transform 1s cubic-bezier(.2, .6, .2, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feature__grid,
  .feature--rev .feature__grid { grid-template-columns: 1fr; gap: 40px; }
  .feature--rev .feature__media { order: 1; }
  .feature--rev .feature__text { order: 2; }

  .footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__brand { text-align: left; }
  .mark { margin-left: 0; }
  .footer__name { padding-left: 0; }

  .guide__grid { grid-template-columns: 1fr; gap: 48px; }
  .room { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .site-header__in { gap: 12px; }
  .brand { font-size: 18px; }
  .nav-cta { margin-left: auto; padding: 10px 14px; font-size: 12px; }
  .nav-toggle { display: inline-flex; margin-right: -8px; }

  /* full-screen menu panel under the header */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: -1; /* inside the fixed header: above its background, below brand/CTA/toggle */
    margin: 0;
    padding: 96px var(--gutter) 32px;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    opacity: 1;
  }
  .nav a.is-here { color: var(--accent); padding-bottom: 18px; border-bottom-color: var(--line); }
  .nav__cta,
  .nav a.nav__cta {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding: 18px;
    border: 0;
    background: var(--ink);
    color: #fff;
    font-family: var(--f-sans);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .16em;
  }
  .nav a.nav__cta { margin-top: 32px; }
  .site-header.is-open {
    background: var(--bg);
    color: var(--ink);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  body.menu-open { overflow: hidden; }
  .hero__scroll { display: none; }
  .specs > div { grid-template-columns: 96px 1fr; }
}

@media (max-width: 600px) {
  .br-md { display: none; }
  .btn { width: 100%; justify-content: center; }
  .footer__info li { line-height: 1.8; padding: 4px 0; }

  .page-hero__body { padding-top: 110px; }
  .booking__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .booking__frame { height: 2400px; }
  .booking__panel { padding: 0; border-left: 0; border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
}
