/* ============================================
   Villa Iva — Main stylesheet
   Minimalist · white · high-contrast
   ============================================ */

/* ---------- FONTS (self-hosted) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/Fraunces-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/Fraunces-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/Fraunces-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  --white: #ffffff;
  --bone: #ffffff;          /* primary background + light-on-dark text */
  --cream: #F5F5F3;         /* soft off-white for alternating sections */
  --sand: #ECEBE8;          /* image placeholder */
  --terracotta: #1A1A1A;    /* primary accent / emphasis (near-black) */
  --terracotta-soft: #707070;
  --clay: #000000;          /* primary button hover */
  --olive: #2F6B4F;
  --moss: #2F6B4F;
  --taupe: #8A8A8A;
  --ink: #141414;           /* text + dark sections */
  --ink-soft: #5E5E5E;      /* secondary text */
  --line: rgba(0, 0, 0, 0.10);

  --serif: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --sans:  'Jost', 'Inter', system-ui, -apple-system, sans-serif;

  --tracking-wide: 0.14em;
  --tracking-wider: 0.24em;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- LAYOUT ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) {
  .container, .container-narrow, .container-wide { padding: 0 20px; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bone);
  transition: background 0.4s ease, padding 0.4s ease, color 0.4s ease;
}
.site-header.scrolled,
.site-header--solid {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 32px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-header__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: var(--tracking-wide);
}
.site-header__nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.site-header__nav a {
  position: relative;
  padding: 4px 0;
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.site-header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header__nav a:hover { opacity: 1; }
.site-header__right { display: flex; align-items: center; gap: 24px; }
.lang-switcher { display: flex; gap: 8px; font-size: 12px; letter-spacing: var(--tracking-wide); }
.lang-switcher a.active { opacity: 0.5; }

.nav-toggle { display: none; background: none; border: 0; color: inherit; }
@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--bone);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 80px 32px 32px;
  font-family: var(--serif);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 32px; padding: 12px 0; }
.mobile-nav__close { position: absolute; top: 24px; right: 24px; background: none; border: 0; font-size: 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  padding-bottom: 12vh; /* nudge content block upward */
}
.hero__video, .hero__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}
.hero__content {
  text-align: center;
  padding: 0 24px;
  position: relative;
  will-change: transform, opacity;
}
.hero__content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.40) 42%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}
/* Hero entrance */
.hero__stars  { animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.15s; }
.hero__wordmark { animation: heroIn 1.1s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.3s; }
.hero__tagline  { animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.6s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__stars, .hero__wordmark, .hero__tagline { animation: none; }
}
.hero__stars {
  color: var(--terracotta-soft);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 10px;
  margin-bottom: 24px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}
.hero__wordmark {
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-style: italic;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero__wordmark--logo { margin: 0; }
.hero__logo {
  width: min(440px, 78vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.75)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
.hero__tagline {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}
.hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--bone);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.4; }
}

/* Hero placeholder (kad nema video) */
.hero__placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%),
    var(--ink);
  z-index: -2;
}

/* ---------- SECTION ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 640px) { .section { padding: 80px 0; } }
.section--dark { background: var(--ink); color: var(--bone); }
.section__eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 24px;
}
.section__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section__title em { font-style: italic; color: inherit; }
.section__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 32px;
}

/* ---------- STICKY STORY ---------- */
.story {
  position: relative;
  background: var(--bone);
}
.story__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}
.story__word {
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--terracotta);
  letter-spacing: -0.03em;
}
.story__image {
  aspect-ratio: 3 / 4;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}
.story__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.story__image:hover img { transform: scale(1.04); }
.story__image-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--taupe);
  font-style: italic;
}
@media (max-width: 900px) {
  .story__panel { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 60px 0; }
}

/* ---------- ABOUT / EDITORIAL ---------- */
.editorial {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
}
.editorial__image {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.editorial__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial__image-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  font-family: var(--serif);
  font-style: italic;
  color: var(--taupe);
}
.editorial__features {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.editorial__feature {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.editorial__feature-icon {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.editorial__feature-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
}

/* ---------- SPLIT (bazen + sauna) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.split__half {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  color: var(--bone);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.split__half:hover { transform: scale(1.005); }
.split__half--pool { background: linear-gradient(180deg, rgba(74, 110, 134, 0.7), rgba(42, 60, 80, 0.9)), var(--moss); }
.split__half--sauna { background: linear-gradient(180deg, rgba(141, 71, 48, 0.7), rgba(80, 40, 25, 0.9)), var(--clay); }
.split__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 300;
}
.split__desc {
  margin-top: 12px;
  max-width: 380px;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- BOOKING WIDGET ---------- */
.booking-widget {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  grid-template-columns: 2fr 110px auto;
  gap: 24px;
  align-items: end;
  position: relative;
}
.booking-widget__field { display: flex; flex-direction: column; gap: 4px; position: relative; }
.booking-widget__label {
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--taupe);
}
.booking-widget__input {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  width: 100%;
}
.booking-widget__input:focus { outline: none; border-color: var(--terracotta); }
.booking-widget__trigger {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.booking-widget__trigger.is-empty { color: var(--taupe); font-style: italic; }
.booking-widget__trigger:focus { outline: none; border-color: var(--terracotta); }
.booking-widget__btn:disabled { opacity: 0.5; cursor: not-allowed; }
.booking-widget__popover {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: min(720px, 92vw);
  z-index: 60;
  background: var(--bone);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  padding: 28px;
}
.booking-widget__popover[hidden] { display: none; }
.booking-widget__popover-foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) {
  .booking-widget { grid-template-columns: 1fr 1fr; gap: 16px; }
  .booking-widget__field--dates { grid-column: 1 / -1; }
  .booking-widget__btn { grid-column: 1 / -1; }
  .booking-widget__popover { padding: 16px; left: 0; right: 0; width: auto; }
}

/* ---------- CALENDAR ---------- */
.cal { font-family: var(--sans); color: var(--ink); user-select: none; }
.cal__top {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 16px;
  align-items: start;
}
.cal__nav {
  background: transparent;
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.cal__nav:hover { background: rgba(0, 0, 0, 0.05); border-color: var(--ink); }
.cal__months {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 760px) {
  .cal__top { grid-template-columns: 32px 1fr 32px; gap: 8px; }
  .cal__nav { width: 32px; height: 32px; }
  .cal__months { grid-template-columns: 1fr; gap: 24px; }
}
.cal__title {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
  color: var(--ink);
}
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal__dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--taupe);
  padding: 8px 0;
}
.cal__day {
  min-height: 38px;
  border: 0;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--sans);
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.cal__day:hover:not(:disabled) { background: rgba(0, 0, 0, 0.07); }
.cal__day--empty { visibility: hidden; cursor: default; }
.cal__day--past {
  color: var(--taupe);
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal__day--busy { cursor: not-allowed; color: var(--ink-soft); }
.cal__day--busy-reserved { background: #DFE8D6; }
.cal__day--busy-blocked  { background: #E0DCD5; }
.cal__day--busy-booking  { background: #C8DAEC; }
.cal__day--busy-airbnb   { background: #F5D5D5; }
.cal__day--in-range { background: rgba(0, 0, 0, 0.10); }
.cal__day--start, .cal__day--end {
  background: var(--ink) !important;
  color: var(--white);
  font-weight: 500;
}
.cal__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cal__hint {
  font-size: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
}
.cal__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.cal__legend-item { display: inline-flex; align-items: center; gap: 6px; }
.cal__swatch { width: 12px; height: 12px; display: inline-block; }
.cal__swatch--sel      { background: var(--terracotta); }
.cal__swatch--reserved { background: #DFE8D6; }
.cal__swatch--booking  { background: #C8DAEC; }
.cal__swatch--airbnb   { background: #F5D5D5; }
.cal__swatch--blocked  { background: #E0DCD5; }
.cal__clear {
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
}
.cal__clear:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* Inline card variant (booking step1) */
.cal-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 32px;
}
@media (max-width: 760px) {
  .cal-card { padding: 20px; }
}

/* Home page inline booking calendar */
.booking-cal {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.booking-cal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.booking-cal__range {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  text-align: right;
}
.booking-cal__range strong {
  font-weight: 400;
  color: var(--terracotta);
}
.booking-cal__range-placeholder { color: var(--taupe); }
.booking-cal__foot {
  display: flex;
  align-items: end;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.booking-cal__field { display: flex; flex-direction: column; gap: 4px; }
.booking-cal__field .booking-widget__input { width: 100px; }
.booking-cal__foot .btn { margin-left: auto; }
@media (max-width: 760px) {
  .booking-cal { padding: 24px; }
  .booking-cal__head { flex-direction: column; align-items: flex-start; }
  .booking-cal__range { text-align: left; font-size: 18px; }
  .booking-cal__foot { flex-direction: column; align-items: stretch; gap: 20px; }
  .booking-cal__foot .btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: all 0.4s ease;
}
.btn:hover { background: var(--ink); color: var(--bone); opacity: 1; }
.btn--primary { background: var(--terracotta); color: var(--bone); border-color: var(--terracotta); }
.btn--primary:hover { background: var(--clay); border-color: var(--clay); }
/* On dark sections, invert the primary button so it stands out */
.section--dark .btn--primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.section--dark .btn--primary:hover { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn--ghost { border: 1px solid currentColor; }
.btn--lg { padding: 20px 40px; font-size: 14px; }
.btn--sm { padding: 10px 20px; font-size: 11px; }

/* ---------- OFFERS ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.offer-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-card__title { font-family: var(--serif); font-size: 28px; font-weight: 300; }
.offer-card__desc { color: var(--ink-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.offer-card__discount {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- FORMS ---------- */
.form { display: flex; flex-direction: column; gap: 24px; max-width: 560px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--taupe);
}
.form__input,
.form__textarea {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
}
.form__textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.form__input:focus,
.form__textarea:focus { outline: none; border-color: var(--terracotta); }
.form__honeypot { position: absolute; left: -9999px; }

.flash { padding: 16px 24px; margin-bottom: 24px; }
.flash--success { background: rgba(47, 107, 79, 0.10); border-left: 3px solid var(--olive); }
.flash--error { background: rgba(0, 0, 0, 0.05); border-left: 3px solid var(--ink); }

/* ---------- BOOKING STEP 2 LAYOUT ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.booking-sum-row,
.booking-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
}
.booking-sum-row .amt { white-space: nowrap; }
.booking-sum-total {
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  margin-top: 16px;
}
.booking-sum-total .lbl { font-family: var(--serif); font-size: 18px; }
.booking-sum-total .amt { font-family: var(--serif); font-size: 26px; white-space: nowrap; }
@media (max-width: 860px) {
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- PRICE BREAKDOWN ---------- */.price-summary { background: var(--cream); padding: 24px; }
.price-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.price-summary__row:last-child { border-bottom: 0; }
.price-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 24px;
}

/* ---------- ATMOSPHERE (compact story strip) ---------- */
.atmosphere__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.atmosphere__tile {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}
.atmosphere__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.atmosphere__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0,0) 40%, rgba(0, 0, 0,0.7) 100%);
}
.atmosphere__tile:hover img { transform: scale(1.06); }
.atmosphere__word {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 1;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--bone);
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .atmosphere__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .atmosphere__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---------- ACCESSIBILITY / INCLUSIVITY ---------- */
.access { background: var(--cream); }
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.access__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 16px;
}
.access__list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.access__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
}
.access__list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}
.access__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.access__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}
.access__img img { width: 100%; height: 100%; object-fit: cover; }
.access__img--tall { aspect-ratio: 3 / 5; }
@media (max-width: 900px) {
  .access__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- NEARBY / WHAT TO SEE ---------- */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nearby-card { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand); }
.nearby-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nearby-card:hover img { transform: scale(1.05); }
.nearby-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 16px 16px;
  color: var(--bone);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, rgba(0, 0, 0,0) 0%, rgba(0, 0, 0,0.75) 100%);
}
@media (max-width: 900px) {
  .nearby-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- INCLUSIVE COMFORT ---------- */
.incl-p { font-size: 17px; line-height: 1.85; color: var(--ink); margin: 0 0 22px; }
.incl-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--terracotta);
  margin: 36px 0 0;
  text-align: center;
}
.incl-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.incl-strip__item { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.incl-strip__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.incl-strip__item:hover img { transform: scale(1.04); }
.incl-features {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
}
.incl-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--ink); }
.incl-features__icon { color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 760px) {
  .incl-strip { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .incl-features { grid-template-columns: 1fr; }
}

/* ---------- HOUSE LAYOUT ---------- */
.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.layout-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 32px;
}
.layout-card__floor {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--terracotta);
  margin: 0 0 10px;
}
.layout-card__note { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }
.layout-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.layout-list li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.55; color: var(--ink); }
.layout-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }
.layout-sub { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.layout-extras { max-width: 760px; margin: 64px auto 0; }
.layout-extras p { font-size: 16px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 18px; }
.layout-extras p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .layout-grid { grid-template-columns: 1fr; }
}

/* ---------- HOME GALLERY (2 per row) ---------- */
.home-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.home-gallery__item { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.home-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-gallery__item:hover img { transform: scale(1.03); }
@media (max-width: 640px) { .home-gallery { grid-template-columns: 1fr; } }

/* ---------- ROOMS ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.room-card { display: flex; flex-direction: column; }
.room-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.room-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.room-card:hover .room-card__img img { transform: scale(1.04); }
.room-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 27px;
  color: var(--ink);
  margin: 22px 0 18px;
}
.room-amenities {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.room-amenities li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.room-amenities__icon { color: var(--terracotta); display: inline-flex; flex-shrink: 0; }
.room-card__btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 960px) {
  .rooms-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* ---------- GUEST GUIDELINES ---------- */
.guidelines__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.guideline-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 40px;
}
.guideline-card--wide { grid-column: 1 / -1; }
.guideline-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta);
  margin: 0 0 24px;
}
.guideline-card__lead { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.rules { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rules__item { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--ink); }
.rules__icon {
  display: inline-flex; width: 34px; height: 34px; flex-shrink: 0;
  align-items: center; justify-content: center; border-radius: 50%;
}
.rules__item--yes .rules__icon { background: rgba(47, 107, 79, 0.12); color: #2F6B4F; }
.rules__item--no  .rules__icon { background: rgba(0, 0, 0, 0.06); color: var(--ink-soft); }
.rules__item--no  span:last-child { color: var(--ink-soft); }
.times { display: grid; gap: 4px; }
.times__row { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding: 16px 0; }
.times__row:last-child { border-bottom: none; }
.times__label { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.times__value { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); }
.times__note { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.dot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.dot-list li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.6; color: var(--ink); }
.dot-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.cancel-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cancel-tier { text-align: center; padding: 28px 18px; border: 1px solid var(--line); background: var(--cream); }
.cancel-tier__pct { font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--terracotta); }
.cancel-tier--0 .cancel-tier__pct { color: #2F6B4F; }
.cancel-tier--2 .cancel-tier__pct { color: var(--ink); }
.cancel-tier__label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin-top: 12px; color: var(--ink); }
.cancel-tier__cond { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
@media (max-width: 760px) {
  .guidelines__grid { grid-template-columns: 1fr; }
  .cancel-tiers { grid-template-columns: 1fr; }
}

/* ---------- GALLERY ---------- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
}
.gallery-tabs__btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.gallery-tabs__btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.gallery-tabs__btn.is-active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--bone);
}
.gallery-panel { display: none; }
.gallery-panel.is-active { display: block; animation: galleryFade 0.4s ease both; }
@keyframes galleryFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gallery-panel__desc {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-grid__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  cursor: zoom-in;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.gallery-grid__item:hover img { transform: scale(1.04); }
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: 0;
  color: var(--bone);
  font-size: 40px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 16px;
}
.lightbox__close:hover,
.lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 16px; right: 24px; font-size: 32px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__nav { font-size: 28px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer__wordmark {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { color: var(--terracotta-soft); transform: translateY(-2px); }
.footer-social__txt {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.footer-social__txt:hover { border-color: var(--terracotta-soft); transform: none; }
.site-footer__heading {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 16px;
}
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.site-footer__legal a { color: rgba(255, 255, 255, 0.75); }
.site-footer__legal a:hover { color: var(--bone); opacity: 1; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- LEGAL PAGES ---------- */
.legal__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 32px 0 16px;
}
.legal__h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal__p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.legal__table th, .legal__table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal__table th { color: var(--taupe); text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }
.legal__dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px 24px;
  margin: 32px 0;
}
.legal__dl dt { color: var(--taupe); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.legal__dl dd { margin: 0; font-size: 16px; color: var(--ink); }
@media (max-width: 600px) {
  .legal__dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal__dl dd { margin-bottom: 16px; }
}

/* ---------- LOADING SCREEN ---------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}
.site-loader__stars { color: var(--terracotta-soft); font-size: 20px; letter-spacing: 10px; }
.site-loader__word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 9vw, 92px);
  color: var(--ink);
  line-height: 1;
}
.site-loader__bar {
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.site-loader__bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--terracotta);
  animation: loaderBar 1.1s ease-in-out infinite;
}
@keyframes loaderBar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Hide once loaded */
body.loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Intro per style --- */
.site-loader--fade .site-loader__stars { animation: loaderUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s; }
.site-loader--fade .site-loader__word  { animation: loaderUp 1s   cubic-bezier(0.16,1,0.3,1) both 0.25s; }
@keyframes loaderUp { from { opacity: 0; transform: translateY(16px); filter: blur(6px);} to { opacity: 1; transform: none; filter: blur(0);} }

.site-loader--zoom .site-loader__stars,
.site-loader--zoom .site-loader__word { animation: loaderZoom 1s cubic-bezier(0.16,1,0.3,1) both; }
.site-loader--zoom .site-loader__word { animation-delay: 0.15s; }
@keyframes loaderZoom { from { opacity: 0; transform: scale(0.8);} to { opacity: 1; transform: scale(1);} }

.site-loader--reveal .site-loader__stars { animation: loaderUp 0.8s ease both; }
.site-loader--reveal .site-loader__word {
  clip-path: inset(0 100% 0 0);
  animation: loaderWipe 1.1s cubic-bezier(0.7,0,0.2,1) both 0.2s;
}
@keyframes loaderWipe { from { clip-path: inset(0 100% 0 0);} to { clip-path: inset(0 0 0 0);} }

.site-loader--curtain .site-loader__stars { animation: loaderUp 0.8s ease both; }
.site-loader--curtain .site-loader__word  { animation: loaderUp 0.9s ease both 0.15s; }
body.loaded .site-loader--curtain {
  opacity: 1;
  visibility: visible;
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__bar span,
  .site-loader__stars,
  .site-loader__word { animation: none !important; }
}

/* ---------- FLOATING ACTIONS ---------- */
.floaters {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 240;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floater {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, opacity 0.2s ease;
  color: #fff;
}
.floater:hover { transform: translateY(-3px); opacity: 1; }
.floater--wa { background: #25D366; }
.floater--top { background: var(--ink); color: var(--bone); }
.floater[hidden] { display: none; }
@media (max-width: 560px) {
  .floaters { right: 14px; bottom: 14px; }
  .floater { width: 48px; height: 48px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 250;
  background: var(--ink);
  color: var(--bone);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner a { text-decoration: underline; color: var(--terracotta-soft); }
.cookie-banner .btn { flex-shrink: 0; padding: 10px 20px; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px) scale(0.985); transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- UTILS ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 64px; }
.mt-4 { margin-top: 32px; }
.italic { font-style: italic; }
.muted { color: var(--taupe); }
