:root {
  --color-bg: #F8F3E8;
  --color-surface: #FFFDF7;
  --color-text: #10261D;
  --color-muted: #6F7B70;
  --color-green: #1F5B43;
  --color-green-dark: #174632;
  --color-accent: #B8893B;
  --color-border: #E5DED0;
  --color-soft-green: #EAF0E8;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 18px 50px rgba(16, 38, 29, 0.08);
  --shadow-subtle: 0 8px 24px rgba(16, 38, 29, 0.06);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 5%, rgba(185, 217, 208, 0.55), transparent 28rem),
    linear-gradient(180deg, var(--color-bg) 0%, #fff 44%, var(--color-bg) 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.cursor-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 59, 0.08), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 81, 60, 0.12);
  border-radius: 999px;
  background: rgba(251, 247, 237, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 35px rgba(19, 33, 27, 0.08);
  transition: 0.25s ease;
}
.site-header.scrolled { background: rgba(251, 247, 237, 0.92); box-shadow: 0 18px 45px rgba(19, 33, 27, 0.14); }

.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--color-border); }
.brand strong { display: block; font-weight: 600; letter-spacing: -0.01em; color: var(--color-text); font-size: 1.05rem; }
.brand small { display: block; color: var(--color-muted); font-size: 0.75rem; margin-top: 1px; }

.desktop-nav { display: flex; justify-content: center; gap: 4px; flex: 1; }
.desktop-nav a { padding: 8px 16px; border-radius: 999px; color: var(--color-text); font-size: 0.95rem; font-weight: 500; transition: 0.2s ease; }
.desktop-nav a:hover { background: var(--color-soft-green); color: var(--color-green); }

/* header-actions removed */

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.nav-cta, .button.primary { color: white; background: var(--color-green); box-shadow: var(--shadow-subtle); }
.button.ghost { border: 1px solid var(--color-border); color: var(--color-text); background: var(--color-surface); }
.button.light { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.nav-cta:hover, .button.primary:hover { transform: translateY(-2px); background: var(--color-green-dark); box-shadow: var(--shadow-soft); }
.button.ghost:hover, .button.light:hover { background: var(--color-soft-green); border-color: var(--color-soft-green); }

.menu-toggle { display: none; border: 0; background: var(--color-green); width: 46px; height: 46px; border-radius: 50%; padding: 0 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 3px; }
.mobile-nav { display: none; }

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.section-pad { position: relative; z-index: 1; padding: 100px clamp(20px, 5vw, 78px); }

.hero { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr); gap: clamp(32px, 6vw, 92px); align-items: center; padding-top: 132px; }
.eyebrow { margin: 0 0 16px; color: var(--color-accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.hero-title, .section-title, h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; color: var(--color-text); margin: 0; }
h1, .hero-title { font-size: clamp(3.2rem, 8vw, 7.9rem); line-height: 0.96; letter-spacing: -0.055em; max-width: 900px; }
h2, .section-title { font-size: clamp(2.3rem, 5vw, 5.2rem); line-height: 1.05; letter-spacing: -0.035em; max-width: 820px; }
h3 { margin: 0 0 10px; font-size: 1.25rem; color: var(--color-text); font-weight: 600; }
.hero-text { color: var(--color-muted); font-size: 1.125rem; line-height: 1.6; max-width: 600px; margin: 24px 0 32px; }

.hero-actions, .booking-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.trust-row span { padding: 12px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-text); font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; gap: 6px; }

.hero-visual { position: relative; min-height: 600px; }
.hero-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--color-surface); height: 100%; }
.main-photo { position: absolute; inset: 0 5% 0 0; }
.main-photo::after, .split-image::after, .gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(16,38,29,.2)); pointer-events: none; }
.photo-badge { position: absolute; left: 24px; bottom: 24px; z-index: 2; background: rgba(255,253,247,.9); color: var(--color-text); padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 0.9rem; backdrop-filter: blur(8px); }

.floating-card { position: absolute; z-index: 3; width: 220px; padding: 20px; border-radius: var(--radius-md); background: rgba(255,253,247,.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); border: 1px solid var(--color-border); }
.floating-card strong { display: block; font-size: 1.05rem; font-weight: 600; color: var(--color-text); }
.floating-card span { display: block; color: var(--color-muted); font-size: .85rem; margin-top: 4px; line-height: 1.4; }
.card-top { right: -10px; top: 60px; }
.card-bottom { left: -20px; bottom: 60px; }

.section-heading { display: grid; gap: 12px; margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.feature { padding: 32px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); transition: transform 0.3s ease; }
.feature:hover { transform: translateY(-4px); }
.feature-title { display: flex; align-items: center; gap: 14px; margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--color-text); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(185, 217, 208, 0.4); border-radius: 12px; font-size: 1.2rem; flex-shrink: 0; }
.feature p { margin-top: 16px; margin-bottom: 0; color: var(--color-muted); line-height: 1.6; }
.split-copy p, .booking-card p, .faq p, .site-footer p { color: var(--color-muted); line-height: 1.65; margin: 0; }
.icon { display: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-image { position: relative; min-height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.split-copy p { font-size: 1.1rem; }
.check-list { list-style: none; padding: 0; display: grid; gap: 16px; margin-top: 24px; }
.check-list li { position: relative; padding-left: 28px; color: var(--color-text); font-weight: 500; }
.check-list li::before { content: "•"; position: absolute; left: 0; color: var(--color-accent); font-size: 1.5rem; line-height: 1; top: -2px; }

.gallery-section { background: var(--color-surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--color-bg); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item figcaption { position: absolute; z-index: 2; left: 24px; bottom: 24px; color: white; font-weight: 500; font-size: 1.05rem; }
.gallery-item img { transition: transform .8s ease; }
.gallery-item:hover img { transform: scale(1.04); }

.booking { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.booking-card { padding: clamp(40px, 6vw, 60px); border-radius: var(--radius-lg); color: white; background: var(--color-text); box-shadow: var(--shadow-soft); min-height: 100%; position: relative; overflow: hidden; }
.booking-card::before { content: ""; position: absolute; inset: 0; background: url('./assets/gallery-6.jpg') center/cover; opacity: 0.15; pointer-events: none; }
.booking-card > * { position: relative; z-index: 2; }
.booking-card .eyebrow { color: var(--color-accent); margin-bottom: 24px; }
.booking-card h2 { color: white; margin-bottom: 16px; }
.booking-card p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }

.booking-note { display: grid; gap: 8px; margin-top: 32px; padding: 24px; border-radius: var(--radius-md); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); line-height: 1.6; }
.booking-note strong { color: #fff; font-weight: 500; }

.availability-panel { padding: clamp(32px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
.availability-header { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 24px; }
.availability-header h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
.availability-source { display: inline-flex; align-items: center; min-height: 32px; padding: 0 16px; border-radius: 999px; background: var(--color-soft-green); color: var(--color-green); font-weight: 500; font-size: .85rem; white-space: nowrap; border: 1px solid rgba(31,91,67,0.1); }

.availability-state { margin: 0; padding: 20px; border-radius: var(--radius-md); background: var(--color-bg); color: var(--color-muted); font-weight: 500; text-align: center; border: 1px solid var(--color-border); }
.availability-state[data-state="error"] { color: #8b2f25; background: rgba(139,47,37,.05); border-color: rgba(139,47,37,.1); }

.slot-grid { display: grid; gap: 16px; }
.slot-card { display: grid; gap: 12px; padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-bg); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; cursor: pointer; }
.slot-card:hover, .slot-card.selected { border-color: var(--color-accent); box-shadow: var(--shadow-subtle); background: var(--color-surface); }
.slot-date { display: flex; justify-content: space-between; gap: 10px; color: var(--color-muted); font-weight: 500; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.slot-card h4 { margin: 0; font-size: 1.25rem; color: var(--color-text); font-weight: 600; }
.slot-card p { margin: 0; color: var(--color-muted); font-weight: 500; }
.slot-card .button { margin-top: 8px; width: 100%; }

.booking-form { display: grid; gap: 20px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.selected-slot { display: grid; gap: 4px; padding: 20px; border-radius: var(--radius-md); background: var(--color-soft-green); color: var(--color-green-dark); }
.selected-slot span { color: var(--color-green); font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.selected-slot strong { font-size: 1.15rem; font-weight: 600; margin-top: 4px; }
.selected-slot small { color: var(--color-green); font-weight: 500; margin-top: 4px; }

.booking-form label { display: grid; gap: 8px; color: var(--color-text); font-weight: 500; font-size: 0.95rem; }
.booking-form input, .booking-form textarea { width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); padding: 14px 16px; font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(184, 137, 59, 0.1); }
.booking-form textarea { resize: vertical; min-height: 120px; }
.form-error { margin: 0; min-height: 1.2em; color: #9a3429; font-weight: 500; font-size: 0.9rem; }
.booking-form .button { margin-top: 10px; width: auto; justify-self: start; }

.faq-list { display: grid; gap: 14px; max-width: 900px; }
details { padding: 22px 24px; border-radius: var(--radius-md); background: rgba(255,255,255,.74); border: 1px solid rgba(31,81,60,.1); }
summary { cursor: pointer; font-weight: 900; font-size: 1.08rem; color: var(--color-text); }
summary::marker { color: var(--color-accent); }
details p { margin-top: 16px; margin-bottom: 0; color: var(--color-muted); line-height: 1.7; }

.site-footer { padding: 60px clamp(20px, 5vw, 40px); background: var(--color-bg); border-top: 1px solid var(--color-border); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; margin-bottom: 40px; }
.footer-brand strong { display: block; font-weight: 600; font-size: 1.2rem; color: var(--color-text); margin-bottom: 8px; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; font-weight: 500; }
.footer-links a { color: var(--color-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--color-border); padding-top: 24px; font-size: 0.85rem; color: var(--color-muted); }
.powered-by {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.powered-by:hover {
  background: var(--color-soft-green);
  color: var(--color-green);
  border-color: var(--color-soft-green);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 1024px) {
  .hero, .split, .booking { grid-template-columns: 1fr; }
  .availability-panel { order: 2; }
  .booking-card { order: 1; }
  .hero-visual { min-height: 500px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 980px) {
  .site-header { inset: 12px 12px auto; }
}

@media (max-width: 768px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-nav { position: fixed; z-index: 45; top: 76px; left: 16px; right: 16px; display: grid; gap: 8px; padding: 20px; border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .3s ease; box-shadow: var(--shadow-soft); }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; text-align: center; background: var(--color-bg); }
  .mobile-nav a:hover { background: var(--color-soft-green); color: var(--color-green); }
  .mobile-nav .button.primary { margin-top: 8px; width: 100%; display: flex; }
  
  .section-pad { padding: 76px 18px; }
  .hero { padding-top: 122px; gap: 40px; }
  .hero-actions .button, .booking-actions .button, .booking-form .button, .slot-card .button { width: 100%; justify-self: stretch; }
  
  .main-photo { inset: 0; border: none; border-radius: var(--radius-lg); }
  .floating-card { width: auto; max-width: 200px; padding: 16px; }
  .card-top { top: 20px; right: 10px; }
  .card-bottom { left: 10px; bottom: 20px; }
  
  .feature-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 250px; }
  .gallery-item.wide { grid-column: span 1; }
  .split-image { min-height: 350px; }
  .availability-header { flex-direction: column; }
  .availability-source { align-self: flex-start; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1, .hero-title { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-text { font-size: 1.05rem; }
  .trust-row { flex-direction: row; gap: 8px; }
  .trust-row span { flex: 1 1 calc(50% - 10px); }
  .booking-card { padding: 32px 24px; }
  .availability-panel { padding: 24px; }
}
