/* Gracewood — design system & layout */
:root {
  --ivory: #FBF8F3;
  --cream: #F3ECE1;
  --paper: #FFFFFF;
  --blush: #E7C9C0;
  --blush-deep: #C98B7E;
  --sage: #A9B5A0;
  --sage-deep: #7E8E72;
  --sage-soft: #EAEEE5;
  --forest: #4A5D44;
  --charcoal: #2E2A26;
  --muted: #8A817A;
  --line: #E8E0D5;
  --gold: #C9A86A;
  --hold: #D4A24E;
  --hold-bg: #FBF3E3;
  --booked: #9A8B82;
  --booked-bg: #EDE8E3;
  --available: #7E8E72;
  --available-bg: #F4F7F2;
  --shadow: 0 1px 2px rgba(46, 42, 38, 0.04), 0 8px 24px rgba(46, 42, 38, 0.06);
  --shadow-lg: 0 12px 40px rgba(46, 42, 38, 0.12);
  --r: 14px;
  --r-sm: 9px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--forest); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.15;
}
button, input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--sage-soft); color: var(--charcoal); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.container-narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.lead { font-size: 1.125rem; color: var(--muted); line-height: 1.7; max-width: 640px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--charcoal);
  padding: 13px 24px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow);
}
.btn:hover { border-color: var(--sage); transform: translateY(-1px); color: var(--charcoal); }
.btn.primary {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}
.btn.primary:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: none;
}
.btn.outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }
.btn.sm { padding: 9px 16px; font-size: 11px; }
.btn.lg { padding: 16px 32px; font-size: 13px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal);
}
.logo span { font-weight: 400; font-style: italic; color: var(--sage-deep); }
.site-header .logo { color: var(--charcoal); }
.site-header.hero-overlay .logo,
.site-header.hero-overlay .nav-link { color: #fff; }
.site-header.hero-overlay.scrolled .logo,
.site-header.hero-overlay.scrolled .nav-link { color: var(--charcoal); }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { font-weight: 600; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.hero-overlay:not(.scrolled) .nav-toggle span { background: #fff; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 38, 0.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ivory);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile .nav-link {
  font-family: var(--serif);
  font-size: 26px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(46, 42, 38, 0.35) 0%, rgba(46, 42, 38, 0.55) 100%),
    url('images/hero-couple.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px 80px; max-width: 820px; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin: 12px 0 16px; }
.page-hero .lead { margin-inline: auto; }
.page-hero-compact { padding-bottom: 28px; }
.section-tight-top { padding-top: 36px; padding-bottom: 48px; }

/* Stats bar */
.stats-bar {
  background: var(--charcoal);
  color: #fff;
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Sections */
section { padding: 88px 0; }
section.alt { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 10px 0 16px; }
.section-header .lead { margin-inline: auto; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.split p:last-child { margin-bottom: 0; }

/* Image placeholders */
.img-placeholder,
.img-real {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.img-real img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(135deg, var(--cream), var(--sage-soft));
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 15px; }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pillar {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar h3 { font-size: 1.35rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 15px; }

/* Testimonials */
.testimonial-section { background: var(--charcoal); color: #fff; }
.testimonial-section .eyebrow { color: rgba(255, 255, 255, 0.5); }
.testimonial-section h2 { color: #fff; }
.testimonial-slider { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; animation: fadeIn 0.5s var(--ease); }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial-author { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.6; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.15s;
}
.testimonial-btn:hover { background: rgba(255, 255, 255, 0.1); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}
.testimonial-dot.active { background: #fff; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--sage-deep), var(--forest));
  color: #fff;
}
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 12px; color: #fff; }
.cta-band p { opacity: 0.85; margin-bottom: 28px; max-width: 520px; margin-inline: auto; }
.cta-band .btn.primary { background: #fff; color: var(--forest); border-color: #fff; }
.cta-band .btn.primary:hover { background: var(--cream); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured {
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-lg);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.price-amount {
  font-family: var(--serif);
  font-size: 2.75rem;
  color: var(--sage-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-includes { list-style: none; }
.price-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 12px;
}
.price-includes li:last-child { border-bottom: none; }

.addons-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.addons-table th,
.addons-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.addons-table th { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.addons-table td:last-child { text-align: right; font-weight: 600; color: var(--sage-deep); white-space: nowrap; }

.disclaimer-box {
  background: var(--sage-soft);
  border-radius: var(--r);
  padding: 24px 28px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 40px;
}
.disclaimer-box strong { color: var(--charcoal); }

/* Gallery */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 38, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-sm); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
}
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--sage-deep);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Calendar */
.calendar-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  min-height: auto;
  max-width: 500px;
  margin-inline: auto;
}
.calendar-wrap[data-cal-mode="full"] {
  max-width: 720px;
  padding: 26px 24px;
}
.calendar-wrap.compact { padding: 20px 18px; }
.calendar-wrap.cal-ready { animation: calFadeIn 0.4s var(--ease); }
@keyframes calFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Loading */
.cal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.cal-loading-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--line);
  border-top-color: var(--sage-deep);
  border-radius: 50%;
  animation: calSpin 0.7s linear infinite;
}
@keyframes calSpin { to { transform: rotate(360deg); } }

/* Layout */
.cal-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cal-layout.has-panel,
.cal-layout:has(.cal-panel) {
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}
.cal-main { flex: 1; min-width: 0; }
.cal-layout:has(.cal-panel) .cal-main { flex: 1; max-width: 380px; }

/* Month stats */
.cal-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cal-stat {
  flex: 1;
  min-width: 68px;
  text-align: center;
  padding: 10px 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.cal-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--sage-deep);
  margin-bottom: 3px;
}
.cal-stat-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Selected date panel */
.cal-panel {
  flex: 0 0 220px;
  background: linear-gradient(180deg, var(--sage-soft), var(--ivory));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 18px;
  animation: calFadeIn 0.35s var(--ease);
}
.cal-panel-label {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.cal-panel-date {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.cal-panel-status {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.45;
}
.cal-panel-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cal-panel-cta { width: 100%; justify-content: center; font-size: 11px; padding: 10px 14px; }
.cal-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-panel-clear { width: 100%; justify-content: center; font-size: 10px; padding: 8px 12px; }
.cal-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cal-banner-clear { font-size: 10px; padding: 8px 14px; }
.cal-panel-empty {
  background: var(--ivory);
  border-style: dashed;
}
.cal-panel-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.cal-panel-hint .legend-swatch { width: 12px; height: 12px; }

.cal-panel-status.available strong { color: var(--sage-deep); }
.cal-panel-status.hold strong { color: var(--hold); }
.cal-panel-status.booked strong { color: var(--booked); }

/* Selected banner (contact page) */
.cal-selected-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--sage-soft);
}
.cal-selected-banner.status-hold { background: var(--hold-bg); border-color: rgba(212, 162, 78, 0.35); }
.cal-selected-banner.status-booked { background: var(--booked-bg); }
.cal-selected-banner[hidden] { display: none; }
.cal-banner-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.cal-banner-status {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-deep);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.calendar-jump {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.calendar-select {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A817A' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E") no-repeat right 8px center;
  border-radius: var(--r-sm);
  padding: 7px 28px 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
  max-width: 100%;
}
.calendar-select:hover { border-color: var(--sage); background-color: var(--cream); }
.calendar-select:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(126, 142, 114, 0.15);
}
.calendar-select[data-cal-month-select] { flex: 1; min-width: 110px; }
.calendar-select[data-cal-year-select] { flex: 0 0 84px; }
.calendar-title-group { line-height: 1.1; }
.calendar-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.calendar-year {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.4px;
  margin-top: 1px;
}
.calendar-nav { display: flex; gap: 6px; }
.calendar-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
  transition: background 0.15s;
}
.calendar-nav-btn:hover { background: var(--cream); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  max-width: 100%;
}
.calendar-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}
.calendar-day {
  aspect-ratio: 1;
  max-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: default;
  position: relative;
  color: var(--charcoal);
}
.calendar-day.empty { visibility: hidden; }
.calendar-day.past { color: var(--muted); opacity: 0.4; }
.calendar-day.available {
  background: var(--available-bg);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.calendar-day.available:hover,
.calendar-day.hold:hover {
  background: var(--sage-soft);
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(46, 42, 38, 0.08);
}
.calendar-day.hold {
  background: var(--hold-bg);
  color: #8B6914;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.calendar-day.booked {
  background: var(--booked-bg);
  color: var(--booked);
  text-decoration: line-through;
}
.calendar-day.selected {
  outline: 2px solid var(--sage-deep);
  outline-offset: -2px;
  box-shadow: 0 0 0 3px rgba(126, 142, 114, 0.2);
}
.calendar-day.weekend:not(.past):not(.booked) {
  font-weight: 600;
}
.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sage-deep);
}
.calendar-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
}
.legend-swatch {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-swatch.available { background: var(--available-bg); border: 1px solid var(--sage); }
.legend-swatch.booked { background: var(--booked-bg); }
.legend-swatch.hold { background: var(--hold-bg); }
.cal-legend-hint { font-style: italic; width: 100%; }
.calendar-meta {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.calendar-disclaimer {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--charcoal);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-addons {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.form-addons legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  padding: 0;
}
.form-addons-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.checkbox-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.checkbox-option:hover { border-color: var(--sage); background: var(--ivory); }
.checkbox-option:has(input:checked) {
  border-color: var(--sage-deep);
  background: var(--sage-soft);
}
.checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--sage-deep);
  cursor: pointer;
}
.checkbox-label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  flex: 1;
  min-width: 0;
}
.checkbox-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}
.checkbox-meta {
  grid-column: 1;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.checkbox-price {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-deep);
  white-space: nowrap;
}
.checkbox-item-expandable .checkbox-extra {
  margin-top: 8px;
  margin-left: 28px;
  padding: 12px 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.checkbox-item-expandable .checkbox-extra[hidden] { display: none; }
.checkbox-extra label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.checkbox-extra input[type="number"] {
  width: 88px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--charcoal);
}
.checkbox-extra input[type="number"]:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.checkbox-extra-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.form-warning {
  display: none;
  background: var(--hold-bg);
  color: #8B6914;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  margin-top: 6px;
}
.form-warning.show { display: block; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-detail span { font-size: 14px; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; font-size: 32px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
  font-size: 13px;
}
.footer-inclusivity {
  text-align: center;
  padding: 20px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-style: italic;
  opacity: 0.6;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 16/7;
  background: var(--cream);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* Amenity list */
.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.amenity-list li::before {
  content: '✓';
  color: var(--sage-deep);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .cal-layout.has-panel,
  .cal-layout:has(.cal-panel) { flex-direction: column; }
  .cal-panel { flex: none; width: 100%; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { width: calc(100% - 32px); }
  .footer-grid { grid-template-columns: 1fr; }
  .calendar-wrap { padding: 20px 16px; min-height: 320px; }
  .calendar-day { font-size: 12px; }
  .cal-stats { gap: 8px; }
  .cal-stat { padding: 10px 8px; }
  .cal-stat-num { font-size: 1.35rem; }
  .price-card { padding: 28px 24px; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-mobile, .hero-scroll { display: none; }
  body { background: #fff; }
}
