/* ============================================================
   PAUSE — Yoga Retreat one-pager
   Everything is driven by CSS variables (no hard-coded values).
   ============================================================ */

:root {
  /* ---------- Colour palette (sampled from the PDF) ---------- */
  --color-bg:            #f7f4eb;   /* warm cream page background */
  --color-bg-alt:        #f1ede1;   /* slightly deeper cream band */
  --color-accent:        #506890;   /* dusty slate-blue (headings + all text) */
  --color-accent-soft:   #7c93b4;   /* lighter blue for rules/hover */
  --color-text:          #506890;   /* body — same blue as headings */
  --color-text-soft:     #506890;   /* muted body — same blue as headings */
  --color-light:         #f7f4eb;   /* text on dark imagery */
  --color-light-soft:    #e8e3d6;   /* muted text on dark imagery */
  --color-line:          #d8d2c2;   /* hairline dividers */
  --color-overlay:       rgba(20, 18, 14, 0.42);
  --color-overlay-strong:rgba(18, 16, 12, 0.55);
  --hero-overlay-left:   rgba(18, 16, 12, 0.68);
  --hero-overlay-right:  rgba(18, 16, 12, 0.12);

  /* ---------- Typography ---------- */
  --font-serif:  'Cormorant Garamond', 'EB Garamond', Garamond, 'Times New Roman', serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* fluid type scale */
  --fs-hero:     clamp(5.5rem, 18vw, 8rem);
  --fs-display:  clamp(2.4rem, 6vw, 4rem);
  --fs-heading:  clamp(2rem, 4.5vw, 3.25rem);
  --fs-lead:     clamp(1.3rem, 2.6vw, 1.9rem);
  --fs-body:     clamp(1rem, 1.4vw, 1.125rem);
  --fs-small:    clamp(0.8rem, 1.1vw, 0.9rem);
  --fs-eyebrow:  clamp(0.7rem, 1.1vw, 0.85rem);
  --fs-logo:     clamp(1.05rem, 1.6vw, 1.3rem);

  --lh-tight:    1.15;
  --lh-snug:     1.35;
  --lh-body:     1.75;

  --ls-wide:     0.18em;
  --ls-wider:    0.32em;
  --ls-heading:  0.02em;
  --ls-slight:   0.03em;

  /* ---------- Spacing scale ---------- */
  --space-2xs:   0.35rem;
  --space-xs:    0.6rem;
  --space-sm:    1rem;
  --space-md:    1.6rem;
  --space-lg:    2.6rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;
  --space-3xl:   9rem;

  --section-pad-y: clamp(var(--space-2xl), 12vw, var(--space-3xl));
  --section-pad-x: clamp(var(--space-md), 6vw, var(--space-2xl));

  /* ---------- Layout ---------- */
  --maxw-page:    1200px;
  --maxw-text:    62ch;
  --maxw-narrow:  46ch;
  --maxw-para:    50ch;
  --nav-height:   clamp(3.75rem, 7vw, 4.75rem);

  /* ---------- Misc ---------- */
  --radius:       4px;
  --radius-img:   6px;
  --border-hair:  1px solid var(--color-line);
  --gap-grid:     clamp(var(--space-sm), 2.5vw, var(--space-lg));
  --transition-dur: 0.3s;
  --transition:   var(--transition-dur) ease;
  --overlay-blur: saturate(1.05);
  --shadow-soft:  0 18px 40px -24px rgba(40, 36, 28, 0.5);
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

p { margin: 0 0 var(--space-sm); }

/* ---------- Shared type helpers ---------- */
.heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  color: var(--color-accent);
  margin: 0 0 var(--space-md);
}
.heading--light { color: var(--color-light); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 var(--space-md);
}
.eyebrow--light { color: var(--color-light-soft); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px) var(--overlay-blur);
  border-bottom: var(--border-hair);
}

.nav__inner {
  max-width: var(--maxw-page);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-logo);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-heading);
  color: var(--color-accent);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
}
.nav__logo-pause {
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: 2em;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(var(--space-sm), 2vw, var(--space-lg));
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.nav__links a:hover { color: var(--color-accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--color-accent);
  transition: transform var(--transition), opacity var(--transition);
}
/* middle line: reappears only at the END when closing (opacity change delayed until
   the top/bottom lines finish rotating back) */
.nav__toggle span:nth-child(2) { transition: opacity 0s var(--transition-dur); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
/* middle line: disappears RIGHT AWAY when opening (instant, no fade) */
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transition: opacity 0s; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   Reusable section shells
   ============================================================ */
.hero,
.welcome,
.connect,
.journey { position: relative; }

.intro,
.about,
.day,
.sanctuary,
.rooms,
.included,
.join,
.faq,
.contact {
  padding: var(--section-pad-y) var(--section-pad-x);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--nav-height) var(--section-pad-x) var(--space-2xl);
  text-align: left;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--hero-overlay-left) 0%,
    var(--hero-overlay-right) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--maxw-page) - 2 * var(--section-pad-x));
  margin: 0 auto;
}
.hero__content { color: var(--color-light); }

.hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
  margin: 0 0 var(--space-sm);
}
.hero__sub {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-lead);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin: 0 0 var(--space-lg);
}
.hero__meta {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin: 0 0 var(--space-2xs);
  color: var(--color-light-soft);
}

/* ============================================================
   Intro line
   ============================================================ */
.intro {
  background: var(--color-accent);
  text-align: center;
  display: grid;
  place-items: center;
}
.intro__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-display);
  line-height: var(--lh-snug);
  color: var(--color-bg);
  max-width: var(--maxw-text);
  margin: 0;
}

/* ============================================================
   Welcome (image band)
   ============================================================ */
.welcome {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--section-pad-y) * 1.4) var(--section-pad-x);
  background: var(--color-overlay) url('img/1-1280.jpg') center / cover no-repeat;
  background-attachment: scroll;
}
.welcome__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-strong);
}
.welcome__content {
  position: relative;
  width: 100%;
  max-width: calc(var(--maxw-page) - 2 * var(--section-pad-x));
  margin: 0 auto;
  color: var(--color-light);
}
.welcome .heading { font-size: var(--fs-display); }
.welcome__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--space-md);
}
.welcome__cols p { margin: 0; max-width: var(--maxw-para); color: var(--color-light-soft); }

/* ============================================================
   About / Dóra
   ============================================================ */
.about {
  max-width: var(--maxw-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(var(--space-lg), 5vw, var(--space-2xl));
  align-items: center;
}
.about__media img {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about__text .heading { font-size: var(--fs-display); }
.about__text p { color: var(--color-text-soft); max-width: var(--maxw-text); }

/* ============================================================
   A day at Pause — schedule
   ============================================================ */
.day { max-width: var(--maxw-page); margin: 0 auto; }
.day__head { text-align: center; margin-bottom: var(--space-xl); }
.day .heading { font-size: var(--fs-display); }
.day__intro {
  max-width: var(--maxw-text);
  margin: 0 auto;
  color: var(--color-text-soft);
}

.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 46rem;
  margin-inline: auto;
}
.schedule__item {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: clamp(var(--space-md), 4vw, var(--space-xl));
  padding: var(--space-md) 0;
  border-bottom: var(--border-hair);
  align-items: baseline;
}
.schedule__item:first-child { border-top: var(--border-hair); }
.schedule__time {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-lead);
  letter-spacing: var(--ls-heading);
  color: var(--color-accent);
}
.schedule__body h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 var(--space-2xs);
}
.schedule__body p { margin: 0; color: var(--color-text-soft); font-size: var(--fs-small); font-weight: var(--fw-medium); letter-spacing: var(--ls-slight); }

/* ============================================================
   Space to connect (image band)
   ============================================================ */
.connect {
  min-height: 90vh;
  padding: calc(var(--section-pad-y) * 1.4) var(--section-pad-x);
  background: var(--color-overlay) url('img/5-5-1600.jpg') center / cover no-repeat;
  text-align: center;
  display: grid;
  place-items: center;
}
.connect__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-strong);
}
.connect__content {
  position: relative;
  max-width: var(--maxw-text);
  color: var(--color-light);
}
.connect .heading { font-size: var(--fs-display); }
.connect__content p { max-width: var(--maxw-para); margin-inline: auto; color: var(--color-light-soft); }

/* ============================================================
   Sanctuary / Aura Cempaka
   ============================================================ */
.sanctuary { max-width: var(--maxw-page); margin: 0 auto; }
.sanctuary__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--space-lg), 5vw, var(--space-2xl));
  align-items: start;
  margin-bottom: var(--space-xl);
}
.sanctuary .heading { font-size: var(--fs-display); margin: 0; }
.sanctuary__text p { color: var(--color-text-soft); }
.sanctuary__text p:last-child { margin-bottom: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   Rooms / Your Sanctuary
   ============================================================ */
.rooms { max-width: var(--maxw-page); margin: 0 auto; }
.rooms__title { font-size: var(--fs-display); text-align: center; margin-bottom: var(--space-xl); }

.room { margin-bottom: var(--space-2xl); }
.room:last-child { margin-bottom: 0; }
.room__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
}
.room__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
}
/* single-photo room: same size as one column, centered */
.room__gallery--single {
  display: flex;
  justify-content: center;
}
.room__gallery--single img {
  width: calc((100% - var(--gap-grid)) / 2);
}
.room__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-accent);
  text-align: center;
  margin: var(--space-md) 0 0;
}

/* ============================================================
   What's included
   ============================================================ */
.included {
  background: var(--color-bg-alt);
}
.included > * { max-width: var(--maxw-text); margin-inline: auto; }
.included .heading { font-size: var(--fs-display); text-align: center; }
.included__lead { text-align: center; color: var(--color-text-soft); margin-bottom: var(--space-lg); }

.included__list {
  list-style: none;
  margin: 0 auto var(--space-lg);
  padding: 0;
}
.included__list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-soft);
}
.included__list li::before {
  content: '';
  position: absolute;
  left: 0.15em;
  top: 0.62em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: var(--color-accent);
}
.included__list strong {
  font-weight: var(--fw-semibold);
}
.included__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  text-align: center;
  color: var(--color-accent);
}

/* ============================================================
   Journey banner
   ============================================================ */
.journey {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-overlay) url('img/16-1600.jpg') center / cover no-repeat;
  text-align: center;
  display: grid;
  place-items: center;
}
.journey__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}
.journey__content { position: relative; color: var(--color-light); }
.journey__word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
  margin: 0 0 var(--space-2xs);
}
.journey__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  margin: 0;
  color: var(--color-light-soft);
}

/* ============================================================
   Join Us / pricing
   ============================================================ */
.join { max-width: var(--maxw-page); margin: 0 auto; text-align: center; }
.join__head { margin-bottom: var(--space-xl); }
.join .heading { font-size: var(--fs-display); }
.join__meta { line-height: 2; }
.join__lead { color: var(--color-text-soft); max-width: var(--maxw-narrow); margin-inline: auto; }

.pricing {
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
  text-align: left;
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: var(--border-hair);
}
.pricing__row span:last-child { text-align: right; }
.pricing__row--head {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}
.pricing__row:not(.pricing__row--head) span:first-child {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  color: var(--color-text);
}
.pricing__row:not(.pricing__row--head) span:last-child {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-heading);
  color: var(--color-accent);
  white-space: nowrap;
}

.policy { max-width: var(--maxw-narrow); margin: 0 auto; color: var(--color-text-soft); }
.policy h3 {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin: var(--space-lg) 0 var(--space-xs);
}
.policy p { margin-bottom: var(--space-xs); }

/* ============================================================
   FAQ / accordion
   ============================================================ */
.faq { max-width: var(--maxw-page); margin: 0 auto; }
.faq__title { font-size: var(--fs-display); text-align: center; margin-bottom: var(--space-xl); }

.faq__list { max-width: 48rem; margin: 0 auto; }

.faq__item { border-bottom: var(--border-hair); }
.faq__item:first-child { border-top: var(--border-hair); }

.faq__q {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-slight);
  color: var(--color-accent);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  flex-shrink: 0;
  font-weight: var(--fw-regular);
  font-size: 1.5em;
  line-height: 1;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.faq__item[open] .faq__q::after { content: '\2212'; }

.faq__a {
  padding: 0 0 var(--space-md);
  color: var(--color-text-soft);
}
.faq__a p { margin: 0 0 var(--space-sm); }
.faq__a p:last-child { margin-bottom: 0; }

.faq__inclist { list-style: none; margin: var(--space-2xs) 0 0; padding: 0; }
.faq__inclist li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-2xs);
}
.faq__inclist li::before {
  content: '';
  position: absolute;
  left: 0.15em;
  top: 0.62em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: var(--color-accent);
}

.faq__still { text-align: center; margin-top: var(--space-2xl); }
.faq__still h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead);
  color: var(--color-accent);
  margin: 0 0 var(--space-xs);
}
.faq__still p { color: var(--color-text-soft); margin: 0 0 var(--space-2xs); }
.faq__still a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 0.15em; }
.faq__still a:hover { color: var(--color-accent-soft); }

/* ============================================================
   Contact / footer
   ============================================================ */
.contact {
  background: var(--color-accent);
  text-align: center;
  color: var(--color-bg);
}
.contact .heading { font-size: var(--fs-display); color: var(--color-bg); }
.contact__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-bg);
  margin-bottom: var(--space-sm);
}
.contact a:hover { color: var(--color-light-soft); }
.contact__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-display);
  letter-spacing: var(--ls-wide);
  color: var(--color-bg);
  margin: var(--space-xl) 0 0;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Freeze every fluid (vw-based) value at its 1200px value so nothing
   — content width, padding, gaps or type — keeps changing above 1200px.
   Each value equals what the clamp/vw resolves to exactly at 1200px,
   so the transition through 1200px is seamless. */
@media (min-width: 1200px) {
  :root {
    --fs-hero:     8rem;      /* 12vw capped */
    --fs-display:  4rem;      /* 6vw capped */
    --fs-heading:  3.25rem;   /* 4.5vw capped */
    --fs-lead:     1.9rem;    /* 2.6vw capped */
    --fs-body:     1.05rem;   /* 1.4vw @1200 */
    --fs-small:    0.825rem;  /* 1.1vw @1200 */
    --fs-eyebrow:  0.825rem;  /* 1.1vw @1200 */
    --fs-logo:     1.2rem;    /* 1.6vw @1200 */

    --section-pad-y: 9rem;    /* 12vw capped */
    --section-pad-x: 4.5rem;  /* 6vw @1200 = 72px */
    --gap-grid:      1.875rem;/* 2.5vw @1200 = 30px */
  }

  /* element-level vw gaps frozen at their 1200px value */
  .nav__links { gap: 1.5rem; }             /* 2vw @1200 */
  .about,
  .sanctuary__intro { gap: 3.75rem; }      /* 5vw @1200 */
  .schedule__item { gap: 3rem; }           /* 4vw @1200 */
}

@media (max-width: 900px) {
  .hero__img { object-position: 40% 50%; }
  .welcome { background-image: url('img/1-960.jpg'); }
  .connect { background-image: url('img/5-5-1280.jpg'); }
  .journey { background-image: url('img/16-960.jpg'); }
  .about,
  .sanctuary__intro { grid-template-columns: 1fr; }
  .about__media { max-width: 26rem; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; position: relative; z-index: 3; }

  /* An opaque bar layer paints ABOVE the sliding menu, so the menu tucks
     behind the nav bar as it opens/closes. */
  .nav { border-bottom: none; }
  .nav__inner { position: relative; z-index: 0; }
  .nav__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    border-bottom: var(--border-hair);
    z-index: 2;
  }
  .nav__logo { position: relative; z-index: 3; }

  .nav__links {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--color-bg);
    border-bottom: var(--border-hair);
    padding: var(--space-md) 0;
    transform: translateY(-140%);
    transition: transform var(--transition);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: var(--space-sm) 0; }
}

@media (max-width: 540px) {
  .hero__img { object-position: 50% 50%; }
  .welcome { background-image: url('img/1-640.jpg'); }
  .connect { background-image: url('img/5-5-1920.jpg'); }
  .journey { background-image: url('img/16-640.jpg'); }
  .room__gallery { grid-template-columns: 1fr; }
  .room__gallery--single img { width: 100%; }
  .schedule__item {
    grid-template-columns: 1fr;
    gap: var(--space-2xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
