/* ============================================================
   FONTS – self-hosted, DSGVO-compliant (no Google tracking)
   Download fonts by running: sh fonts/download-fonts.sh
   ============================================================ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/playfair-display-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/outfit-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-500.woff2') format('woff2');
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ink:        #1c1a18;
  --warm-dark:  #2e2a24;
  --terracotta: #b5622e;
  --terra-lt:   #d4855a;
  --sand:       #e8dcc8;
  --cream:      #f5f0e6;
  --stone:      #c4b49a;
  --mist:       #8a8278;
  --white:      #fdfaf5;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(245,240,230,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,180,154,0.3);
}
.logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: var(--ink); }
.logo em { font-style: italic; color: var(--terracotta); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-end { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch { display: flex; align-items: center; gap: 0.2rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.63rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mist);
  padding: 0.2rem 0.35rem; transition: color 0.2s; line-height: 1;
}
.lang-btn:hover { color: var(--terracotta); }
.lang-btn.active { color: var(--terracotta); border-bottom: 1px solid var(--terracotta); }
.lang-sep { color: var(--stone); font-size: 0.6rem; user-select: none; }
.nav-cta {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white);
  background: var(--terracotta); padding: 0.55rem 1.4rem;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--warm-dark); }

/* ============================================================
   BURGER
   ============================================================ */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.3rem; width: 2rem; height: 2rem;
}
.burger span {
  display: block; width: 100%; height: 1.5px; background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 199; background: var(--cream);
  flex-direction: column; justify-content: center; align-items: center; gap: 0;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; margin-bottom: 2.5rem; }
.mobile-menu ul li { border-bottom: 1px solid rgba(196,180,154,0.3); }
.mobile-menu ul li:first-child { border-top: 1px solid rgba(196,180,154,0.3); }
.mobile-menu ul a {
  display: block; font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  padding: 1.2rem 3rem; transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--terracotta); }
.mobile-menu .nav-cta { font-size: 0.72rem; letter-spacing: 0.17em; margin-bottom: 2rem; }
.mobile-menu .lang-switch { gap: 0.4rem; }
.mobile-menu .lang-btn { font-size: 0.7rem; padding: 0.3rem 0.5rem; color: var(--mist); }

/* ============================================================
   HERO
   ============================================================ */
.hero { height: 100vh; min-height: 640px; display: grid; grid-template-columns: 58% 42%; }
.hero-visual {
  position: relative; overflow: hidden;
  background: url('../images/sections/hero.webp') center/cover no-repeat;
}
.hero-license {
  position: absolute; top: 7.5rem; left: 2.5rem; z-index: 2;
  font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 0.8rem;
}
.hero-text {
  background: var(--cream); display: flex; flex-direction: column;
  justify-content: center; padding: 7rem 7% 5rem 8%; position: relative;
}
.hero-text::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--stone), transparent);
}
.eyebrow {
  font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before {
  content: ''; display: block; width: 2.2rem; height: 1px;
  background: var(--terracotta); flex-shrink: 0;
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 3.8vw, 3.7rem); font-weight: 400;
  line-height: 1.1; color: var(--ink); margin-bottom: 1.6rem;
}
h1 em { font-style: italic; color: var(--terracotta); }
.hero-intro { font-size: 0.97rem; line-height: 1.85; color: var(--mist); max-width: 430px; margin-bottom: 2.5rem; }
.hero-stats { display: flex; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); margin-bottom: 2.8rem; }
.hs { flex: 1; padding: 1.25rem 1rem; border-right: 1px solid var(--stone); }
.hs:last-child { border-right: none; }
.hs-n { font-family: 'Playfair Display', Georgia, serif; font-size: 2.1rem; color: var(--ink); line-height: 1; font-variant-numeric: lining-nums; }
.hs-l { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist); margin-top: 0.25rem; }
.btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.17em; text-transform: uppercase;
  padding: 0.9rem 2rem; text-decoration: none; transition: all 0.2s;
}
.btn-fill { background: var(--terracotta); color: var(--white); }
.btn-fill:hover { background: var(--warm-dark); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--warm-dark); padding: 3.5rem 5%;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.si { padding: 0 2.5rem; border-right: 1px solid rgba(255,255,255,0.08); }
.si:first-child { padding-left: 0; }
.si:last-child { border-right: none; }
.si-bar { width: 2.2rem; height: 2px; background: var(--terracotta); margin-bottom: 1.1rem; }
.si-lbl { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.45rem; }
.si-val { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: #fff; line-height: 1.2; margin-bottom: 0.35rem; }
.si-sub { font-size: 0.76rem; color: var(--stone); line-height: 1.5; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 5.5rem 5%; }
.sec-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.sec-eyebrow::before {
  content: ''; display: block; width: 1.8rem; height: 1px;
  background: var(--terracotta); flex-shrink: 0;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 400;
  line-height: 1.18; color: var(--ink); margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--terracotta); }
.body-text { font-size: 0.96rem; line-height: 1.9; color: var(--mist); }
.body-text p + p { margin-top: 1.1em; }
.mw { max-width: 640px; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; padding: 0; }
.simg { min-height: 500px; position: relative; overflow: hidden; }
.simg-inner { position: absolute; inset: 0; }
.bg-garden { background: url('../images/sections/garten.webp') center/cover no-repeat; }
.bg-pool   { background: url('../images/sections/pool.webp') center/cover no-repeat; }
.bg-living { background: url('../images/sections/wohnbereich.webp') center/cover no-repeat; }
.bg-annex  { background: url('../images/sections/annexe.webp') center/cover no-repeat; }
.simg-caption {
  position: absolute; bottom: 1.8rem; right: 1.8rem;
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scont {
  padding: 5.5rem 7%; display: flex; flex-direction: column;
  justify-content: center; background: var(--cream);
}
.scont.dark { background: var(--warm-dark); }
.scont.dark h2 { color: #fff; }
.scont.dark .body-text { color: var(--stone); }
.scont.dark .sec-eyebrow { color: var(--terra-lt); }
.scont.dark .sec-eyebrow::before { background: var(--terra-lt); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amen-wrap { background: var(--white); }
.amen-inner { max-width: 1180px; margin: 0 auto; }
.amen-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--stone); margin-top: 3.5rem;
}
.ac { padding: 2.2rem; border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); transition: background 0.18s; }
.ac:hover { background: var(--cream); }
.ac:nth-child(3n) { border-right: none; }
.ac:nth-last-child(-n+3) { border-bottom: none; }
.ac-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.ac-name { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.45rem; }
.ac-desc { font-size: 0.82rem; color: var(--mist); line-height: 1.6; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-wrap { background: var(--sand); }
.rooms-inner { max-width: 1180px; margin: 0 auto; }
.room-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3.5rem; }
.rc { background: var(--white); padding: 2.4rem; border-top: 2px solid var(--terracotta); transition: transform 0.2s, box-shadow 0.2s; }
.rc:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.08); }
.rc-no { font-family: 'Playfair Display', Georgia, serif; font-size: 3.2rem; color: var(--stone); line-height: 1; margin-bottom: 0.7rem; }
.rc-name { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.rc-text { font-size: 0.86rem; color: var(--mist); line-height: 1.7; }
.rc-tag { display: inline-block; margin-top: 1.1rem; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); border: 1px solid var(--terracotta); padding: 0.2rem 0.65rem; }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-wrap { background: var(--warm-dark); }
.loc-inner { max-width: 1180px; margin: 0 auto; }
.loc-wrap h2 { color: #fff; }
.loc-wrap .body-text { color: var(--stone); }
.loc-wrap .sec-eyebrow { color: var(--terra-lt); }
.loc-wrap .sec-eyebrow::before { background: var(--terra-lt); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; margin-top: 3rem; align-items: start; }
.dl { list-style: none; }
.dl li { display: flex; justify-content: space-between; align-items: center; padding: 0.95rem 0; border-bottom: 1px solid rgba(196,180,154,0.18); font-size: 0.87rem; }
.dl li:last-child { border-bottom: none; }
.dl-place { color: var(--stone); }
.dl-km { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--terra-lt); }
.map-box { height: 330px; border: 1px solid rgba(196,180,154,0.18); overflow: hidden; }
.map-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ============================================================
   PRICES
   ============================================================ */
.price-wrap { background: var(--cream); }
.price-inner { max-width: 1180px; margin: 0 auto; }
.ptable {
  display: grid; grid-template-columns: 1.3fr repeat(5,1fr);
  gap: 1px; background: var(--stone); border: 1px solid var(--stone); margin-top: 3.5rem;
}
.ptc { background: var(--white); padding: 1.8rem 1.2rem; text-align: center; }
.ptc.hd {
  background: var(--warm-dark); display: flex; align-items: center;
  justify-content: flex-start; padding-left: 1.8rem; text-align: left;
}
.ptc.hd span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.ptc.peak { background: var(--sand); }
.ptc-mo { font-size: 0.63rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.55rem; }
.ptc-pr { font-family: 'Playfair Display', Georgia, serif; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.ptc-pr.hl { color: var(--terracotta); }
.ptc-u { font-size: 0.62rem; color: var(--mist); margin-top: 0.3rem; }
.pnote {
  margin-top: 1.8rem; padding: 1.7rem 2rem;
  background: var(--white); border-left: 3px solid var(--terracotta);
  font-size: 0.84rem; color: var(--mist); line-height: 1.75;
}
.pnote strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   BOOKING
   ============================================================ */
.book-wrap { background: var(--white); }
.book-inner { max-width: 1180px; margin: 0 auto; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; }
.bl-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; color: var(--ink); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--stone); }
.bl { list-style: none; }
.bl li { display: flex; gap: 0.9rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(196,180,154,0.28); font-size: 0.87rem; color: var(--mist); line-height: 1.6; align-items: flex-start; }
.bl li:last-child { border-bottom: none; }
.chk { color: var(--terracotta); flex-shrink: 0; font-size: 0.75rem; margin-top: 0.18rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--terracotta); padding: 5rem 5%; text-align: center; color: var(--white); }
.cta-label { font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; margin-bottom: 1.2rem; }
.cta h2 { color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 0.8rem; }
.cta-sub { font-size: 0.96rem; opacity: 0.82; margin-bottom: 2.5rem; }
.cta-email {
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem;
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45); padding-bottom: 0.2rem;
  transition: border-color 0.2s; cursor: pointer;
}
.cta-email:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--warm-dark); color: var(--stone); padding: 3rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: #fff; }
.footer-logo em { font-style: italic; color: var(--terra-lt); }
.footer-meta { font-size: 0.7rem; color: var(--mist); }
.footer-lic { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(196,180,154,0.4); }
.footer-legal { display: flex; align-items: center; gap: 0.6rem; }
.legal-link {
  background: none; border: none; cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(196,180,154,0.5); transition: color 0.2s; padding: 0;
}
.legal-link:hover { color: var(--terra-lt); }
.legal-sep { font-size: 0.6rem; color: rgba(196,180,154,0.25); }

/* ============================================================
   LEGAL MODALS (Impressum / Datenschutz)
   ============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(28,26,24,0.78); align-items: center; justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); max-width: 680px; width: 100%;
  max-height: 80vh; overflow-y: auto; padding: 3rem;
  position: relative;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--mist); transition: color 0.2s; line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: 1.8rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--stone);
}
.modal-box p, .modal-box address { font-size: 0.9rem; color: var(--mist); line-height: 1.8; margin-bottom: 1rem; font-style: normal; }
.modal-box h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 400; color: var(--ink);
  margin: 1.5rem 0 0.6rem;
}

/* ============================================================
   GALERIE KARUSSELL
   ============================================================ */
.carousel-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--warm-dark);
}

/* Stage contains all slides stacked */
.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
  will-change: opacity;
  overflow: hidden;
}
.carousel-slide.active { opacity: 1; }

/* Background image with Ken Burns */
.carousel-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 6s ease-out;
}
.carousel-slide.active .carousel-slide-bg {
  transform: scale(1.04);
}

/* Subtle gradient overlay for legibility */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(28, 26, 24, 0.52) 100%
  );
  pointer-events: none;
}

/* Caption – bottom left, styled like simg-caption but larger */
.carousel-caption {
  position: absolute;
  bottom: 3.8rem;
  left: 3rem;
  z-index: 10;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transition: opacity 0.5s ease;
}

/* Prev / Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.38);
  padding: 1rem 1.2rem;
  transition: color 0.3s ease;
  line-height: 0;
}
.carousel-arrow svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.carousel-arrow:hover { color: rgba(255, 255, 255, 0.88); }
.carousel-prev { left: 1.2rem; }
.carousel-next { right: 1.2rem; }

/* Progress bars – thin horizontal lines at the bottom */
.carousel-progress {
  position: absolute;
  bottom: 1.6rem;
  left: 3rem;
  right: 3rem;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-bar:hover { background: rgba(255, 255, 255, 0.38); }
.carousel-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  transition: width linear;
}
.carousel-bar.active .carousel-bar-fill { width: 100%; }
.carousel-bar.done .carousel-bar-fill { width: 100%; background: rgba(255,255,255,0.55); transition: none; }

/* Pause indicator – optional, very subtle */
.carousel-wrap:hover .carousel-arrow { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-visual { min-height: 44vh; }
  .hero-text { padding: 4rem 6%; }
  .strip { grid-template-columns: 1fr 1fr; }
  .si { border-right: none; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .split { grid-template-columns: 1fr; }
  .simg { min-height: 320px; }
  .scont { padding: 4rem 6%; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .ac:nth-child(3n) { border-right: 1px solid var(--stone); }
  .ac:nth-child(2n) { border-right: none; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ptable { grid-template-columns: repeat(3,1fr); }
  .ptc.hd { justify-content: center; padding-left: 1.2rem; text-align: center; }
  .book-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .modal-box { padding: 2rem; }
  /* Carousel mobile */
  .carousel-wrap { height: 55vh; min-height: 300px; }
  .carousel-caption { left: 1.4rem; bottom: 3.2rem; font-size: 0.9rem; }
  .carousel-progress { left: 1.4rem; right: 1.4rem; bottom: 1.2rem; }
  .carousel-arrow { padding: 0.7rem 0.8rem; }
  .carousel-arrow svg { width: 1.5rem; height: 1.5rem; }
  .carousel-prev { left: 0.2rem; }
  .carousel-next { right: 0.2rem; }
}
