﻿/* ───────────────────────── TOKENS ───────────────────────── */
:root {
  --cream: #F5EFE5;
  --cream-soft: #FAF6EE;
  --cream-deep: #EDE4D2;
  --stone: #C7B79F;
  --stone-deep: #A08A6A;
  --terracotta: #B5543A;
  --terracotta-deep: #8E3E28;
  --ochre: #C89B3C;
  --charcoal: #2B2520;
  --ink: #1A1612;
  --muted: #6B5E4F;
  --line: rgba(43, 37, 32, 0.14);

  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-serif: "Cormorant Garamond", Georgia, serif;
  --f-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--terracotta); color: var(--cream); }

/* ───────────────────────── PAPER BACKGROUND ───────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(181, 84, 58, 0.03), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 155, 60, 0.03), transparent 50%);
  background-attachment: fixed;
}

/* ───────────────────────── TYPOGRAPHY ───────────────────────── */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terracotta-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta-deep);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 6.25rem); font-weight: 300; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; }
.italic { font-style: italic; font-family: var(--f-serif); font-weight: 400; }

p { font-size: 1.02rem; line-height: 1.75; color: var(--muted); }
.lead { font-family: var(--f-serif); font-size: clamp(1.2rem, 1.5vw, 1.5rem); line-height: 1.6; color: var(--charcoal); font-weight: 400; }

/* ───────────────────────── LAYOUT ───────────────────────── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}
section { position: relative; }

/* ───────────────────────── NAV ───────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 239, 229, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color 0.5s var(--ease);
}
.brand-tag {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.7);
  margin-top: 0.4rem;
  transition: color 0.5s var(--ease);
}
.nav.scrolled .brand-mark { color: var(--ink); }
.nav.scrolled .brand-tag { color: var(--muted); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid currentColor;
  color: var(--cream);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-dark { color: var(--ink); border-color: var(--ink); }
.btn-dark::before { background: var(--ink); }
.btn-dark:hover { color: var(--cream); }

.btn-filled {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn-filled::before { background: var(--terracotta-deep); }
.btn-filled:hover { color: var(--cream); }

.btn-ghost {
  color: var(--charcoal);
  border-color: rgba(43, 37, 32, 0.45);
  padding: 0.8rem 1.25rem;
  font-size: 0.72rem;
  background: transparent;
}
.btn-ghost::before { background: var(--charcoal); }
.btn-ghost:hover { color: var(--cream); border-color: var(--charcoal); }

.nav.scrolled .btn { color: var(--ink); }
.nav.scrolled .btn::before { background: var(--ink); }
.nav.scrolled .btn:hover { color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ───────────────────────── HERO ───────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: 9rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cream-deep);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  animation: slowZoom 18s var(--ease) forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.35) 0%, rgba(26, 22, 18, 0.15) 30%, rgba(26, 22, 18, 0.75) 100%),
    linear-gradient(90deg, rgba(26, 22, 18, 0.45) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero-title {
  max-width: 780px;
}
.hero-title .eyebrow {
  color: var(--stone);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.hero-title .eyebrow::before { background: var(--stone); }

.hero-title h1 {
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}
.hero-title h1 .italic {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}
.hero-title .lead {
  color: rgba(245, 239, 229, 0.85);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}

/* Hero meta card */
.hero-meta {
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
  padding-bottom: 2rem;
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
  padding: 2rem;
  background: rgba(26, 22, 18, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 239, 229, 0.18);
}
.hero-meta-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.hero-meta-item .value {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}
.hero-meta-item .value .italic { font-style: italic; font-family: var(--f-serif); font-weight: 400; }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.8s forwards;
  pointer-events: none;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.7);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(245, 239, 229, 0.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cream);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* Hero side — rating tag */
.hero-tag {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 3rem);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 3;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.7);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.hero-tag::before, .hero-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(245, 239, 229, 0.4);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────── SECTION FRAME ───────────────────────── */
.section-pad {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: clamp(3rem, 7vh, 5rem);
  align-items: end;
}
.section-head .title h2 { margin-top: 1.25rem; }
.section-head .meta p { max-width: 520px; font-size: 1.05rem; }

/* ───────────────────────── ABOUT ───────────────────────── */
.about {
  background: var(--cream-soft);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-images {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 42%;
  overflow: hidden;
  border: 8px solid var(--cream-soft);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { margin: 1.25rem 0 2rem; max-width: 500px; }
.about-text .lead { margin-bottom: 1.5rem; }
.about-text p + p { margin-top: 1.2rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-stats .stat .num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.about-stats .stat .num sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--terracotta);
}
.about-stats .stat .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────────────────────── HOUSE OUTLINE GALLERY ───────────────────────── */
.outline-gallery {
  background: var(--cream-soft);
}
.outline-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.outline-head .eyebrow {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.outline-head .eyebrow::before,
.outline-head .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta-deep);
}
.outline-head .eyebrow::before { margin-right: 0.75rem; }
.outline-head h2 { max-width: 760px; margin: 0 auto; }
.outline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.outline-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.outline-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.outline-item:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .outline-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ───────────────────────── ROOMS ───────────────────────── */
.rooms {
  background: var(--cream);
}
.rooms-head {
  text-align: center;
  margin-bottom: 5rem;
}
.rooms-head .eyebrow { justify-content: center; margin-bottom: 1.5rem; }
.rooms-head .eyebrow::before, .rooms-head .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta-deep);
}
.rooms-head .eyebrow::before { margin-right: 0.75rem; }
.rooms-head h2 { max-width: 800px; margin: 0 auto 1.5rem; }
.rooms-head p { max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

.room-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.room {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.room.reverse { grid-template-columns: 1fr 1.3fr; }
.room.reverse .room-media { order: 2; }
.room.reverse .room-body { order: 1; }

.room-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-deep);
}
.room-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease), transform 1.2s var(--ease);
}
.room-media img.is-active {
  opacity: 1;
  pointer-events: auto;
}
.room-media:hover img.is-active { transform: scale(1.05); }
.room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 22, 18, 0.4));
  pointer-events: none;
  z-index: 1;
}

/* Slideshow controls */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(245, 239, 229, 0.88);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.room-media:hover .slide-btn,
.room-media:focus-within .slide-btn { opacity: 1; }
.slide-btn:hover { background: var(--cream); }
.slide-btn:focus-visible { opacity: 1; outline: 2px solid var(--terracotta); outline-offset: 2px; }
.slide-btn svg { width: 20px; height: 20px; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.slide-prev { left: 1rem; }
.slide-next { right: 1rem; }
.slide-prev:hover { transform: translateY(-50%) translateX(-2px); }
.slide-next:hover { transform: translateY(-50%) translateX(2px); }

.slide-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.slide-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 239, 229, 0.5);
  transition: all 0.35s var(--ease);
  padding: 0;
}
.slide-dots button.is-active {
  background: var(--cream);
  width: 20px;
  border-radius: 999px;
}
.slide-dots button:hover { background: var(--cream); }
@media (max-width: 520px) {
  .slide-btn { width: 36px; height: 36px; opacity: 1; background: rgba(245, 239, 229, 0.75); }
  .slide-btn svg { width: 18px; height: 18px; }
  .slide-prev { left: 0.6rem; }
  .slide-next { right: 0.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .room-media img { transition: opacity 0.2s linear; }
  .room-media:hover img.is-active { transform: none; }
}
.room-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 239, 229, 0.92);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
}
.room-num {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
  z-index: 2;
  opacity: 0.85;
  font-family: var(--f-serif);
}
.room-body .eyebrow { margin-bottom: 1.2rem; }
.room-body h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.room-body .price {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--terracotta-deep);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.room-body .price .italic { font-style: italic; font-weight: 400; font-size: 0.9rem; color: var(--muted); }
.room-body .price .amount {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-right: 0.4rem;
}
.room-body p { margin-bottom: 1.5rem; }
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  margin-bottom: 2rem;
  list-style: none;
}
.room-features li {
  padding: 0.4rem 0.85rem;
  background: var(--cream-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}
.room-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ───────────────────────── AMENITIES ───────────────────────── */
.amenities {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(181, 84, 58, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(200, 155, 60, 0.08), transparent 40%);
}
.amenities h2, .amenities h3 { color: var(--cream); }
.amenities .eyebrow { color: var(--ochre); }
.amenities .eyebrow::before { background: var(--ochre); }
.amenities .section-head .meta p { color: rgba(245, 239, 229, 0.7); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 239, 229, 0.08);
}
.amenity {
  background: var(--ink);
  padding: 2.5rem 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.5s var(--ease);
}
.amenity:hover { background: #20190f; }
.amenity-icon {
  width: 40px;
  height: 40px;
  color: var(--ochre);
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-body {
  margin-top: 2rem;
}
.amenity-body h4 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.amenity-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 239, 229, 0.6);
}

.amenities-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 5rem;
  align-items: center;
}
.amenities-feature-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.amenities-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.amenities-feature-img:hover img { transform: scale(1.04); }
.amenities-feature-text p { color: rgba(245, 239, 229, 0.75); margin-bottom: 1.25rem; }
.amenities-feature-text .lead { color: var(--cream); margin-bottom: 2rem; }
.amenities-feature-text h2 { margin-bottom: 2rem; margin-top: 1.5rem; max-width: 480px; }

/* ───────────────────────── EXPERIENCE ───────────────────────── */
.experience {
  background: var(--cream);
  position: relative;
}
.experience .section-head { margin-bottom: 4rem; }
.experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.exp-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
}
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
  position: absolute;
  inset: 0;
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 22, 18, 0.85));
  transition: background 0.5s var(--ease);
}
.exp-card:hover::after { background: linear-gradient(180deg, rgba(26, 22, 18, 0.1) 0%, rgba(26, 22, 18, 0.9) 100%); }
.exp-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: var(--cream);
}
.exp-card-body .eyebrow {
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.exp-card-body .eyebrow::before { background: var(--stone); }
.exp-card-body h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.5rem;
}
.exp-card-body p {
  color: rgba(245, 239, 229, 0.85);
  font-size: 0.92rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), margin 0.6s var(--ease);
  margin: 0;
}
.exp-card:hover .exp-card-body p { max-height: 120px; margin-top: 0.75rem; }

.exp-1 { grid-row: 1 / 3; }
.exp-5 { grid-column: 2 / 4; }

/* ───────────────────────── GALLERY ───────────────────────── */
.gallery {
  background: var(--cream-soft);
  overflow: hidden;
}
.gallery-head {
  text-align: center;
  margin-bottom: 4rem;
}
.gallery-head h2 { margin: 1rem auto 0; max-width: 800px; }
.gallery-head .eyebrow { justify-content: center; }
.gallery-head .eyebrow::before, .gallery-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta-deep);
  display: inline-block;
}
.gallery-head .eyebrow::before { margin-right: 0.75rem; }

.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 22, 18, 0.25));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* ───────────────────────── LOCATION ───────────────────────── */
.location {
  background: var(--cream-deep);
  position: relative;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location-text h2 { margin: 1.25rem 0 2rem; }
.location-text .lead { margin-bottom: 2rem; }

.distance-list {
  list-style: none;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.distance-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.distance-list .marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
.distance-list .place {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
.distance-list .place em {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 0.2rem;
  font-family: var(--f-sans);
  font-weight: 500;
}
.distance-list .dist {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta-deep);
}

.location-map {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(181, 84, 58, 0.15));
  pointer-events: none;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
  text-align: center;
}
.pin-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  margin: 0 auto;
  box-shadow: 0 0 0 0 rgba(181, 84, 58, 0.5);
  animation: pinPulse 2.5s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181, 84, 58, 0.6); }
  50% { box-shadow: 0 0 0 18px rgba(181, 84, 58, 0); }
}
.pin-label {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--ink);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(43, 37, 32, 0.15);
}

/* ───────────────────────── BOOKING CTA ───────────────────────── */
.booking {
  background: var(--terracotta-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245, 239, 229, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 155, 60, 0.15), transparent 40%);
}
.booking-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.booking h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 900px;
  margin: 1.5rem auto 2rem;
}
.booking h2 .italic { font-family: var(--f-serif); font-style: italic; font-weight: 300; color: var(--cream); }
.booking .eyebrow { color: var(--stone); justify-content: center; }
.booking .eyebrow::before, .booking .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--stone);
  display: inline-block;
}
.booking .eyebrow::before { margin-right: 0.75rem; }

.booking .lead {
  color: rgba(245, 239, 229, 0.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.booking-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-actions .btn { color: var(--cream); }
.booking-actions .btn:hover { color: var(--ink); }
.booking-actions .btn-filled {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.booking-actions .btn-filled::before { background: var(--ochre); }
.booking-actions .btn-filled:hover { color: var(--ink); border-color: var(--ochre); }

.booking-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 239, 229, 0.2);
  flex-wrap: wrap;
}
.booking-trust .ti .num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.3rem;
}
.booking-trust .ti .lb {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.7);
}

/* ───────────────────────── FAQ ───────────────────────── */
.faq {
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: flex-start;
}
.faq-intro h2 { margin: 1.25rem 0 1.5rem; }
.faq-intro .lead { margin-bottom: 1.5rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--terracotta); }
.faq-q .plus {
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease);
}
.faq-q .plus::before { width: 12px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--ink); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--cream); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
}

/* ───────────────────────── FOOTER ───────────────────────── */
footer {
  background: var(--ink);
  color: rgba(245, 239, 229, 0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .brand-mark {
  color: var(--cream);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.footer-brand .brand-tag {
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  color: rgba(245, 239, 229, 0.65);
  max-width: 380px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 239, 229, 0.2);
  display: grid;
  place-items: center;
  color: rgba(245, 239, 229, 0.7);
  transition: all 0.4s var(--ease);
}
.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(245, 239, 229, 0.65);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(245, 239, 229, 0.55);
}
.footer-bottom a:hover { color: var(--cream); }

/* ───────────────────────── REVEAL ON SCROLL ───────────────────────── */
/* Only hide reveals when JS is active (js-ready class added on DOMContentLoaded).
   Without this, users with JS off or full-page captures never see the content. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js-ready .reveal.in { opacity: 1; transform: translateY(0); }
.js-ready .reveal-delay-1 { transition-delay: 0.1s; }
.js-ready .reveal-delay-2 { transition-delay: 0.2s; }
.js-ready .reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ───────────────────────── ROOM MODAL ───────────────────────── */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.room-modal.active { display: flex; animation: fadeIn 0.35s var(--ease); }
.room-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.room-modal-panel {
  position: relative;
  background: var(--cream);
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.room-modal-panel.wide { width: min(1100px, 100%); }
.room-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.room-modal-close:hover { background: var(--ink); color: var(--cream); }
.room-modal-header { margin-bottom: 1.75rem; padding-right: 3rem; }
.room-modal-header .eyebrow { margin-bottom: 0.85rem; }
.room-modal-header h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
}
.room-amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.room-amenity-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.room-amenity-list li:last-child { border-bottom: none; }
.room-amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}
@media (min-width: 720px) {
  .room-amenity-list { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
}

.room-before-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.room-before-grid figure {
  margin: 0;
  background: var(--cream-deep);
  overflow: hidden;
  cursor: zoom-in;
}
.room-before-grid img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease);
}
.room-before-grid figure:hover img { transform: scale(1.04); }
.room-before-empty {
  padding: 1.5rem;
  background: var(--cream-soft);
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

/* ───────────────────────── LIGHTBOX ───────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(245, 239, 229, 0.3);
  color: var(--cream);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  z-index: 210;
}
.lightbox-close:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-meta-grid { max-width: 560px; }
  .scroll-hint { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .room, .room.reverse { grid-template-columns: 1fr; }
  .room.reverse .room-media { order: 0; }
  .room.reverse .room-body { order: 1; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .exp-1, .exp-5 { grid-column: auto; grid-row: auto; }
  .gallery-grid { columns: 3; }
  .location-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner > .lang-switcher,
  .nav-inner > .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand-mark { font-size: 1.35rem; }
  .brand-tag { font-size: 0.55rem; letter-spacing: 0.25em; }
  .hero {
    min-height: auto;
    min-height: 88vh;
    min-height: 88dvh;
    padding-top: 7rem;
    padding-bottom: 2.5rem;
  }
  /* On mobile, switch the contained image back to cover so the photo fills
     the hero (slight side crop) instead of leaving cream bands. */
  .hero-bg img {
    object-fit: cover;
    object-position: center;
  }
  .hero-content { gap: 2rem; }
  .hero-tag { display: none; }
  .hero-title h1 { font-size: 2.8rem; }
  .hero-meta-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.5rem; }
  .hero-meta-item .value { font-size: 1.15rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .about-stats .stat .num { font-size: 1.9rem; }
  .amenity-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; column-gap: 0.5rem; }
  .gallery-item { margin-bottom: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-trust { gap: 2rem; }
}

/* ───────────────────────── BEFORE / AFTER ───────────────────────── */
.restoration { background: var(--cream-soft); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: 3.5rem;
}
.ba-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
}
.ba-pair::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(245, 239, 229, 0.65);
  z-index: 3;
  transform: translateX(-0.5px);
}
.ba-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ba-card:hover .ba-frame img { transform: scale(1.03); }
.ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  background: rgba(26, 22, 18, 0.75);
  padding: 0.35rem 0.65rem;
  backdrop-filter: blur(6px);
}
.ba-tag.ba-after {
  background: var(--terracotta-deep);
}
.ba-card figcaption h3 {
  margin-bottom: 0.5rem;
}
.ba-card figcaption p {
  font-size: 0.98rem;
}
@media (max-width: 1024px) {
  .ba-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .ba-frame { aspect-ratio: 3 / 4; }
  .ba-tag { font-size: 0.58rem; padding: 0.3rem 0.55rem; }
}

/* ───────────────────────── SCROLL TO TOP ───────────────────────── */
.to-top {
  position: fixed;
  right: clamp(1.25rem, 2.5vw, 2rem);
  bottom: clamp(1.25rem, 2.5vw, 2rem);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
              visibility 0.35s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(26, 22, 18, 0.25);
}
.to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
}
.to-top:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 700px) {
  .to-top { width: 46px; height: 46px; }
  .to-top svg { width: 16px; height: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity 0.2s linear, visibility 0.2s linear; transform: none; }
  .to-top.visible { transform: none; }
  .to-top:hover { transform: none; }
}

/* ───────────────────────── LANGUAGE SWITCHER ───────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
}
.lang-btn {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.55);
  padding: 0.25rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-btn .fi {
  width: 22px;
  height: 16px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.lang-btn.lang-active .fi {
  opacity: 1;
  transform: scale(1.08);
}
.lang-btn:hover .fi { opacity: 0.9; }
@media (max-width: 720px) {
  .lang-switcher { margin-right: 0.25rem; gap: 0.4rem; }
  .lang-btn { padding: 0.2rem; }
  .lang-btn .fi { width: 20px; height: 14px; }
}
.mobile-menu-lang { gap: 0.75rem; }
.mobile-menu-lang .lang-btn .fi { width: 28px; height: 20px; }

/* ───────────────────────── MOBILE MENU DRAWER ───────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-inner {
  min-height: 100%;
  padding: 6rem clamp(1.5rem, 6vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.mobile-nav-links a {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.mobile-nav-links a:hover { border-bottom-color: var(--ink); }
.mobile-menu-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.mobile-menu-lang .lang-btn { padding: 0.3rem; }
.mobile-menu-lang .lang-btn .fi { width: 28px; height: 20px; }
.mobile-menu-book {
  align-self: flex-start;
  color: var(--ink);
  border-color: var(--ink);
}
.mobile-menu-book::before { background: var(--ink); }
.mobile-menu-book:hover { color: var(--cream); }

/* Open state */
body.nav-open { overflow: hidden; }
body.nav-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0s;
}

/* When drawer is open: drawer covers everything below the nav-inner.
   Keep the nav above the drawer (transparent) so the hamburger stays clickable
   and the brand stays visible at the top of the cream drawer. */
body.nav-open .nav {
  z-index: 120;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
body.nav-open .brand-mark { color: var(--ink); }
body.nav-open .brand-tag { color: var(--muted); }
body.nav-open .nav-toggle span { background: var(--ink); }

/* Hamburger → X */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Only show the drawer on small screens */
@media (min-width: 721px) {
  .mobile-menu { display: none !important; }
}
