*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #FAFAF7;
  --black:   #141414;
  --sage:    #6B8F5E;
  --sage-lt: #8FAF82;
  --warm:    #C4A882;
  --gray:    #6B6B6B;
  --light:   #F0EDE8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --expo:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--sage);
  z-index: 999; transition: width 0.08s linear;
}

/* ── GRAIN ── */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 997; opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── CURSOR ── */
@media (pointer: fine) {
  body { cursor: none; }
  #cur { position: fixed; width: 8px; height: 8px; background: var(--sage); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: multiply; will-change: left, top; }
  #cur-ring { position: fixed; width: 38px; height: 38px; border: 1px solid rgba(107,143,94,0.45); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.35s var(--expo), height 0.35s var(--expo), opacity 0.35s; will-change: left, top; }
  body.ch #cur { width: 14px; height: 14px; }
  body.ch #cur-ring { width: 58px; height: 58px; opacity: 0.5; }
}
@media (pointer: coarse) { #cur, #cur-ring { display: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 64px;
  background: transparent; transition: background 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
nav.nav-solid {
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.08em; color: var(--white); text-decoration: none; transition: color 0.4s;
}
nav.scrolled .nav-logo, nav.nav-solid .nav-logo { color: var(--black); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.85); transition: color 0.3s;
}
nav.scrolled .nav-links a, nav.nav-solid .nav-links a { color: var(--gray); }
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.lang-toggle {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; background: none;
  border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.85);
  padding: 5px 12px; border-radius: 20px; cursor: pointer; transition: all 0.3s;
}
nav.scrolled .lang-toggle, nav.nav-solid .lang-toggle { border-color: rgba(0,0,0,0.2); color: var(--gray); }
.lang-toggle:hover { border-color: var(--sage); color: var(--sage); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-ig {
  display: flex; align-items: center;
  color: rgba(255,255,255,0.75); transition: color 0.3s; text-decoration: none;
}
nav.scrolled .nav-ig, nav.nav-solid .nav-ig { color: var(--gray); }
.nav-ig:hover { color: var(--sage); }
.nav-ig svg { width: 17px; height: 17px; display: block; }

/* ── PAGE HEADER (sub-pages) ── */
.page-header {
  min-height: 56vh; display: flex; align-items: flex-end;
  background: center/cover no-repeat;
  position: relative; overflow: hidden; padding: 0 64px 72px;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.7) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header-eyebrow {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px;
}
.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300;
  color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.page-header-title em { font-style: italic; color: rgba(255,255,255,0.62); }

/* ── REVEAL SYSTEM ── */
.r   { opacity: 0; transform: translateY(52px); transition: opacity 0.95s var(--expo), transform 0.95s var(--expo); }
.rl  { opacity: 0; transform: translateX(-52px); transition: opacity 0.95s var(--expo), transform 0.95s var(--expo); }
.rr  { opacity: 0; transform: translateX(52px); transition: opacity 0.95s var(--expo), transform 0.95s var(--expo); }
.rs  { opacity: 0; transform: scale(0.91); transition: opacity 0.95s var(--expo), transform 0.95s var(--expo); }
.r.on, .rl.on, .rr.on, .rs.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ── SECTIONS COMMON ── */
section { padding: 120px 60px; }
.section-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem); font-weight: 300;
  line-height: 1.06; color: var(--black); letter-spacing: -0.02em;
}
.section-body {
  font-size: 0.95rem; font-weight: 300; line-height: 1.82; color: var(--gray); max-width: 520px;
}

/* ── MARQUEE ── */
.marquee-strip { overflow: hidden; background: var(--black); padding: 22px 0; user-select: none; }
.marquee-inner {
  display: flex; align-items: center; width: max-content;
  animation: mRun 42s linear infinite;
}
.marquee-inner > span {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.18); letter-spacing: 0.1em; white-space: nowrap; padding-right: 2.5em;
}
.marquee-inner > span em { color: var(--sage-lt); font-style: normal; }
@keyframes mRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BOOKING CARDS ── */
.booking-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; width: 100%; max-width: 960px; margin-bottom: 40px;
}
.booking-card {
  background: var(--white); border-radius: 6px; padding: 36px 30px;
  text-align: left; display: flex; flex-direction: column; gap: 10px;
  border: 1px solid rgba(0,0,0,0.055); text-decoration: none; color: inherit;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.4s ease;
}
.booking-card:hover { box-shadow: 0 22px 64px rgba(0,0,0,0.10); }
.booking-card::before {
  content: ''; display: block; height: 2px; width: 32px;
  background: var(--sage); border-radius: 1px; margin-bottom: 4px;
}
.booking-card--direct { border-color: rgba(107,143,94,0.35); }
.booking-card--direct::before { width: 100%; background: linear-gradient(90deg, var(--sage), var(--warm)); }
.booking-card-platform {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage);
}
.booking-card-name {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300;
  color: var(--black); line-height: 1.08;
}
.booking-card-desc {
  font-size: 0.8rem; font-weight: 300; color: var(--gray); line-height: 1.65; flex: 1;
}
.booking-card-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--black);
}
.booking-card-cta::after { content: '→'; transition: transform 0.35s var(--expo); }
.booking-card:hover .booking-card-cta::after { transform: translateX(5px); }
.discount-badge {
  display: inline-block; align-self: flex-start;
  background: var(--sage); color: #fff;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 3px 11px; border-radius: 20px; margin-top: 2px;
}

/* ── WA BTN ── */
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 44px; background: transparent; color: var(--black);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(0,0,0,0.2); border-radius: 2px;
  transition: border-color 0.3s, color 0.3s; position: relative; overflow: hidden;
}
.wa-btn:hover { border-color: var(--sage); color: var(--sage); }

/* ── EXTRA SERVICE ── */
.extra-service {
  display: flex; align-items: center; gap: 28px;
  width: 100%; max-width: 960px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.055);
  border-radius: 6px; padding: 28px 32px; margin-bottom: 32px;
  text-align: left; transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}
.extra-service:hover { box-shadow: 0 22px 64px rgba(0,0,0,0.09); }
.extra-service-icon { font-size: 2.2rem; flex-shrink: 0; }
.extra-service-content { flex: 1; }
.extra-service-label {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 6px;
}
.extra-service-title {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300;
  color: var(--black); margin-bottom: 6px; line-height: 1.1;
}
.extra-service-desc {
  font-size: 0.8rem; font-weight: 300; color: var(--gray); line-height: 1.65;
}
.extra-service-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; color: var(--black);
  padding: 14px 26px; border: 1px solid rgba(0,0,0,0.15); border-radius: 2px;
  transition: border-color 0.3s, color 0.3s; flex-shrink: 0; white-space: nowrap;
}
.extra-service-cta:hover { border-color: var(--sage); color: var(--sage); }
.extra-service-arrow { transition: transform 0.35s var(--expo); display: inline-block; }
.extra-service-cta:hover .extra-service-arrow { transform: translateX(4px); }

/* ── CONTACT META ── */
.contact-meta { margin-top: 40px; font-size: 0.78rem; color: var(--gray); font-weight: 300; }
.contact-meta a { color: var(--sage); text-decoration: none; transition: opacity 0.3s; }
.contact-meta a:hover { opacity: 0.7; }

/* ── FOOTER ── */
footer {
  background: var(--black); padding: 32px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-serif); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.footer-right { font-size: 0.65rem; color: rgba(255,255,255,0.22); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.28); transition: color 0.3s;
}
.footer-ig:hover { color: var(--sage-lt); }
.footer-ig svg { width: 14px; height: 14px; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 3px; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; color: rgba(255,255,255,0.55); cursor: pointer; background: none; border: none; line-height: 1; }

/* ── LANG ── */
[data-lang="en"] { display: none; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0% { top: -100%; } 100% { top: 100%; } }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .booking-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 80px 24px; }
  .page-header { padding: 0 24px 56px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .booking-cards { grid-template-columns: 1fr; }
  .extra-service { flex-direction: column; align-items: flex-start; gap: 16px; }
  .extra-service-cta { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
}
