/* ══════════════════════════════════════════════════════
   APARTMENT DIEL — Alpine Chalet Design
   ══════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────── */
:root {
  --forest:       #233226;
  --forest-mid:   #3a5540;
  --forest-light: #5a7d61;
  --stone:        #7c6e5e;
  --cream:        #f5ede0;
  --cream-warm:   #faf5ec;
  --warm-white:   #fdfaf6;
  --gold:         #c4a05a;
  --gold-light:   #dfc485;
  --text:         #1a2419;
  --text-soft:    #3a4d3c;
  --muted:        #697a6b;
  --line:         rgba(35, 50, 38, 0.14);
  --line-strong:  rgba(35, 50, 38, 0.26);
  --surface:      rgba(253, 250, 246, 0.92);
  --shadow-sm:    0 4px 18px rgba(22, 36, 24, 0.10);
  --shadow:       0 18px 52px rgba(22, 36, 24, 0.18);
  --shadow-lg:    0 36px 80px rgba(22, 36, 24, 0.24);
  --radius:       18px;
  --radius-lg:    28px;
  --anim:         260ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

p { margin: 0; line-height: 1.72; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Page shell ──────────────────────────────────────── */
.page-shell {
  width: 100%;
}

/* ══════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--anim), box-shadow var(--anim), transform var(--anim);
}

.site-header.scrolled {
  background: rgba(35, 50, 38, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(22, 36, 24, 0.38);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  min-height: 80px;
  padding: 0 28px 14px;
  gap: 12px;
}

/* Nav toggle — left */
.nav-toggle {
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  min-height: 36px;
  border-radius: 0;
  box-shadow: none;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  opacity: 0.92;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-label-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Brand — center */
.brand {
  justify-self: center;
  display: flex;
  align-items: flex-end;
}

.brand-logo {
  width: min(360px, 52vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.32));
}

/* Tools — right */
.header-tools {
  justify-self: end;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.88);
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--anim);
}

.header-contact-link:hover { color: var(--gold-light); }

.header-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.header-contact-text {
  font-size: 0.82rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-switch a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  transition: color var(--anim);
}

.lang-switch a:hover,
.lang-switch .is-active {
  color: #fff;
}

.lang-switch .is-active {
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
}

/* Dropdown nav */
.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 28px;
  width: min(300px, calc(100vw - 56px));
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(28, 42, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr;
  gap: 2px;
  z-index: 20;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  font-weight: 500;
  transition: background var(--anim), color var(--anim);
}

.site-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.mobile-only {
  display: none;
}

.site-nav-meta {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.site-nav-contact {
  display: block;
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.site-nav-langs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav-langs .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav-langs .lang-link.is-active {
  color: #fff;
  border-color: var(--gold-light);
  background: rgba(196, 160, 90, 0.12);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero-premium {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.9) brightness(0.82);
  opacity: 0;
  animation: heroCrossfade 56s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }
.hero-slide:nth-child(5) { animation-delay: 32s; }
.hero-slide:nth-child(6) { animation-delay: 40s; }
.hero-slide:nth-child(7) { animation-delay: 48s; }

@keyframes heroCrossfade {
  0%   { opacity: 0; }
  1.5% { opacity: 1; }
  11%  { opacity: 1; }
  16%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 25, 16, 0.32) 0%,
      rgba(15, 25, 16, 0.18) 42%,
      rgba(15, 25, 16, 0.56) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 4px 32px rgba(10, 18, 10, 0.52);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: rgba(255, 248, 236, 0.92);
  max-width: 52ch;
  margin: 0 auto 36px;
  text-shadow: 0 1px 12px rgba(10, 18, 10, 0.48);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-facts li {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 180, 0.36);
  background: rgba(15, 25, 16, 0.48);
  backdrop-filter: blur(6px);
  color: rgba(255, 245, 228, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ── Buttons ─────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: none;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 8px 24px rgba(196, 160, 90, 0.40);
}

.button-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(196, 160, 90, 0.52);
}

.button-secondary {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.42);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.22);
}

.button-outline {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--text);
}

.button-outline:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.button-forest {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.button-forest:hover {
  background: var(--forest-mid);
}

/* ── Eyebrow / kicker ────────────────────────────────── */
.eyebrow, .card-kicker {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 54ch;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.96;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════════
   CTA STRIP (3 cards after hero)
   ══════════════════════════════════════════════════════ */
.home-cta-strip {
  background: var(--forest);
  padding: 0;
}

.home-cta-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.home-cta-card {
  display: block;
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--anim);
  position: relative;
  overflow: hidden;
}

.home-cta-card:last-child {
  border-right: 0;
}

.home-cta-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--anim);
}

.home-cta-card:hover::before {
  transform: scaleX(1);
}

.home-cta-card:hover {
  background: rgba(255,255,255,0.04);
}

.home-cta-card .card-kicker {
  color: var(--gold);
  margin-bottom: 8px;
}

.home-cta-card h3 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.08;
}

.home-cta-card .card-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.32);
  transition: color var(--anim), transform var(--anim);
}

.home-cta-card:hover .card-arrow {
  color: var(--gold);
  transform: translateX(5px);
}

/* ══════════════════════════════════════════════════════
   INTRO (welcome section)
   ══════════════════════════════════════════════════════ */
.intro {
  position: relative;
  background:
    linear-gradient(180deg, rgba(35, 50, 38, 0.08) 0%, rgba(35, 50, 38, 0) 120px),
    linear-gradient(180deg, #f7efe3 0%, var(--cream-warm) 100%);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 160, 90, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(90, 125, 97, 0.12), transparent 28%);
  pointer-events: none;
}

.intro .section-inner {
  position: relative;
}

.intro-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(35, 50, 38, 0.12);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(245, 237, 224, 0.96));
  box-shadow: 0 28px 70px rgba(22, 36, 24, 0.14);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(196, 160, 90, 0.2);
  pointer-events: none;
}

.intro-text .eyebrow {
  margin-bottom: 14px;
}

.intro-text h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 0.97;
  margin-bottom: 24px;
}

.intro-body {
  display: grid;
  gap: 16px;
}

.intro-body p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-image-stack {
  position: relative;
  height: 520px;
}

.intro-image-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-img-main {
  width: 78%;
  height: 90%;
  top: 0;
  right: 0;
}

.intro-img-accent {
  width: 52%;
  height: 54%;
  bottom: 0;
  left: 0;
  border: 4px solid var(--cream-warm);
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════════
   HIGHLIGHTS (3 feature cards)
   ══════════════════════════════════════════════════════ */
.highlights {
  background: var(--warm-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.highlight-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--anim), box-shadow var(--anim);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.highlight-card .card-kicker {
  margin-bottom: 6px;
}

.highlight-card h3 {
  font-size: 1.72rem;
  line-height: 1.06;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ══════════════════════════════════════════════════════
   AMENITIES GRID
   ══════════════════════════════════════════════════════ */
.amenities {
  background: var(--cream);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.amenity-grid article {
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--warm-white);
  transition: border-color var(--anim), transform var(--anim);
}

.amenity-grid article:hover {
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

.amenity-grid h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.amenity-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.gallery-preview-cta {
  margin-top: 36px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   GALLERY PREVIEW (bento grid)
   ══════════════════════════════════════════════════════ */
.gallery-preview {
  background: var(--forest);
  overflow: hidden;
}

.gallery-preview .section-heading h2,
.gallery-preview .section-heading p,
.gallery-preview .eyebrow {
  color: #fff;
}

.gallery-preview .eyebrow {
  color: var(--gold);
}

.gallery-preview .section-heading p {
  color: rgba(255,255,255,0.68);
}

.gallery-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 10px;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-bento figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-bento figure:first-child {
  grid-row: span 2;
}

.gallery-bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-bento figure:hover img {
  transform: scale(1.04);
}

.gallery-bento figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(0deg, rgba(10,18,10,0.62) 0%, transparent 100%);
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity var(--anim);
}

.gallery-bento figure:hover figcaption {
  opacity: 1;
}

.gallery-preview .gallery-preview-cta {
  margin-top: 36px;
}

.gallery-preview .button-outline {
  border-color: rgba(255,255,255,0.36);
  color: #fff;
}

.gallery-preview .button-outline:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}

/* ══════════════════════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════════════════════ */
.tour-video-section {
  background: linear-gradient(180deg, var(--warm-white) 0%, #efe6d8 100%);
}

.tour-video-section .section-inner {
  max-width: 940px;
}

.tour-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tour-video-card video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 700px);
  background: #000;
}

/* ══════════════════════════════════════════════════════
   INQUIRY CTA
   ══════════════════════════════════════════════════════ */
.inquiry {
  background: var(--warm-white);
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.inquiry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.inquiry-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.inquiry-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.inquiry-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════
   REVIEWS STRIP
   ══════════════════════════════════════════════════════ */
.reviews-strip {
  background: linear-gradient(180deg, #f6efdf 0%, var(--warm-white) 100%);
}

.reviews-strip-card {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.reviews-copy h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  margin-bottom: 6px;
}

.reviews-copy p {
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews-copy .text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--forest-mid);
  font-weight: 700;
  font-size: 0.88rem;
}

.reviews-platforms {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-platforms a {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  text-align: center;
  background: rgba(246, 238, 226, 0.72);
  transition: background var(--anim), color var(--anim), border-color var(--anim);
}

.reviews-platforms a:hover {
  color: var(--forest);
  background: rgba(223, 196, 133, 0.28);
  border-color: rgba(196, 160, 90, 0.5);
}

.reviews-widget-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  background: #fff;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 40px;
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}

.footer-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.site-footer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.72;
}

.site-footer a {
  color: rgba(255,255,255,0.72);
  transition: color var(--anim);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-consent-link {
  margin: 6px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.72);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--anim);
}

.footer-consent-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

.footer-analytics-status {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.56);
}

.footer-analytics-status strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   CONSENT BANNER
   ══════════════════════════════════════════════════════ */
.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(480px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid rgba(35, 50, 38, 0.2);
  background: rgba(253, 250, 246, 0.98);
  box-shadow: 0 24px 52px rgba(14, 22, 15, 0.28);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim), transform var(--anim);
}

.consent-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.consent-banner-inner {
  padding: 22px 22px 20px;
}

.consent-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-mid);
}

.consent-banner h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 10px;
}

.consent-banner p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.consent-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.consent-actions .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.consent-link {
  color: var(--forest-mid);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════════════ */
.reveal-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   GALLERY PAGE (galerie.html)
   ══════════════════════════════════════════════════════ */
.gallery-page-shell {
  padding-top: 80px;
}

.gallery-page {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 72px 0 80px;
}

.gallery-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(246, 238, 226, 0.95));
  box-shadow: var(--shadow-sm);
}

.gallery-overview-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.gallery-overview-copy p {
  color: var(--muted);
  max-width: 52ch;
}

.gallery-overview-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.gallery-overview-facts li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-mid);
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-overview-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.gallery-overview-media figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.gallery-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overview-main {
  grid-row: span 2;
}

.gallery-overview-main img {
  aspect-ratio: 4 / 5;
}

.gallery-overview-media figure:not(.gallery-overview-main) img {
  aspect-ratio: 4 / 3;
}

.gallery-page .section-heading {
  max-width: 72ch;
  margin-bottom: 48px;
}

.gallery-category {
  margin-bottom: 64px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.gallery-category-shell {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(35, 50, 38, 0.08);
  background: rgba(255, 252, 247, 0.74);
  box-shadow: var(--shadow-sm);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--warm-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--anim), box-shadow var(--anim);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card-large img {
  aspect-ratio: 4 / 5;
}

.gallery-card-featured {
  grid-column: span 2;
}

.gallery-card-featured img {
  aspect-ratio: 16 / 9;
}

.gallery-page .gallery-masonry {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-page .gallery-card {
  grid-column: span 4;
  border-radius: 24px;
}

.gallery-page .gallery-card-featured {
  grid-column: span 8;
}

.gallery-page .gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-page .gallery-card-featured img {
  aspect-ratio: 16 / 10;
}

/* ══════════════════════════════════════════════════════
   AUSSTATTUNG PAGE
   ══════════════════════════════════════════════════════ */
.amenities-page-shell {
  padding-top: 80px;
}

.amenities-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.amenities-page .section-heading {
  margin-bottom: 40px;
}

.amenities-list-card {
  padding: 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.amenities-list-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--forest);
}

.amenities-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.floorplan-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.floorplan-card img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
  object-fit: contain;
}

.floorplan-card figcaption {
  padding: 0 24px 24px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.subpage-intro-grid,
.subpage-photo-grid,
.booking-info-grid,
.booking-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.subpage-copy-card,
.subpage-photo-card,
.booking-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.subpage-copy-card,
.booking-side-card {
  padding: 28px;
}

.subpage-copy-card h2,
.booking-side-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.subpage-copy-card p,
.booking-side-card p {
  color: var(--muted);
}

.subpage-copy-card p + p,
.booking-side-card p + p {
  margin-top: 12px;
}

.subpage-photo-card {
  overflow: hidden;
}

.subpage-photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.subpage-photo-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.feature-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.feature-snapshot-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-snapshot-card h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.feature-snapshot-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.booking-side-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.booking-checklist {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--forest-mid);
  font-weight: 700;
}

.text-link:hover {
  color: var(--forest);
}

/* ══════════════════════════════════════════════════════
   BOOKING PAGE
   ══════════════════════════════════════════════════════ */
.booking-body .page-shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.booking-body .site-header {
  background: rgba(35, 50, 38, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.booking-page-wrapper {
  padding-top: 80px;
}

.booking-page {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.booking-page .section-heading {
  margin-bottom: 36px;
}

.booking-step {
  margin-bottom: 24px;
}

.booking-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.booking-step h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.booking-step p {
  color: var(--muted);
}

.booking-widget-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
  min-height: 720px;
  margin-bottom: 24px;
}

.booking-widget-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  gap: 16px;
  text-align: center;
  color: var(--muted);
}

.booking-widget-card.is-loaded .booking-widget-placeholder {
  display: none;
}

.booking-widget-card iframe {
  width: 100%;
  min-height: 820px;
  border: 0;
  background: #fff;
}

.booking-widget-card iframe,
.booking-widget-card div,
.booking-widget-card section {
  max-width: 100%;
}

.booking-calendar-card {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.booking-calendar-card h2 {
  margin: 6px 0 8px;
}

.booking-calendar-card p {
  color: var(--muted);
}

.booking-calendar-embed {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.booking-calendar-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}

.booking-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: start;
}

.booking-email-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.booking-body .site-footer {
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════ */
.legal-page-shell {
  padding-top: 80px;
}

.legal-page {
  width: min(72ch, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-section {
  padding: 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.legal-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--forest);
}

.legal-section p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 12px 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.68;
  font-size: 0.96rem;
}

.legal-section a {
  color: var(--forest-mid);
  text-decoration: underline;
  text-decoration-color: rgba(58, 85, 64, 0.3);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--forest);
  text-decoration-color: var(--forest);
}

.bank-details {
  margin-top: 16px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(35, 50, 38, 0.06);
  border: 1px solid var(--line);
}

.bank-details p {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.bank-details p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════ */
.zoomable-image { cursor: zoom-in; }

.lightbox-open { overflow: hidden; }

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 10, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: absolute;
  inset: 10px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.lightbox-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lightbox-counter {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.lightbox-close {
  min-height: 40px;
  min-width: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  transition: background var(--anim);
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
}

.lightbox--floorplan .lightbox-figure {
  background: #fff;
  padding: 24px;
}

.lightbox-image {
  max-width: min(94vw, 1400px);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 12px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(12, 20, 12, 0.48);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--anim), transform var(--anim);
}

.lightbox-nav:hover {
  background: rgba(12, 20, 12, 0.74);
}

.lightbox-nav-prev {
  left: 12px;
}

.lightbox-nav-next {
  right: 12px;
}

.lightbox-caption {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-size: 0.92rem;
  max-width: min(92vw, 900px);
}

@media (max-width: 800px) {
  .lightbox-panel {
    inset: 8px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .lightbox-nav-prev {
    left: 6px;
  }

  .lightbox-nav-next {
    right: 6px;
  }

  .lightbox-close {
    min-height: 36px;
    min-width: 36px;
    font-size: 1.2rem;
  }
}

/* ══════════════════════════════════════════════════════
   GALLERY PREVIEW GRID (old — kept for compatibility)
   ══════════════════════════════════════════════════════ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-overview {
    grid-template-columns: 1fr;
  }

  .gallery-overview-media {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-overview-main {
    grid-row: span 1;
    grid-column: span 2;
  }

  .gallery-overview-main img {
    aspect-ratio: 16 / 10;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 32px;
  }

  .intro-image-stack {
    height: 380px;
  }

  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
  }

  .gallery-bento figure:first-child {
    grid-row: span 2;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-page .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-page .gallery-card,
  .gallery-page .gallery-card-featured {
    grid-column: span 1;
  }

  .gallery-page .gallery-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .subpage-intro-grid,
  .subpage-photo-grid,
  .booking-info-grid,
  .booking-links-grid,
  .feature-snapshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .home-cta-strip .section-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .home-cta-card:last-child {
    border-bottom: 0;
  }

  .highlights-grid,
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .header-tools {
    gap: 12px;
  }

  .inquiry-content {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }

  .reviews-strip-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .reviews-actions {
    align-items: flex-start;
  }

  .reviews-platforms {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .reviews-widget-wrap {
    width: fit-content;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    border-radius: 12px;
  }

  .gallery-bento figure {
    height: 340px;
  }

  .gallery-bento figure:first-child {
    grid-column: span 1;
    grid-row: span 1;
    height: 380px;
  }

  .gallery-bento figcaption {
    opacity: 1;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-overview {
    display: none;
  }

  .gallery-category-shell {
    padding: 12px;
  }

  .gallery-overview {
    padding: 22px;
    margin-bottom: 36px;
  }

  .gallery-overview-media {
    grid-template-columns: 1fr;
  }

  .gallery-overview-main {
    grid-column: auto;
  }

  .gallery-overview-media img,
  .gallery-overview-main img,
  .gallery-page .gallery-card img,
  .gallery-page .gallery-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "toggle brand tools";
    align-items: center;
    padding: 10px 16px;
    min-height: auto;
    column-gap: 12px;
  }

  .nav-toggle {
    grid-area: toggle;
    align-self: center;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    align-self: center;
  }

  .header-tools {
    display: none;
  }

  .brand-logo {
    width: min(220px, 48vw);
  }

  .mobile-only {
    display: block;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 22px;
    font-size: 0.88rem;
  }

  .highlights-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .consent-banner-inner {
    padding: 18px;
  }

  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .subpage-hero {
    padding-top: 136px;
  }

  .subpage-hero-inner,
  .subpage-content-inner {
    width: calc(100% - 32px);
  }

  .subpage-copy-card,
  .booking-side-card,
  .amenities-list-card,
  .feature-snapshot-card {
    padding: 22px;
  }

  .reviews-copy h2 {
    font-size: 1.2rem;
  }

  .reviews-copy p {
    font-size: 0.88rem;
  }

  .booking-calendar-card {
    padding: 20px;
  }

  .booking-email-card {
    padding: 20px;
  }

  .booking-secondary-grid {
    grid-template-columns: 1fr;
  }

  .booking-calendar-embed iframe {
    height: 560px;
  }

}

@media (max-width: 420px) {
  .brand-logo {
    width: min(160px, 42vw);
  }

  .nav-label-text {
    display: none;
  }

  .site-nav {
    left: 16px;
    width: calc(100vw - 32px);
  }

  .booking-calendar-card {
    padding: 16px;
    border-radius: 12px;
  }

  .booking-email-card {
    padding: 16px;
    border-radius: 12px;
  }

  .booking-calendar-embed {
    border-radius: 10px;
  }

  .booking-calendar-embed iframe {
    height: 520px;
  }

}

/* ══════════════════════════════════════════════════════
   SUBPAGE HERO BANNER
   ══════════════════════════════════════════════════════ */
.subpage-hero {
  background: var(--forest);
  padding: 0 0 56px;
  padding-top: 160px;
}

.subpage-hero-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.subpage-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.subpage-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 14px;
}

.subpage-hero p {
  color: rgba(255,255,255,0.68);
  max-width: 62ch;
  font-size: 1.04rem;
}

/* Inner content sections on subpages */
.subpage-content {
  background: var(--cream-warm);
  padding: 64px 0 80px;
}

.subpage-content-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.subpage-content-inner.narrow {
  max-width: 860px;
}

.subpage-content-inner.legal {
  max-width: 72ch;
}

/* Subpages: header always dark (no hero behind it) */
body:not(.home) .site-header {
  background: rgba(35, 50, 38, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ══════════════════════════════════════════════════════
   GALLERY MOBILE OVERRIDES (final cascade layer)
   ══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .gallery-body .subpage-content-inner {
    width: calc(100% - 8px);
  }

  .gallery-page {
    width: 100%;
    padding: 18px 0 42px;
  }

  .gallery-category-shell {
    padding: 2px;
    border-radius: 10px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .gallery-category-title {
    font-size: clamp(1.2rem, 6.5vw, 1.45rem);
    margin: 0 4px 8px;
    padding-bottom: 6px;
  }

  .gallery-page .gallery-masonry {
    gap: 8px;
  }

  .gallery-page .gallery-card {
    border-radius: 10px;
    border-width: 1px;
  }

  .gallery-page .gallery-card img,
  .gallery-page .gallery-card-featured img {
    aspect-ratio: 4 / 3;
    min-height: clamp(220px, 64vw, 320px);
  }

  .gallery-page .gallery-card figcaption {
    padding: 6px 8px 8px;
    font-size: 0.78rem;
    line-height: 1.22;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .gallery-page {
    width: 100%;
    padding: 20px 0 40px;
  }

  .gallery-category-shell {
    padding: 0;
    border-radius: 8px;
  }

  .gallery-page .gallery-masonry {
    gap: 5px;
  }

  .gallery-page .gallery-card {
    border-radius: 8px;
  }

  .gallery-page .gallery-card img,
  .gallery-page .gallery-card-featured img {
    min-height: clamp(200px, 60vw, 270px);
  }

  .gallery-page .gallery-card figcaption {
    padding: 5px 7px 7px;
    font-size: 0.74rem;
  }
}
