/* ==========================================================================
   Reed Ranch — Site Stylesheet
   Editorial wedding venue design system
   ========================================================================== */

/* ---- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---- Tokens ---- */
:root {
  --cream: #F8F4ED;
  --cream-2: #F1ECE2;
  --forest: #1F2A1E;
  --forest-soft: #2A332B;
  --sage: #A8B5A0;
  --sage-deep: #859079;
  --gold: #B8956A;
  --gold-deep: #9D7C54;
  --bone: #FAF7F1;
  --line: rgba(31,42,30,0.14);
  --line-soft: rgba(31,42,30,0.08);
  --shadow-soft: 0 10px 40px -20px rgba(31,42,30,0.30);
  --shadow-card: 0 24px 60px -32px rgba(31,42,30,0.35);

  --serif: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
  --sans:  'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --container-narrow: 920px;

  --nav-h: 78px;
}

/* ---- Body ---- */
body {
  font-family: var(--sans);
  color: var(--forest);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--forest);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  line-height: 1.5;
  color: var(--forest-soft);
  font-weight: 400;
}

p { color: #3F4A3F; }
.muted { color: rgba(31,42,30,0.65); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }

.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto;
  display: block;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.nav.is-scrolled,
.nav.is-solid {
  background: rgba(248,244,237,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--forest);
  white-space: nowrap;
}
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.83rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  border: 0;
}
.nav-cta:hover { background: var(--gold-deep); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px; height: 1.5px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 48px 32px;
    align-items: flex-start;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.83rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid currentColor;
  color: var(--forest);
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-cream {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--bone); border-color: var(--bone); color: var(--forest); }
.btn-ghost-light {
  color: var(--cream);
  border-color: rgba(248,244,237,0.55);
}
.btn-ghost-light:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--forest);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68);
  transform: scale(1.04);
  animation: heroZoom 24s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.04); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,15,0.55) 0%, rgba(15,20,15,0.20) 30%, rgba(15,20,15,0.55) 65%, rgba(15,20,15,0.85) 100%),
    linear-gradient(90deg, rgba(15,20,15,0.30) 0%, rgba(15,20,15,0) 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 10vw, 120px);
  padding-top: calc(var(--nav-h) + 32px);
}
.hero h1 {
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 1;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--cream);
  display: inline;
}
.hero-sub {
  color: #FFFFFF;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  margin-top: 20px;
  max-width: 38ch;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.4);
}
.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before { background: var(--gold); }
.hero-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: var(--cream);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@media (max-width: 700px) {
  .hero-scroll { display: none; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.2); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.hero-compact {
  min-height: 64vh;
  min-height: 64svh;
}
.hero-compact .hero-content { padding-bottom: clamp(48px, 6vw, 80px); padding-top: calc(var(--nav-h) + 64px); }
.hero-compact h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }

/* ---- Page intro (smaller pages) ---- */
.page-intro {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
}
.page-intro .eyebrow { display: inline-block; }
.page-intro h1 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}
.page-intro p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  margin: 24px auto 0;
  max-width: 56ch;
  color: var(--forest-soft);
}

/* ---- Sections ---- */
.section-cream-2 { background: var(--cream-2); }
.section-bone { background: var(--bone); }
.section-forest { background: var(--forest); color: var(--cream); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--cream); }
.section-forest p { color: rgba(248,244,237,0.85); }
.section-forest .eyebrow { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-img-tall { aspect-ratio: 4/5; overflow: hidden; }
.split-img-tall img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.split-img-wide { aspect-ratio: 5/4; overflow: hidden; }
.split-img-wide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.split-reverse-mobile > :first-child { order: 2; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--forest-soft);
}

/* ---- Cards (packages, testimonials etc) ---- */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .card-grid-2 { grid-template-columns: 1fr; } .card-grid-3 { grid-template-columns: 1fr; } }

.package-card {
  background: var(--bone);
  padding: 56px 44px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.package-card.is-featured {
  background: var(--forest);
  color: var(--cream);
  border: 0;
}
.package-card.is-featured h3, .package-card.is-featured h4 { color: var(--cream); }
.package-card.is-featured p { color: rgba(248,244,237,0.82); }
.package-card.is-featured .package-price { color: var(--gold); }
.package-card.is-featured .package-features li { border-color: rgba(248,244,237,0.16); }
.package-card.is-featured .package-features li::before { color: var(--gold); }
.package-card.is-featured .btn { color: var(--cream); border-color: rgba(248,244,237,0.55); }
.package-card.is-featured .btn:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.package-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.package-name {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 8px;
}
.package-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--forest-soft);
  margin-bottom: 28px;
}
.package-card.is-featured .package-tagline { color: rgba(248,244,237,0.78); }
.package-price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-deep);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}
.package-price small {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-soft);
  display: block;
  margin-top: 6px;
  font-weight: 500;
}
.package-features {
  margin: 36px 0;
  flex-grow: 1;
}
.package-features li {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.package-features li:last-child { border-bottom: 1px solid var(--line-soft); }
.package-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---- Testimonial ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 40px 32px;
  background: var(--bone);
  border: 1px solid var(--line-soft);
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--forest);
}
.testimonial-quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 3.2rem;
  display: block;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 12px;
}
.testimonial-attr {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-soft);
  font-weight: 500;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.pull-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  color: var(--forest);
  font-weight: 400;
}
.pull-quote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ---- Gallery ---- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  margin-bottom: 56px;
}
.gallery-filter {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  color: var(--forest-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.gallery-filter:hover { color: var(--forest); }
.gallery-filter.is-active { color: var(--forest); border-color: var(--gold); }

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity 0.3s, transform 0.3s;
  background: var(--cream-2);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.is-hidden { display: none; }

/* Gallery teaser strip on home */
.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.gallery-strip a { overflow: hidden; }
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Anchor the crop toward the upper portion of each image so faces stay in frame. */
  object-position: 50% 28%;
  transition: transform 0.7s;
}
.gallery-strip a:hover img { transform: scale(1.06); }
.gallery-strip a:nth-child(1) { grid-row: 1 / 3; }
.gallery-strip a:nth-child(1) img { object-position: 50% 18%; }
@media (max-width: 800px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 220px 220px; }
  .gallery-strip a:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-strip a:nth-child(1) img { object-position: 50% 22%; }
}
@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; grid-template-rows: 420px repeat(4, 220px); gap: 12px; }
  .gallery-strip a:nth-child(1) { grid-column: 1; grid-row: 1; }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,20,15,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  color: var(--cream);
  font-size: 28px;
  font-family: var(--serif);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  color: var(--cream);
  font-size: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--forest);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  margin-top: 8px;
  transition: transform 0.4s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%; top: 50%;
}
.faq-icon::before { width: 16px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 16px; transform: translate(-50%, -50%); transition: transform 0.4s; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 32px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 64ch;
}
.faq-item.is-open .faq-answer { max-height: 600px; }

/* ---- Forms ---- */
.form-wrap {
  background: var(--bone);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--forest);
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--forest);
  color: var(--cream);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  z-index: 3000;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-card);
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ---- Comparison table (packages page) ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.compare-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-soft);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.compare-table td.has-check {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.compare-table td.no-check { text-align: center; color: rgba(31,42,30,0.3); }
.compare-table th.col-pkg { color: var(--forest); font-family: var(--serif); font-size: 1.1rem; letter-spacing: normal; text-transform: none; text-align: center; }

/* ---- Map / contact bits ---- */
.map-frame {
  width: 100%;
  aspect-ratio: 16/8;
  border: 0;
  background: var(--cream-2);
}
@media (max-width: 700px) { .map-frame { aspect-ratio: 4/5; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dl { display: grid; gap: 28px; margin-top: 32px; }
.contact-info dt {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-info dd {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--forest);
}

/* ---- Stat strip ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 72px 0;
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-top: 12px;
  font-weight: 500;
}

/* ---- Spaces (venue page) ---- */
.spaces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .spaces { grid-template-columns: 1fr; } }
.space-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.space-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transition: transform 0.7s ease;
}
.space-card:hover img { transform: scale(1.04); }
.space-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,42,30,0) 35%, rgba(15,20,15,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--cream);
}
.space-card-body h3 { color: var(--cream); margin-bottom: 6px; font-size: 1.6rem; }
.space-card-body p { color: rgba(248,244,237,0.85); font-size: 0.95rem; }

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  max-width: 22ch;
  margin: 0 auto 24px;
}
.cta-banner p {
  color: rgba(248,244,237,0.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 50ch;
  margin: 0 auto 36px;
}

/* ---- Footer ---- */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer a { color: var(--cream); transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(248,244,237,0.75);
  font-size: 1rem;
  max-width: 30ch;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col p { color: rgba(248,244,237,0.78); margin-bottom: 12px; }
.footer-news input {
  width: 100%;
  background: rgba(248,244,237,0.06);
  border: 1px solid rgba(248,244,237,0.18);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-news input::placeholder { color: rgba(248,244,237,0.45); }
.footer-news input:focus { outline: 0; border-color: var(--gold); }
.footer-news .btn { width: 100%; }
.footer-bottom {
  border-top: 1px solid rgba(248,244,237,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(248,244,237,0.5);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(248,244,237,0.2);
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); }
.social-links svg { width: 16px; height: 16px; }

/* ---- 404 ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  background: var(--cream);
}
.error-page h1 {
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}
.error-page h2 { margin-top: 8px; margin-bottom: 24px; }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .hero-scroll-line { animation: none; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---- Print niceties ---- */
@media print {
  .nav, .footer, .toast, .lightbox { display: none !important; }
  body { background: white; color: black; }
}

/* ---- Article body (blog posts) ---- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.78;
  color: #2A332B;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 56px 0 18px;
  color: var(--forest);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 40px 0 14px;
  color: var(--forest);
}
.article-body p { margin-bottom: 22px; }
.article-body p:first-of-type { font-size: 1.25rem; line-height: 1.6; color: var(--forest-soft); font-family: var(--serif); font-style: italic; }
.article-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--forest); }
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  padding-left: 16px;
}
.article-body ul li { list-style: disc; margin-bottom: 10px; }
.article-body ol li { list-style: decimal; margin-bottom: 10px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 36px 0;
  padding: 12px 0 12px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
}
.article-body strong { color: var(--forest); font-weight: 600; }
.article-body hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 48px auto;
  width: 80px;
}

.article-header {
  text-align: center;
  padding: calc(var(--nav-h) + 64px) 0 40px;
  max-width: 760px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-soft);
  font-weight: 500;
}
.article-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  margin-bottom: 64px;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }
