/* ==========================================================================
   AlpenStudio – im Zentrum von Fulpmes
   ========================================================================== */

:root {
  --forest-950: #17231b;
  --forest-900: #1f3024;
  --forest-800: #2b4132;
  --forest-700: #3b5942;
  --forest-600: #4d7357;
  --wood: #a9713f;
  --wood-light: #c99257;
  --cream: #faf6ee;
  --cream-soft: #f1ead9;
  --ink: #2a2620;
  --muted: #736b5c;
  --line: #e8dfc9;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 3px 14px rgba(23, 35, 27, .08);
  --shadow-md: 0 14px 36px rgba(23, 35, 27, .14);
  --shadow-lg: 0 26px 64px rgba(23, 35, 27, .26);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wood);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--wood); display: inline-block; }

.lede { color: var(--muted); font-size: 1.06rem; max-width: 620px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: .96rem; border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--forest-700); color: #fff; box-shadow: 0 12px 26px rgba(59,89,66,.35); }
.btn-primary:hover { background: var(--forest-600); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(59,89,66,.42); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--forest-700); color: var(--forest-800); }
.btn-outline:hover { background: var(--forest-700); color: #fff; transform: translateY(-2px); }

/* header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 32px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled { padding: 20px 0; background: rgba(250,246,238,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img {
  mix-blend-mode: screen;
  filter: invert(1);
  transition: filter .35s var(--ease), mix-blend-mode .35s var(--ease);
}
.site-header.is-scrolled .brand img {
  mix-blend-mode: multiply;
  filter: none;
}
.brand svg { width: 30px; height: 30px; color: #fff; transition: color .35s var(--ease); }
.site-header.is-scrolled .brand svg { color: var(--forest-800); }
.brand-text { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.2rem; color: #fff; white-space: nowrap; transition: color .35s var(--ease); }
.site-header.is-scrolled .brand-text { color: var(--forest-900); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-size: 1.02rem; font-weight: 600; color: #fff; position: relative; padding: 8px 0; white-space: nowrap; transition: color .35s var(--ease); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--wood-light); transition: right .3s var(--ease); }
.main-nav a:hover::after { right: 0; }
.site-header.is-scrolled .main-nav a { color: var(--forest-900); }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-cta .btn-primary { padding: 15px 28px; font-size: .98rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); background: transparent;
  align-items: center; justify-content: center; cursor: pointer;
}
.site-header.is-scrolled .nav-toggle { border-color: var(--line); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: #fff; position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span, .site-header.is-scrolled .nav-toggle span::before, .site-header.is-scrolled .nav-toggle span::after { background: var(--forest-900); }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; background: var(--forest-950); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(23,35,27,.92) 22%, rgba(23,35,27,.66) 55%, rgba(23,35,27,.38) 100%); }
.hero-watermark {
  position: absolute;
  top: 24px; right: 4%;
  width: min(30vw, 380px);
  z-index: 1;
  opacity: 0;
  filter: invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  animation: watermark-fade 1.6s var(--ease) .3s forwards;
}
@keyframes watermark-fade { from { opacity: 0; transform: scale(.96); } to { opacity: .3; transform: scale(1); } }

.page-hero .hero-watermark { top: 6px; }
@keyframes watermark-fade-soft { from { opacity: 0; transform: scale(.96); } to { opacity: .3; transform: scale(1); } }
.page-hero .hero-watermark { animation: watermark-fade-soft 1.6s var(--ease) .3s forwards; }
.hero-content { position: relative; z-index: 2; padding-top: 155px; padding-bottom: 90px; max-width: 700px; }
.hero .eyebrow { color: var(--wood-light); }
.hero .eyebrow::before { background: var(--wood-light); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); margin-top: .3em; color: #fff; }
.hero h1 em { font-style: normal; color: var(--wood-light); }
.hero p.lede { color: rgba(255,255,255,.8); font-size: 1.14rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 30px; padding: 12px 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-rating .score { font-family: "Fraunces", serif; font-weight: 700; font-size: 1.3rem; color: var(--wood-light); }
.hero-rating span { font-size: .84rem; color: rgba(255,255,255,.8); }

.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; z-index: 2; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0%{transform:scaleY(0);transform-origin:top;opacity:0;} 40%{transform:scaleY(1);transform-origin:top;opacity:1;} 60%{transform:scaleY(1);transform-origin:bottom;opacity:1;} 100%{transform:scaleY(0);transform-origin:bottom;opacity:0;} }

/* trust strip */
.trust-strip { background: var(--forest-900); padding: 54px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 16px; color: #fff; }
.trust-icon { flex: none; width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(155deg, var(--forest-700), var(--forest-800)); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--wood-light); }
.trust-icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; font-size: .82rem; color: rgba(255,255,255,.55); }

/* sections */
section { position: relative; }
.section { padding: 104px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-soft { background: var(--cream-soft); }

/* split about */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item svg { flex: none; width: 22px; height: 22px; color: var(--wood); margin-top: 2px; }
.feature-item strong { display: block; font-size: .96rem; }
.feature-item span { color: var(--muted); font-size: .86rem; }

/* amenities grid */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amenity-card .icon { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 14px; background: var(--cream-soft); display: flex; align-items: center; justify-content: center; color: var(--forest-700); }
.amenity-card .icon svg { width: 22px; height: 22px; }
.amenity-card strong { display: block; font-size: .9rem; }

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* quote banner */
.quote-banner { background: var(--forest-950); color: #fff; padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.quote-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(169,113,63,.16), transparent 55%), radial-gradient(circle at 80% 80%, rgba(169,113,63,.12), transparent 55%); }
.quote-banner .container { position: relative; z-index: 1; max-width: 780px; }
.quote-mark { font-family: "Fraunces", serif; font-size: 3.8rem; color: var(--wood-light); line-height: 1; margin-bottom: 8px; }
.quote-banner p.quote { font-size: 1.4rem; font-family: "Fraunces", serif; font-weight: 500; color: #fff; margin-bottom: 18px; }
.quote-banner .attribution { color: rgba(255,255,255,.55); font-size: .9rem; }

.quote-carousel { position: relative; min-height: 160px; }
.quote-slide {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility 0s linear .6s;
}
.quote-slide.is-active {
  position: relative;
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.quote-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.28); cursor: pointer; padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.quote-dots button.is-active { background: var(--wood-light); transform: scale(1.3); }

/* reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--wood); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: .94rem; color: var(--ink); margin: 0 0 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--forest-700); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .84rem; flex: none; }
.review-author strong { display: block; font-size: .88rem; }
.review-author span { color: var(--muted); font-size: .78rem; }

/* location */
.location-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.location-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.location-item strong { font-size: .92rem; }
.location-item span { color: var(--wood); font-weight: 700; font-size: .86rem; white-space: nowrap; }

/* host section */
.host-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; display: flex; gap: 26px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.host-avatar { flex: none; width: 68px; height: 68px; border-radius: 50%; background: var(--forest-700); color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 700; }
.host-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.host-card .host-score { display: inline-flex; align-items: center; gap: 6px; background: var(--cream-soft); padding: 4px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--forest-800); margin-bottom: 14px; }
.host-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* booking / contact */
.booking { background: var(--forest-950); color: #fff; padding: 100px 0; }
.booking h2 { color: #fff; }
.booking .lede { color: rgba(255,255,255,.68); }
.booking-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.booking-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 40px; }
.booking-card dl { margin: 0; }
.booking-card dt { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 18px; }
.booking-card dt:first-child { margin-top: 0; }
.booking-card dd { margin: 4px 0 0; font-size: .98rem; }
.booking-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* footer */
.site-footer { background: var(--forest-950); color: rgba(255,255,255,.55); padding: 32px 0; border-top: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.site-footer::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'><path d='M0 200 L0 140 120 40 200 110 260 70 340 140 400 90 470 150 560 60 640 130 720 80 800 150 880 100 960 160 1040 90 1120 150 1200 110 1200 200 Z' fill='%231f3024'/></svg>");
  background-repeat: no-repeat; background-position: bottom; background-size: 100% 100%;
}
.footer-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .84rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(1){transition-delay:.05s;}
[data-reveal-stagger].is-visible > *:nth-child(2){transition-delay:.15s;}
[data-reveal-stagger].is-visible > *:nth-child(3){transition-delay:.25s;}
[data-reveal-stagger].is-visible > *:nth-child(4){transition-delay:.35s;}
[data-reveal-stagger].is-visible > *:nth-child(5){transition-delay:.45s;}
[data-reveal-stagger].is-visible > *:nth-child(6){transition-delay:.55s;}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(23,35,27,.94);
  display: none; align-items: center; justify-content: center; z-index: 2000; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 32px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; border: none; font-size: 1.4rem; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; border: none; font-size: 1.4rem; cursor: pointer; }
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }

/* Stubai Super Card partner section */
.supercard { background: linear-gradient(155deg, var(--cream-soft), #ecdfc0); }
.supercard-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.supercard-badge {
  position: relative; aspect-ratio: 8/5; border-radius: 20px; padding: 26px;
  background: linear-gradient(135deg, #2b4132 0%, #17231b 60%), linear-gradient(135deg, var(--wood-light), var(--wood));
  background-blend-mode: normal;
  background-image: linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%), radial-gradient(circle at 85% 15%, rgba(255,255,255,.18), transparent 45%), linear-gradient(155deg, var(--forest-800), var(--forest-950));
  color: #fff; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.supercard-badge::after {
  content: ""; position: absolute; right: -30px; bottom: -30px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,146,87,.35), transparent 70%);
}
.supercard-badge .card-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 1; }
.supercard-badge .card-name { font-family: "Fraunces", serif; font-weight: 700; font-size: 1.3rem; letter-spacing: .01em; position: relative; z-index: 1; }
.supercard-badge .card-tag {
  align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  padding: 6px 14px; position: relative; z-index: 1;
}
.supercard-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.supercard-list .feature-item svg { color: var(--forest-700); }

.supercard-badge--logo {
  background: #fff; background-image: none;
  align-items: center; justify-content: center; gap: 18px; text-align: center;
}
.supercard-badge--logo img { width: 55%; max-width: 190px; position: relative; z-index: 1; }
.supercard-badge--logo .card-tag {
  color: var(--forest-800); background: var(--cream-soft); border-color: var(--line);
}

/* responsive */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .split, .booking-grid, .supercard-grid { grid-template-columns: 1fr; gap: 36px; }
  .supercard-badge { max-width: 340px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 760px) {
  .main-nav, .header-cta .header-phone-link { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex; position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100vh;
    background: var(--forest-950); flex-direction: column; align-items: flex-start;
    padding: 110px 32px 40px; gap: 26px; box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open a { color: #fff; font-size: 1.05rem; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .hero-content { padding-top: 140px; }
  .host-card { flex-direction: column; }
}

.nav-scrim { position: fixed; inset: 0; background: rgba(23,35,27,.55); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 900; }
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* inner page hero */
.page-hero { background: var(--forest-950); color: #fff; padding: 192px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(169,113,63,.16), transparent 55%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero .lede { color: rgba(255,255,255,.72); }

.page-hero.has-photo { background-size: cover; background-position: center; }
.page-hero.has-photo::before { background: linear-gradient(115deg, rgba(23,35,27,.93) 20%, rgba(23,35,27,.72) 55%, rgba(23,35,27,.5) 100%); }

.cta-strip { background: var(--forest-950); color: #fff; padding: 90px 0; }
.cta-strip h2 { color: #fff; }
.cta-strip .lede { color: rgba(255,255,255,.65); }

/* cookie consent banner */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 3000;
  max-width: 640px; margin: 0 auto;
  background: var(--forest-950); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px 26px; display: flex; flex-direction: column; gap: 16px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.6; color: rgba(255,255,255,.78); }
.cookie-banner a { text-decoration: underline; color: #fff; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 22px; font-size: .88rem; }
.cookie-banner .btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* consent-gated embed placeholder (e.g. Google Maps) */
.embed-gate {
  width: 100%; height: 100%; min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: var(--cream-soft); color: var(--muted); text-align: center; padding: 24px;
}
.embed-gate p { margin: 0; font-size: .86rem; max-width: 340px; }
.embed-gate .btn { font-size: .88rem; padding: 11px 22px; }

/* inquiry form */
.inquiry-form { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; max-width: 460px; }
.inquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: flex; flex-direction: column; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--ink); }
.booking .inquiry-form label { color: rgba(255,255,255,.85); }
.inquiry-form input, .inquiry-form textarea {
  font: inherit; font-size: .96rem; font-weight: 400; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.inquiry-form input:focus, .inquiry-form textarea:focus {
  outline: none; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(77,115,87,.18);
}
.inquiry-form textarea { resize: vertical; min-height: 96px; }
.inquiry-form .btn { align-self: flex-start; border: none; cursor: pointer; }
.inquiry-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.inquiry-fallback { margin-top: 18px; font-size: .84rem; color: var(--muted); }
.inquiry-fallback a { text-decoration: underline; color: inherit; }
.booking .inquiry-fallback { color: rgba(255,255,255,.6); }
@media (max-width: 560px) {
  .inquiry-form .form-row { grid-template-columns: 1fr; }
}

/* language switcher */
.lang-switch {
  display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px; overflow: hidden; flex: none;
}
.lang-switch a {
  padding: 10px 14px; font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.75); transition: background .3s var(--ease), color .3s var(--ease);
}
.lang-switch a.is-active { background: #fff; color: var(--forest-900); }
.lang-switch a:not(.is-active):hover { color: #fff; }
.site-header.is-scrolled .lang-switch { border-color: var(--line); }
.site-header.is-scrolled .lang-switch a { color: var(--muted); }
.site-header.is-scrolled .lang-switch a.is-active { background: var(--forest-900); color: #fff; }

