/* ── Reset ── */
[hidden] { display: none !important; }

/* ── Variables ── */
:root {
  --cream: #f7f3ec;
  --sand: #e8dfd0;
  --olive: #b8b48a;
  --sage: #7a8f6e;
  --sage-dark: #5c6e52;
  --gold: #c4a574;
  --gold-light: #d4bc94;
  --charcoal: #2a2826;
  --warm-gray: #6b6560;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(42, 40, 38, 0.08);
  --shadow-lg: 0 20px 60px rgba(42, 40, 38, 0.14);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
em { font-style: italic; font-weight: 400; }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--warm-gray); margin-bottom: 1rem; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-desc { color: var(--warm-gray); max-width: 520px; margin-top: 0.75rem; }
.section-header { margin-bottom: 3rem; }

/* ── Layout ── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-ghost-light {
  border: 1.5px solid rgba(247,243,236,0.3);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.7rem 1.2rem;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(42,40,38,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-width: 1400px;
  margin-inline: auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.site-header.scrolled .nav-links a { color: var(--warm-gray); }
.nav-links a:hover { color: var(--gold); }
.site-header.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--white) !important;
  color: var(--charcoal) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 100px;
  font-weight: 500 !important;
}
.site-header.scrolled .nav-cta {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
}
.nav-cta:hover { transform: scale(1.04); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42,40,38,0.75) 0%,
    rgba(42,40,38,0.3) 40%,
    rgba(42,40,38,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 1.25rem 0 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Marquee ── */
.marquee {
  background: var(--olive);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee .dot { opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Split layouts ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.img-stack {
  position: relative;
}
.stack-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 85%;
}
.stack-accent {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.linda-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.pill {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--sand);
  color: var(--charcoal);
}

/* ── Cards ── */
.included { background: var(--sand); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--warm-gray); }

.price-banner {
  margin-top: 3rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}
.price-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.price-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
}
.price-amount span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.7;
}

/* ── Gallery ── */
.gallery-section { padding-bottom: 2rem; }
.gallery-grid {
  display: flex;
  gap: 0.75rem;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--olive) var(--sand);
}
.gallery-grid::-webkit-scrollbar {
  height: 8px;
}
.gallery-grid::-webkit-scrollbar-track {
  background: var(--sand);
  border-radius: 4px;
}
.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--olive);
  border-radius: 4px;
}
.gallery-item {
  flex: 0 0 auto;
  width: clamp(200px, 25vw, 280px);
  height: clamp(200px, 25vw, 280px);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42,40,38,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(42,40,38,0.12); }
.gallery-cta {
  text-align: center;
  padding: 3rem 0 1rem;
}

/* ── Linda quote ── */
blockquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--warm-gray);
  line-height: 1.5;
}
blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Location ── */
.location { background: var(--sand); }
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-card address {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 0.6rem; }

.contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  margin: -0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.contact-link:hover { background: var(--sand); }
.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact-link span:last-child {
  font-size: 1rem;
  font-weight: 400;
}

.social-note {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1.5px solid var(--sand);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
}
.social-btn.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: transparent;
}
.social-btn.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: transparent;
}
.social-btn.tiktok:hover {
  background: #111111;
  color: white;
  border-color: transparent;
}

/* ── Book section ── */
.book {
  background: var(--charcoal);
  color: var(--cream);
}
.book .section-eyebrow { color: var(--gold-light); }
.book .lead { color: rgba(247,243,236,0.7); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.book-perks {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.book-perks li {
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(247,243,236,0.8);
}
.book-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.book-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.book-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.form-group { margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.optional { font-weight: 300; opacity: 0.6; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247,243,236,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { color: var(--charcoal); background: var(--cream); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 0.78rem;
  color: rgba(247,243,236,0.45);
  text-align: center;
  margin-top: 0.75rem;
}
.field-hint {
  font-size: 0.75rem;
  color: rgba(247,243,236,0.4);
  margin-top: 0.35rem;
}
.form-error {
  font-size: 0.82rem;
  color: #e8a0a0;
  text-align: center;
  margin-top: 0.75rem;
}
.form-error a { color: var(--gold-light); text-decoration: underline; }
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.btn-loading { display: inline; }
#book-submit:disabled { opacity: 0.7; cursor: wait; }

/* ── Booking modal ── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42,40,38,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.booking-modal.open {
  opacity: 1;
  visibility: visible;
}
.booking-modal[hidden] { display: none; }
.booking-modal:not([hidden]) { display: flex; }
.booking-modal-card {
  background: var(--cream);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}
.booking-modal.open .booking-modal-card {
  transform: translateY(0) scale(1);
}
.thank-you-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.booking-modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.booking-modal-card p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.booking-modal-detail {
  font-weight: 500;
  color: var(--charcoal) !important;
  margin: 1rem 0 1.5rem !important;
  font-size: 0.88rem !important;
}

/* ── Thank you page ── */
.thank-you-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
}
.thank-you {
  padding: 2rem;
  width: 100%;
}
.thank-you-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thank-you-card h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.thank-you-card .lead { margin-bottom: 1.5rem; }
.thank-you-card .book-perks {
  text-align: left;
  margin: 1.5rem auto;
  max-width: 280px;
}
.thank-you-card .book-perks li {
  color: var(--warm-gray);
  padding-left: 1.25rem;
}
.thank-you-card .book-perks li::before { color: var(--sage); }
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.thank-you-actions .btn-ghost-light {
  border-color: var(--sand);
  color: var(--charcoal);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
  color: rgba(247,243,236,0.6);
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { width: 100%; text-align: center; font-size: 0.75rem; opacity: 0.5; }

/* ── Mobile CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.mobile-cta:hover { transform: translateX(-50%) translateY(-2px); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42,40,38,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox[hidden] { display: none; }
.lightbox:not([hidden]) { display: flex; }
#lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  z-index: 201;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.1); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247,243,236,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split, .split-reverse,
  .location-grid, .book-grid {
    grid-template-columns: 1fr;
  }
  .split-reverse { direction: ltr; }
  .stack-accent { bottom: -1.5rem; right: -0.5rem; }
  .gallery-item { width: clamp(180px, 30vw, 240px); height: clamp(180px, 30vw, 240px); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(42,40,38,0.97);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    color: var(--cream) !important;
    font-size: 1rem;
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
  }
  .hero-scroll { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-item { width: clamp(150px, 35vw, 200px); height: clamp(150px, 35vw, 200px); }
  .mobile-cta { display: block; }
  .price-banner-inner { flex-direction: column; text-align: center; }
  body { padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  .gallery-item { width: clamp(130px, 40vw, 160px); height: clamp(130px, 40vw, 160px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
