/* ═══════════════════════════════════════════════════
   OLIVE HOME — Unified Stylesheet
   Luxury minimal · olive · sand · cream
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #f4efe6;
  --bg-alt: #ebe4d6;
  --ink: #1f2416;
  --ink-soft: #454b39;
  --muted: #7a7363;
  --olive: #5a6a3c;
  --olive-deep: #3b4726;
  --sand: #c8b896;
  --cream: #faf6ee;
  --line: rgba(31,36,22,0.12);
  --gold: #8a7a4a;
  --danger: #a8412c;

  /* Season accents */
  --spring: #9aae6f;
  --summer: #d6a85f;
  --autumn: #a86b3c;
  --winter: #6d8aa0;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
}

/* ───── PAGE VISIBILITY ───── */
.page { display: none; }
.page.active { display: block; animation: pageFade 0.6s cubic-bezier(0.2,0.8,0.2,1); }

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

/* ───── NAV ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(244,239,230,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.logo:hover { opacity: 0.75; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
nav.scrolled .logo-img { height: 38px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a.active { color: var(--olive-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--olive);
  transition: width 0.4s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--ink);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 49;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 28px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
}

/* ───── TYPOGRAPHY ───── */
h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--olive-deep);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
}
h2 em { font-style: italic; color: var(--olive-deep); font-weight: 300; }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--olive); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before { content: ""; width: 36px; height: 1px; background: var(--olive); }

/* ───── BUTTONS ───── */
.btn {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover:not(:disabled) { background: var(--olive-deep); transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }
.btn-ghost { color: var(--ink); border: 1px solid var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform 0.4s; }
.btn:hover:not(:disabled) .arrow { transform: translateX(6px); }

.cta-group { display: flex; gap: 20px; flex-wrap: wrap; }

/* ───── SECTIONS ───── */
section { padding: 140px 48px; position: relative; }

.watermark {
  position: absolute;
  top: 50%; right: -4%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 280px;
  color: rgba(90,106,60,0.05);
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
}

/* Imagotipo as watermark: uses the olive illustration */
.watermark-olive {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background-image: url("img/imagotipo-olive.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: floatGentle 12s ease-in-out infinite;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-48%) translateX(-10px); }
}

/* ───── HERO (shared) ───── */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero-text { position: relative; z-index: 2; }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-visual { position: relative; height: 80vh; min-height: 600px; }
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("img/hero-portada.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,36,22,0.28));
}
.hero-badge {
  position: absolute;
  bottom: -24px; left: -40px;
  background: var(--cream);
  padding: 24px 32px;
  border: 1px solid var(--line);
  z-index: 3;
  max-width: 240px;
}
.hero-badge .rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  line-height: 1;
  color: var(--olive-deep);
  font-weight: 400;
}
.hero-badge .rating-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.hero-badge .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ───── SEASON DIAL (angebote hero) ───── */
.season-dial {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  z-index: 1;
}
.season-dial::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: 1;
}
.season-dial::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-image: url("img/dial-couple.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  z-index: 1;
}
.season-dot {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(31,36,22,0.08);
}
.season-dot:hover {
  transform: scale(1.08);
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}
.dot-spring { top: -20px; left: 50%; transform: translateX(-50%); }
.dot-spring:hover { transform: translateX(-50%) scale(1.08); }
.dot-summer { right: -20px; top: 50%; transform: translateY(-50%); }
.dot-summer:hover { transform: translateY(-50%) scale(1.08); }
.dot-autumn { bottom: -20px; left: 50%; transform: translateX(-50%); }
.dot-autumn:hover { transform: translateX(-50%) scale(1.08); }
.dot-winter { left: -20px; top: 50%; transform: translateY(-50%); }
.dot-winter:hover { transform: translateY(-50%) scale(1.08); }
.season-dot .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
  transition: color 0.5s;
}
.season-dot:hover .label { color: var(--sand); }
.season-dot .name {
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  transition: color 0.5s;
}
.season-dot:hover .name { color: var(--cream); }

/* ───── INTRO ───── */
.intro {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.intro-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intro-gallery .img-wrap { overflow: hidden; aspect-ratio: 3 / 4; }
.intro-gallery .img-wrap:nth-child(2) { margin-top: 60px; }
.intro-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
  filter: saturate(0.9);
}
.intro-gallery .img-wrap:hover img { transform: scale(1.06); }

/* ───── FEATURES ───── */
.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.feature {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.feature:nth-child(1) { grid-column: 1 / 5; }
.feature:nth-child(2) { grid-column: 5 / 9; }
.feature:nth-child(3) { grid-column: 9 / 13; }
.feature:nth-child(4) { grid-column: 1 / 5; }
.feature:nth-child(5) { grid-column: 5 / 9; }
.feature:nth-child(6) { grid-column: 9 / 13; }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 20px;
}
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ───── LOCATION ───── */
.location {
  background: var(--olive-deep);
  color: var(--cream);
  overflow: hidden;
}
.location .section-label { color: var(--sand); }
.location .section-label::before { background: var(--sand); }
.location h2 { color: var(--cream); }
.location h2 em { color: var(--sand); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.location-text p {
  color: rgba(250,246,238,0.78);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.distance-list { list-style: none; margin-top: 40px; }
.distance-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(250,246,238,0.12);
  font-size: 15px;
}
.distance-list li:last-child { border-bottom: 1px solid rgba(250,246,238,0.12); }
.distance-list .place { color: var(--cream); }
.distance-list .dist {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
}

/* ───── ROOMS ───── */
.rooms {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rooms-img {
  aspect-ratio: 4/5;
  background-image: url("img/gallery/habitacion-principal.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.rooms-list { list-style: none; margin-top: 36px; }
.rooms-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 16px;
  color: var(--ink-soft);
}
.rooms-list li:last-child { border-bottom: 1px solid var(--line); }
.rooms-list .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--olive);
  min-width: 30px;
}

/* ───── AMENITIES ───── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.amenity {
  padding: 50px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.amenity:nth-child(4n) { border-right: none; }
.amenity:hover { background: var(--bg-alt); }
.amenity-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--olive);
  margin-bottom: 20px;
  line-height: 1;
}
.amenity h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.amenity p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ───── GALLERY — Infinite Marquee Carousel ───── */
.gallery-section {
  padding: 140px 0;
  overflow: hidden;
}
.gallery-header {
  padding: 0 48px;
  margin-bottom: 70px;
}
.gallery-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 620px;
  margin-top: 24px;
}
.gallery-hint {
  text-align: center;
  margin-top: 50px;
  padding: 0 24px;
  font-size: 13px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee + .marquee { margin-top: 20px; }

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-left .marquee-track {
  animation: scrollLeft 70s linear infinite;
}
.marquee-right .marquee-track {
  animation: scrollRight 85s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-card {
  flex-shrink: 0;
  width: 420px;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s;
  filter: saturate(0.92);
  display: block;
}
.marquee-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
/* Subtle border accent on hover */
.marquee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}
.marquee-card:hover::after { border-color: rgba(250,246,238,0.35); }

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-left .marquee-track,
  .marquee-right .marquee-track {
    animation: none;
  }
  .marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .marquee-card { scroll-snap-align: start; }
}

/* ───── PRICES ───── */
.prices {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.price-cards { display: grid; gap: 24px; }
.price-card {
  padding: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all 0.4s;
}
.price-card:hover { border-color: var(--olive); transform: translateX(6px); }
.price-card.featured {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}
.price-card .season {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}
.price-card .months {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card.featured .months { color: var(--sand); }
.price-card .price-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
}
.price-card.featured .price-note { color: var(--sand); }
.price-info { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.price-info p { margin-bottom: 20px; }

/* ───── TESTIMONIALS ───── */
.testimonials {
  background: var(--ink);
  color: var(--cream);
}
.testimonials .section-label { color: var(--sand); }
.testimonials .section-label::before { background: var(--sand); }
.testimonials h2 { color: var(--cream); }
.testimonials h2 em { color: var(--sand); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 80px 0 100px;
  border-top: 1px solid rgba(250,246,238,0.15);
  border-bottom: 1px solid rgba(250,246,238,0.15);
  padding: 60px 0;
}
.stat { text-align: center; }
.stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.stat .number em { font-style: italic; color: var(--sand); }
.stat .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
  margin-top: 14px;
}
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.quote {
  padding: 36px 0;
  border-top: 1px solid rgba(250,246,238,0.15);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 60px;
  line-height: 0.5;
  color: var(--sand);
  margin-bottom: 20px;
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}
.quote cite {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
}

/* ───── CTA BLOCK ───── */
.cta-block {
  text-align: center;
  padding: 180px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.cta-block h2 { max-width: 900px; margin: 0 auto 32px; }
.cta-block p {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   ANGEBOTE — Specific
   ═══════════════════════════════════════════════════ */

.promos { background: var(--bg-alt); }
.promos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.promos-header p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 480px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.promo-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
  overflow: hidden;
}
.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--olive);
  box-shadow: 0 24px 50px -20px rgba(31,36,22,0.18);
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.promo-card:hover::before { transform: scaleX(1); }
.promo-ratio {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.promo-ratio .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  color: var(--olive-deep);
  letter-spacing: -0.02em;
}
.promo-ratio .plus {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--olive);
}
.promo-ratio .free {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.promo-card h3 { margin-bottom: 16px; }
.promo-card .promo-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.promo-list {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.promo-list li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.promo-list li::before { content: "✓"; color: var(--olive); font-weight: 500; }
.promo-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--olive-deep);
  color: var(--cream);
  padding: 6px 12px;
}

/* Seasons editorial stack */
.seasons-intro { max-width: 800px; margin-bottom: 80px; }
.seasons-intro p { font-size: 17px; color: var(--ink-soft); line-height: 1.8; }

.season-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.season-block:first-of-type { border-top: none; padding-top: 0; }
.season-block:nth-child(even) .season-visual { order: -1; }

.season-meta {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.season-meta::before { content: ""; width: 36px; height: 1px; }
.season-block.spring .season-meta { color: var(--spring); }
.season-block.spring .season-meta::before { background: var(--spring); }
.season-block.summer .season-meta { color: var(--summer); }
.season-block.summer .season-meta::before { background: var(--summer); }
.season-block.autumn .season-meta { color: var(--autumn); }
.season-block.autumn .season-meta::before { background: var(--autumn); }
.season-block.winter .season-meta { color: var(--winter); }
.season-block.winter .season-meta::before { background: var(--winter); }

.season-block h2 { margin-bottom: 28px; }
.season-intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.season-perks { list-style: none; margin-bottom: 40px; }
.season-perks li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}
.season-perks li:last-child { border-bottom: 1px solid var(--line); }
.season-perks .perk-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--olive);
}
.season-perks .perk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.season-perks .perk-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.season-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.season-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
}
.season-visual:hover img { transform: scale(1.05); }
.season-visual .corner-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--cream);
  padding: 16px 22px;
  border: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--olive-deep);
}
.season-visual .corner-badge strong {
  display: block;
  font-style: normal;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}

/* Summary cards */
.summary { background: var(--bg-alt); }
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.summary-card {
  background: var(--cream);
  padding: 40px 28px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.4s;
}
.summary-card:hover { border-color: var(--olive); transform: translateY(-4px); }
.summary-card .season-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 16px;
}
.summary-card.s1 .season-name { color: var(--spring); }
.summary-card.s2 .season-name { color: var(--summer); }
.summary-card.s3 .season-name { color: var(--autumn); }
.summary-card.s4 .season-name { color: var(--winter); }
.summary-card .offer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.summary-card .note {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   KONTAKT — Form page
   ═══════════════════════════════════════════════════ */

.contact-hero {
  padding: 180px 48px 80px;
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}
.contact-hero-inner {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.contact-hero h1.hero-title {
  font-size: clamp(48px, 6.5vw, 96px);
}

.contact-section {
  padding: 100px 48px 140px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* Info sidebar */
.contact-info { position: sticky; top: 120px; }
.info-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.info-block:last-child { border-bottom: 1px solid var(--line); }
.info-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-value, .info-value-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.4;
}
.info-value:hover { color: var(--olive-deep); }

/* Direct booking card in contact sidebar */
.direct-booking-card {
  margin-top: 40px;
  padding: 32px 28px;
  background: var(--olive-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.direct-booking-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background-image: url("img/imagotipo-white.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.direct-booking-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}
.direct-booking-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 12px;
}
.direct-booking-card p {
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.direct-booking-card .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
  font-size: 11px;
  padding: 14px 24px;
}
.direct-booking-card .btn-ghost:hover {
  background: var(--cream);
  color: var(--olive-deep);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 60px;
  border: 1px solid var(--line);
  position: relative;
}
.form-header {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.form-step {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.form-section { margin-bottom: 48px; }
.form-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label,
.field-label-block {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.req { color: var(--danger); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--olive-deep);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid var(--line);
  padding: 14px;
}
.form-field textarea:focus { border-color: var(--olive-deep); }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6a3c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: var(--danger);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

/* Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  color: var(--ink-soft);
  user-select: none;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--olive); }
.chip:has(input:checked) {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}

/* Checkboxes */
.checkbox-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-line input[type="checkbox"] {
  margin-top: 4px;
  width: 16px; height: 16px;
  accent-color: var(--olive-deep);
  flex-shrink: 0;
}
.checkbox-line a { color: var(--olive-deep); text-decoration: underline; }

/* Submit */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.show { display: block; animation: fadeUp 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--olive-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.form-success h3 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--olive-deep);
}
.form-success p {
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 12px;
}
.success-small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px !important;
}
.form-submit-row.hidden,
.form-section.hidden,
.form-header.hidden { display: none; }

/* Trust bar */
.trust-bar {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.trust-num em { font-style: italic; color: var(--sand); }
.trust-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.7);
  line-height: 1.6;
}

/* ───── FOOTER ───── */
footer {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 100px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,238,0.15);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.footer-logo:hover { opacity: 0.8; }
.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(250,246,238,0.75);
  max-width: 340px;
  margin-bottom: 28px;
}
.footer-contact p {
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  margin-bottom: 8px;
}
.footer-contact a { color: var(--sand); text-decoration: none; }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(250,246,238,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250,246,238,0.5);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(250,246,238,0.5); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--sand); }

/* ───── ANIMATIONS ───── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2,0.8,0.2,1), transform 1s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 1s cubic-bezier(0.2,0.8,0.2,1) both; }
.hero-text .eyebrow { animation-delay: 0.1s; }
.hero-text h1 { animation-delay: 0.25s; }
.hero-text .hero-sub { animation-delay: 0.45s; }
.hero-text .cta-group { animation-delay: 0.6s; }
.hero-visual,
.season-dial { animation: fadeUp 1.2s cubic-bezier(0.2,0.8,0.2,1) 0.3s both; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-info { position: static; }
}

@media (max-width: 960px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .logo-img { height: 38px; }
  nav.scrolled .logo-img { height: 32px; }
  .footer-logo-img { height: 60px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-visual { height: 60vh; min-height: 400px; }
  .hero-badge { left: 0; bottom: -20px; padding: 18px 22px; }
  .season-dial { max-width: 360px; margin: 0 auto; }
  .season-dot { width: 90px; height: 90px; }
  .season-dot .name { font-size: 18px; }
  .watermark { font-size: 140px; right: -20px; }

  section { padding: 90px 24px; }
  .contact-hero { padding: 140px 24px 60px; }
  .contact-section { padding: 60px 24px 100px; }

  .intro, .rooms, .prices { grid-template-columns: 1fr; gap: 50px; }
  .features { grid-template-columns: 1fr; gap: 0; }
  .feature:nth-child(n) { grid-column: 1 / -1; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenity:nth-child(2n) { border-right: none; }
  .amenity:nth-child(4n) { border-right: 1px solid var(--line); }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Gallery marquee mobile adjustments */
  .gallery-section { padding: 90px 0; }
  .gallery-header { padding: 0 24px; margin-bottom: 50px; }
  .marquee-card { width: 280px; height: 200px; }
  .marquee-track { gap: 14px; }
  .marquee-left .marquee-track { animation-duration: 45s; }
  .marquee-right .marquee-track { animation-duration: 55s; }

  .stats-row { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .quotes { grid-template-columns: 1fr; gap: 40px; }

  .promos-header { grid-template-columns: 1fr; gap: 40px; }
  .season-block { grid-template-columns: 1fr; gap: 40px; padding: 70px 0; }
  .season-block:nth-child(even) .season-visual { order: 0; }
  .summary-grid { grid-template-columns: 1fr 1fr; }

  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 28px; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px; }
  .trust-num { font-size: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 24px 60px; }
  footer { padding: 80px 0 40px; }
  .footer-bottom { padding: 40px 24px 0; }
  .footer-col:first-child { grid-column: 1 / -1; padding: 0 24px; }
  .footer-col:not(:first-child) { padding: 0 24px; }

  .cta-block { padding: 100px 24px; }
}

@media (max-width: 560px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity { border-right: none !important; }
  .summary-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { padding: 16px 24px; font-size: 11px; }
  .season-dial { max-width: 280px; }
  .season-dot { width: 70px; height: 70px; }
  .season-dot .label { font-size: 9px; }
  .season-dot .name { font-size: 14px; }
  .trust-bar { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (Cookies / Datenschutz)
   ═══════════════════════════════════════════════════ */

.legal-page {
  background: var(--bg);
  padding: 140px 48px 120px;
  min-height: 100vh;
  position: relative;
}
.legal-page::before {
  content: "";
  position: absolute;
  top: 120px; right: 0;
  width: 460px; height: 460px;
  background-image: url("img/imagotipo-olive.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 36px;
}
.legal-title em {
  font-style: italic;
  color: var(--olive-deep);
  font-weight: 300;
}

.legal-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 60px;
  max-width: 720px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.legal-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--olive-deep);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}
.legal-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 36px 0 14px;
}
.legal-wrap p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.legal-wrap strong {
  color: var(--ink);
  font-weight: 500;
}
.legal-wrap ul {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 0;
}
.legal-wrap ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-wrap ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.legal-wrap a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}
.legal-wrap a:hover {
  text-decoration-color: var(--olive);
}

/* Info grid for Impressum data */
.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0 50px;
  padding: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.legal-info-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.legal-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.legal-info-value a {
  text-decoration: none;
  color: var(--olive-deep);
}

.legal-address {
  padding: 20px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--olive);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  margin: 24px 0 !important;
  color: var(--ink) !important;
}

/* Table */
.legal-table-wrap {
  overflow-x: auto;
  margin: 30px 0 40px;
  border: 1px solid var(--line);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
}
.legal-table th,
.legal-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
}
.legal-table th {
  background: var(--olive-deep);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.legal-table td {
  color: var(--ink-soft);
}
.legal-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--olive-deep);
  font-size: 16px;
}
.legal-table tr:last-child td {
  border-bottom: none;
}

/* Highlighted note block */
.legal-note {
  margin: 60px 0 40px;
  padding: 32px 40px;
  background: var(--olive-deep);
  color: var(--cream);
}
.legal-note p {
  color: rgba(250,246,238,0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-note p:last-child { margin-bottom: 0; }
.legal-note strong { color: var(--cream); }
.legal-note a {
  color: var(--sand);
  text-decoration: underline;
  text-decoration-color: rgba(200,184,150,0.4);
}
.legal-note a:hover { text-decoration-color: var(--sand); }

/* Legal footer nav (buttons at bottom of legal pages) */
.legal-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .legal-page { padding: 100px 24px 80px; }
  .legal-info-grid {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
  .legal-note { padding: 24px; margin: 40px 0 30px; }
  .legal-table th,
  .legal-table td { padding: 12px 14px; font-size: 13px; }
  .legal-wrap h2 { font-size: 28px; margin: 40px 0 16px; }
  .legal-page::before { display: none; }
  .legal-footer-nav { flex-direction: column; align-items: stretch; }
  .legal-footer-nav .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   FOOTER — Partner column + Sofortbuchung extended
   ═══════════════════════════════════════════════════ */

.footer-grid-extended {
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr !important;
}

.footer-col-partner {
  padding-left: 24px;
  border-left: 1px solid rgba(250,246,238,0.15);
}
.partner-intro {
  font-size: 12px;
  color: rgba(250,246,238,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}
.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 6px;
}
.partner-legal {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(250,246,238,0.5);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,246,238,0.12);
}
.partner-links { list-style: none; padding: 0; margin: 0; }
.partner-links li { margin-bottom: 10px; }
.partner-links a {
  color: rgba(250,246,238,0.75) !important;
  font-size: 13px !important;
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
}
.partner-links a:hover {
  color: var(--sand) !important;
  transform: translateX(3px);
}

/* Sofortbuchung contact links inside contact sidebar card */
.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250,246,238,0.2);
}
.booking-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(250,246,238,0.08);
  border: 1px solid rgba(250,246,238,0.12);
  text-decoration: none !important;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.booking-link:hover {
  background: rgba(250,246,238,0.14);
  border-color: var(--sand);
  transform: translateX(3px);
}
.booking-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  filter: saturate(0.8);
}
.booking-link-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 3px;
}
.booking-link-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .footer-grid-extended {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-col-partner {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(250,246,238,0.15);
  }
}

@media (max-width: 560px) {
  .footer-grid-extended { grid-template-columns: 1fr !important; }
  .booking-link-value { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════
   LANGUAGE SWITCHER — desktop & mobile
   ═══════════════════════════════════════════════════ */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 20px;
  padding: 3px;
  border: 1px solid rgba(31, 36, 22, 0.15);
  border-radius: 999px;
  background: rgba(250, 246, 238, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

nav.scrolled .lang-switcher {
  background: rgba(250, 246, 238, 0.85);
  border-color: rgba(31, 36, 22, 0.12);
}

/* Transparent-hero variant (white) */
nav:not(.scrolled) .lang-switcher {
  background: rgba(31, 36, 22, 0.18);
  border-color: rgba(250, 246, 238, 0.25);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 5px 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--olive-deep);
  background: rgba(114, 115, 83, 0.08);
}

.lang-btn.active {
  color: var(--cream);
  background: var(--olive-deep);
  font-weight: 600;
}

.lang-btn.active:hover {
  background: var(--olive-deep);
  color: var(--cream);
}

.lang-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(31, 36, 22, 0.15);
  margin: 0 2px;
}

/* Transparent-hero variant colors */
nav:not(.scrolled) .lang-btn {
  color: rgba(250, 246, 238, 0.85);
}
nav:not(.scrolled) .lang-btn:hover {
  color: var(--cream);
  background: rgba(250, 246, 238, 0.15);
}
nav:not(.scrolled) .lang-btn.active {
  background: var(--cream);
  color: var(--olive-deep);
}
nav:not(.scrolled) .lang-sep {
  background: rgba(250, 246, 238, 0.25);
}

/* Hide separators when buttons have full pill look — they're redundant */
.lang-switcher .lang-sep {
  display: none;
}

/* Responsive: tighten on tablets/mobile */
@media (max-width: 900px) {
  .lang-switcher {
    margin-right: 12px;
    padding: 2px;
  }
  .lang-btn {
    min-width: 28px;
    padding: 4px 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

/* On very small screens the nav-links are hidden, so keep the lang-switcher visible next to the mobile toggle */
@media (max-width: 720px) {
  .lang-switcher {
    margin-right: 10px;
  }
}

/* ───── MOBILE MENU — language block ───── */
.mobile-lang {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}
.mobile-lang a {
  font-size: 13px;
  padding: 12px 22px;
  color: rgba(250, 246, 238, 0.7);
  border: 1px solid rgba(250, 246, 238, 0.2);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.02em;
}
.mobile-lang a:hover {
  color: var(--cream);
  border-color: var(--sand);
  background: rgba(250, 246, 238, 0.08);
}
.mobile-lang a.active {
  color: var(--olive-deep);
  background: var(--cream);
  border-color: var(--cream);
  font-weight: 500;
}

