/* =============================================================
   site.css — foundation + legacy/page styles
   Ownership:
   - design tokens, reset, base elements
   - foundational layout primitives and legacy page-specific rules
   - avoid editing shared nav/button/CTA cadence here
   Shared system ownership lives in:
   - components.css (shared nav/button/CTA/type system)
   - polish.css (accents/motion/focus polish)
   - responsive.css (mobile/tablet breakpoint behavior)
   ============================================================= */

:root {
  color-scheme: light;
  --ivory: #faf7f2;
  --ivory-deep: #f2ede4;
  --white: #ffffff;
  --ink: #1c1916;
  --ink-mid: #3a3530;
  --stone: #5a5148;
  --gold: #b8975a;
  --gold-light: #c9a96e;
  --gold-pale: #e8d5b0;
  --warm-border: rgba(184, 151, 90, 0.14);
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;
  --font-script: "Great Vibes", cursive;
  --side-pad: clamp(20px, 5vw, 80px);
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 8px;
  --content-max: 1100px;
  --reading-max: 760px;
  --space-1: 24px;
  --space-2: 48px;
  --space-3: 96px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  background-color: var(--ivory);
  background-image: radial-gradient(
    ellipse at 50% 0%,
    #ffffff 0%,
    var(--ivory) 40%,
    #f0e9df 100%
  );
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.hero-bg,
.page-hero-bg {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 26px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--ease-slow),
    padding var(--ease-slow),
    box-shadow var(--ease-slow);
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 22, 0.65) 0%,
    rgba(28, 25, 22, 0.35) 60%,
    transparent 100%
  );
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px var(--side-pad);
  box-shadow: 0 1px 0 var(--warm-border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition:
    color var(--ease),
    text-shadow var(--ease);
  flex-shrink: 0;
  text-shadow:
    0 1px 3px rgba(28, 25, 22, 1),
    0 0 12px rgba(28, 25, 22, 0.9),
    0 2px 20px rgba(28, 25, 22, 0.8);
}
nav.scrolled .nav-logo {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-shadow: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color var(--ease);
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(28, 25, 22, 0.5);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
nav.scrolled .nav-links a {
  color: var(--stone);
}
nav.scrolled .nav-links a:hover {
  color: var(--ink);
}
.nav-links a.nav-active:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.95) !important;
}
.nav-links a.nav-active:not(.nav-cta)::after {
  width: 100%;
  background: var(--gold-light);
  opacity: 0.8;
}
nav.scrolled .nav-links a.nav-active:not(.nav-cta) {
  color: var(--ink) !important;
}
nav.scrolled .nav-links a.nav-active:not(.nav-cta)::after {
  background: var(--gold) !important;
}
.nav-links > li:has(.nav-cta) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-avail-badge {
  display: none;
}
.nav-avail-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  line-height: 1;
}
.nav-avail-link:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
/* When nav is scrolled (ivory bg) — switch to gold-toned pill */
nav.scrolled .nav-avail-link {
  background: rgba(184, 151, 90, 0.1);
  border-color: rgba(184, 151, 90, 0.3);
  color: var(--ink);
}
nav.scrolled .nav-avail-link:hover {
  background: rgba(184, 151, 90, 0.18);
  color: var(--ink);
}
/* Hide on mobile — not enough room */
@media (max-width: 768px) {
  .nav-links .nav-avail-badge {
    display: none !important;
  }
}
.nav-avail-badge--drawer {
  width: 100%;
}
.nav-avail-link--drawer {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  background: rgba(184, 151, 90, 0.12);
  border: 1px solid rgba(184, 151, 90, 0.35);
  color: var(--ink);
}
.nav-cta {
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  transition: all var(--ease);
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
nav.scrolled .nav-cta {
  border-color: var(--warm-border);
  color: var(--ink);
}
nav.scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition:
    transform var(--ease),
    opacity var(--ease),
    background var(--ease);
  transform-origin: center;
}
nav.scrolled .nav-toggle span {
  background: var(--ink);
}
.nav-toggle.open span {
  background: var(--ink);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  background: var(--ivory);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer-logo {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  height: 68px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(28, 25, 22, 0.1);
  background: var(--ivory);
}
.nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-drawer ul li {
  padding: 0;
}
.nav-drawer ul a {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 11px 40px;
  border-bottom: 1px solid rgba(28, 25, 22, 0.08);
  transition: color 0.2s ease;
}
.nav-drawer ul a:hover {
  color: var(--gold);
}
.drawer-cta {
  margin: 24px auto;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--ink);
  padding: 14px 40px;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}
.drawer-cta:hover {
  background: var(--gold);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 151, 90, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(184, 151, 90, 0.15);
  }
}
.page-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(48px, 8vh, 80px);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 36px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-outline::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-primary:hover::after,
.btn-outline:hover::after,
.btn-ghost:hover::after {
  transform: translateX(100%);
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #2a2620;
  color: var(--white);
  border-color: var(--ink);
}
.btn-outline {
  background: #ffffff;
  color: #1c1916;
  border: 1px solid rgba(0,0,0,0.08);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: var(--section-label-mb);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--ink-mid);
}
.section-title:hover em {
  color: var(--gold);
  transition: color 0.3s ease;
}
.divider-gold {
  width: 52px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent
  );
  margin: var(--section-title-divider-mt) auto var(--section-title-divider-mb);
}
.divider-gold--hero {
  width: 72px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light) 15%,
    var(--gold) 50%,
    var(--gold-light) 85%,
    transparent
  );
  box-shadow: 0 0 12px rgba(184, 151, 90, 0.25);
}
.body-copy {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink-mid);
}
.micro-link {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--stone);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color var(--ease);
}
.micro-link:hover {
  color: var(--ink);
}
.micro-link span {
  transition: transform var(--ease);
}
.micro-link:hover span {
  transform: translateX(4px);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-image:hover img {
  transform: scale(1.03);
}
.story-image-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-body {
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink-mid);
  margin: clamp(18px, 2.2vw, 24px) 0 14px;
  max-width: 480px;
}
.story-stat-row {
  display: flex;
  gap: clamp(24px, 5vw, 48px);
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 300;
}
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 340px 340px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
}
.gallery-cell.tall {
  grid-row: span 2;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-cell:hover img {
  transform: scale(1.03);
}
.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 22, 0);
  transition: background var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-cell:hover .gallery-cell-overlay {
  background: rgba(28, 25, 22, 0.3);
}
.gallery-overlay-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--ease);
}
.gallery-cell:hover .gallery-overlay-text {
  opacity: 1;
  transform: translateY(0);
}
.gallery-cta-cell {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
}
.gallery-cta-cell p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  line-height: 1.4;
}
.testimonials {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ivory);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1140px;
  margin: 0 auto var(--space-md);
}
.testimonial-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 40px);
  border-top: 1px solid var(--warm-border);
  border-left: 2px solid transparent;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(28, 25, 22, 0.06);
  border-left-color: var(--gold);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0.5;
  color: rgba(184, 151, 90, 0.25);
  display: block;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}
.testimonial-author-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.author-name {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.author-detail {
  font-size: 0.66rem;
  font-weight: 300;
  color: var(--ink-mid);
}
.stars {
  color: var(--gold-light);
  opacity: 0.85;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.venue-teaser {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 65vh;
}
.venue-image {
  overflow: hidden;
  order: 1;
}
.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.venue-image:hover img {
  transform: scale(1.03);
}
.venue-content {
  background: var(--ivory-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
.venue-body {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink-mid);
  margin: 20px 0 36px;
  max-width: 460px;
}
.cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: clamp(32px, 5vw, 44px);
  pointer-events: none;
}
.cta-band .section-label {
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.36em;
}
.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 18px 0 12px;
  text-shadow: 0 2px 18px rgba(8, 7, 6, 0.28);
}
.cta-band-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: clamp(28px, 4vw, 40px);
  text-shadow: 0 1px 10px rgba(8, 7, 6, 0.22);
}
.cta-band-sub {
  font-size: clamp(0.62rem, 1.45vw, 0.76rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: clamp(36px, 5vw, 48px);
  text-transform: uppercase;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  background: var(--ink);
  padding: clamp(80px, 11vw, 112px) var(--side-pad) clamp(52px, 7vw, 72px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(48px, 7vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.96);
  text-decoration: none;
  display: block;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.52);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 32ch;
}
.footer-col-title {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.55);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--ease);
}
.footer-links a:hover {
  color: rgba(250, 247, 242, 0.92);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(36px, 5vw, 48px);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.32);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-copy:hover {
  color: rgba(250, 247, 242, 0.65);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
body:not(.js-loaded) .reveal {
  opacity: 1;
  transform: none;
}
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s ease,
    opacity 0.3s ease,
    width 0.25s ease,
    height 0.25s ease;
  mix-blend-mode: multiply;
  opacity: 0;
}
#cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 151, 90, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease,
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.3s ease;
  opacity: 0;
}
body:hover #cursor-dot,
body:hover #cursor-ring {
  opacity: 1;
}
a:hover ~ #cursor-ring,
button:hover ~ #cursor-ring {
  width: 48px;
  height: 48px;
}
.nav-links .nav-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}
nav.scrolled .nav-links .nav-cta {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media print {
  nav,
  .cta-band,
  footer {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .page-hero {
    height: 40vh;
  }
}
.statement {
  padding: clamp(80px, 12vw, 140px) var(--side-pad);
  text-align: center;
  background: var(--ivory);
  border-top: 1px solid var(--warm-border);
}
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.28;
  color: var(--ink);
  max-width: min(48ch, calc(100vw - 40px));
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.statement-text em {
  font-style: italic;
  color: var(--gold);
}
.feature-quote {
  background: var(--ink);
  padding: clamp(72px, 10vw, 120px) var(--side-pad);
  text-align: center;
}
.feature-quote-mark {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.5;
  color: rgba(184, 151, 90, 0.2);
  display: block;
  margin-bottom: 32px;
}
.feature-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.92);
  max-width: min(42ch, 94vw);
  margin: 0 auto 36px;
}
.feature-quote-attr {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}
.feature-quote-detail {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.38);
  display: block;
  margin-top: 8px;
}
.testimonials {
  padding-top: clamp(40px, 5vw, 64px);
}
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.04s;
}
.delay-2 {
  transition-delay: 0.08s;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.divider-gold {
  width: 72px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
}
.body-copy {
  line-height: 1.68;
}
.story-body {
  line-height: 1.68;
  max-width: 520px;
}
.venue-body {
  line-height: 1.68;
}
.hero-eyebrow {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-title {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-script {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.hero-subtitle {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
.hero-actions {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}
.page-eyebrow {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.page-title {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.page-script {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.testimonial-card {
  border-left: 2px solid transparent;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(28, 25, 22, 0.08);
  border-left-color: var(--gold);
}
.feature-quote-attr {
  position: relative;
  display: inline-block;
  padding-top: 24px;
}
.feature-quote-attr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.space-image {
  min-height: 65vh;
}
.pkg-card.featured {
  border-color: var(--gold);
  border-top: 3px solid var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 25, 22, 0.1);
}
.pkg-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(28, 25, 22, 0.14);
}
.pkg-card.featured .pkg-card-img {
  height: 220px;
}
.micro-link {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
footer {
  border-top: 1px solid rgba(184, 151, 90, 0.12);
}
.scroll-line {
  height: 64px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}
.stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
}
.gallery-cell img,
.space-image img,
.split-img img,
.pkg-card-img img,
.micro-image img,
.lodging-img-wrap img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pull-quote blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.5;
}
.pull-quote-mark {
  font-size: 6rem;
  opacity: 0.08;
}
.statement-text {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-script,
  .hero-subtitle,
  .hero-actions,
  .page-eyebrow,
  .page-title,
  .page-script {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.page-hero-content .page-eyebrow {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.page-hero-content .page-title {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.page-hero-content .page-script {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.page-hero-content .hero-sub,
.page-hero-content .btn-primary {
  animation: fadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
.step-card {
  transition:
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}
.space-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
.space-tag {
  font-size: 0.55rem;
  letter-spacing: 0.44em;
  color: var(--gold);
}
.space-capacity {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--stone);
  opacity: 0.8;
}
.pull-quote cite {
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.62rem;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.08);
}
.filter-btn,
.faq-filter-btn {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-dot {
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.timeline-item:hover .timeline-dot {
  border-color: var(--gold);
  background: var(--ivory-deep);
}
.timeline-dot span {
  transition: color 0.3s ease;
}
.timeline-item:hover .timeline-dot span {
  color: var(--gold);
}
.feature-quote-text {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  line-height: 1.55;
}
.feature-quote-mark {
  font-size: clamp(5rem, 10vw, 8rem);
}
.lodging-price {
  transition: color 0.3s ease;
}
.lodging-two-col:hover .lodging-price {
  color: var(--gold-light);
}
.pkg-price {
  transition: color 0.3s ease;
}
.pkg-card:hover .pkg-price {
  color: var(--gold-light);
}
.micro-price {
  transition: color 0.3s ease;
}
.micro-card:hover .micro-price {
  color: var(--gold-light);
}
.nav-drawer ul a {
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  letter-spacing: 0.02em;
}
.footer-brand-name {
  font-size: 0.94rem;
  letter-spacing: 0.17em;
}
.area-stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-content .page-eyebrow,
  .page-hero-content .page-title,
  .page-hero-content .page-script,
  .page-hero-content .hero-sub,
  .page-hero-content .btn-primary {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.story,
.venue-content,
.inner-section-alt,
.inclusions,
.pull-quote,
.spaces-intro,
.testimonials {
  position: relative;
}
.story::after,
.venue-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-pale) 30%,
    var(--gold-pale) 70%,
    transparent
  );
  opacity: 0.5;
  pointer-events: none;
}
.inner-section {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 100%
  );
}
.statement {
  background: linear-gradient(
    to bottom,
    var(--ivory-deep) 0%,
    var(--ivory) 100%
  );
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.divider-gold {
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent
  );
  opacity: 0.7;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}
nav.scrolled {
  background: rgba(250, 246, 240, 0.97);
}
footer {
  background: #181411;
  border-top: 1px solid rgba(184, 151, 90, 0.12);
}
.testimonial-card,
.pkg-card,
.micro-card,
.hotel-card,
.restaurant-card,
.step-card,
.thing-card {
  background: #fefcf8;
}
.feature-quote {
  background: #181411;
}
.pull-quote {
  background: linear-gradient(to bottom, var(--ivory-deep), #ede4d8);
}
.mh-mid-bleed-bg {
  animation: heroZoom 28s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg,
  .ceremony-hero-bg,
  .mh-mid-bleed-bg {
    animation: none;
  }
  body {
    background-attachment: scroll;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.intro-image img,
.split-img img,
.venue-image img,
.story-image img,
.micro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}



@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-script,
  .hero-subtitle,
  .hero-actions,
  .page-eyebrow,
  .page-title,
  .page-script,
  .page-hero-content .hero-sub,
  .page-hero-content .btn-primary {
    animation: none;
    opacity: 1;
    transform: none;
  }
  body {
    background-attachment: scroll;
  }
}
@media print {
  nav,
  .cta-band,
  footer {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .page-hero {
    height: 40vh;
  }
}

.intro-image img {
  object-position: center 25%;
}
picture {
  display: block;
  width: 100%;
  height: 100%;
}
picture img {
  display: block;
  width: 100%;
  height: 100%;
}
/* Do not strip hero backgrounds based on image-set() support — url(...webp) works everywhere we target. */

/* Global site refinements */
:root {
  --section-pad-tight: clamp(48px, 6vw, 88px);
  --content-max: 1200px;
  --reading-max: min(52ch, 720px);
  --shadow-soft: 0 18px 45px rgba(28, 25, 22, 0.08);
  --shadow-lift: 0 28px 80px rgba(28, 25, 22, 0.12);
  --ring-light: 0 0 0 1px rgba(184, 151, 90, 0.12);
}

body {
  background-image:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 242, 0.98) 34%, rgba(240, 233, 223, 0.94) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(250, 247, 242, 0));
}

::selection {
  background: rgba(184, 151, 90, 0.22);
  color: var(--ink);
}

a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(184, 151, 90, 0.8);
  outline-offset: 3px;
}

nav {
  backdrop-filter: saturate(120%) blur(8px);
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.9);
  box-shadow: 0 10px 30px rgba(28, 25, 22, 0.05);
}

.nav-links {
  gap: clamp(18px, 2vw, 30px);
}

.nav-links a {
  letter-spacing: 0.18em;
}

.section-title,
.page-title,
.hero-title,
.cta-band-title {
  text-wrap: balance;
}

.section-title {
  line-height: 1.04;
}

.body-copy,
.story-body,
.venue-body,
.section-intro {
  max-width: var(--reading-max);
}

.story,
.venue-teaser {
  position: relative;
  align-items: stretch;
}

.story-content,
.venue-content {
  position: relative;
}

.story-content::before,
.venue-content::before,
.split-content::before {
  content: "";
  position: absolute;
  inset: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(184, 151, 90, 0.14);
  pointer-events: none;
}

.story-content,
.split-content,
.venue-content {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.38), rgba(250,247,242,0));
}

.story-body,
.venue-body {
  font-size: clamp(0.94rem, 1.6vw, 1.02rem);
  line-height: 1.68;
}

.story-stat-row {
  padding-top: 8px;
}

.stat-item {
  min-width: 110px;
}

.stat-num {
  margin-bottom: 2px;
}

.gallery-teaser {
  gap: 12px;
  padding: clamp(12px, 2vw, 18px);
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(242,237,228,0.75));
}

.gallery-cell,
.gallery-cta-cell,
.story-image,
.venue-image,
.split-img,
.testimonial-card {
  border-radius: 24px;
}

.gallery-cell,
.gallery-cta-cell,
.story-image,
.venue-image,
.split-img {
  box-shadow: var(--shadow-soft);
}

.gallery-cell-overlay {
  background: linear-gradient(to top, rgba(28, 25, 22, 0.22), rgba(28, 25, 22, 0));
}

.gallery-cell:hover .gallery-cell-overlay {
  background: linear-gradient(to top, rgba(28, 25, 22, 0.42), rgba(28, 25, 22, 0.08));
}

.gallery-cta-cell {
  background: linear-gradient(160deg, #1d1814 0%, #342b24 100%);
  box-shadow: var(--shadow-lift);
}

.feature-quote,
.pull-quote {
  position: relative;
  overflow: hidden;
}

.feature-quote::before,
.pull-quote::before,
.cta-band::after,
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-quote::before {
  background: radial-gradient(circle at top, rgba(184, 151, 90, 0.16), transparent 46%);
}

.testimonials {
  background: linear-gradient(180deg, rgba(250,247,242,0) 0%, rgba(255,255,255,0.55) 100%);
}

.testimonials-grid {
  gap: 28px;
}

.testimonial-card {
  border: 1px solid rgba(184, 151, 90, 0.12);
  border-left: 1px solid rgba(184, 151, 90, 0.12);
  box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.testimonial-card {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(250,247,242,0.92));
}

.cta-band::after {
  background: radial-gradient(circle at 50% 0%, rgba(184, 151, 90, 0.09), transparent 52%);
  z-index: 1;
}

.cta-band-content {
  max-width: 900px;
}

footer {
  position: relative;
  background: linear-gradient(180deg, #161310 0%, #211b17 100%);
}

footer::before {
  background: radial-gradient(circle at 50% 0%, rgba(184, 151, 90, 0.07), transparent 48%);
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}





/* Site-wide layout consistency */
body[data-page] {
  position: relative;
}
main {
  position: relative;
  isolation: isolate;
}
main > section,
main > div {
  position: relative;
}
.nav-links {
  gap: clamp(16px, 1.8vw, 26px);
}
.nav-links a {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}
.nav-drawer ul a.nav-active,
.nav-drawer ul a[aria-current='page'] {
  color: var(--gold);
}
.nav-drawer ul a.nav-active::after,
.nav-drawer ul a[aria-current='page']::after {
  content: '—';
  margin-left: 0.55rem;
  color: var(--gold);
}
.page-hero::after,
.ceremony-hero::after,
.contact-hero::after,
.policy-hero::after {
  display: none;
}
.hero-right-inner,
.policy-hero {
  text-wrap: balance;
}
.page-hero-content > .page-title,
.hero-title,
.cta-band-title,
.section-title {
  text-wrap: balance;
}
.page-hero-content > .page-script,
.hero-script,
.cta-band-script,
.page-script {
  text-wrap: pretty;
}
.hero-right-inner {
  max-width: min(920px, calc(100% - 2rem));
}
.page-hero-content > :last-child,
.hero-content > :last-child,
.hero-right-inner > :last-child {
  margin-bottom: 0;
}
.cta-band-content,
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title,
.cta-band-title,
.cta-title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.story .section-title,
.story .story-body,
.split .section-title,
.split .body-copy,
.space-content .space-title,
.space-content .space-body,
.pkg-body,
.pkg-name,
.philosophy-text .section-title,
.philosophy-text .body-copy,
.intro-text .section-title,
.intro-text .body-copy,
.pricing-intro .section-title,
.pricing-intro .section-intro,
.gallery-header .section-title,
.gallery-header .section-intro,
.spaces-intro .section-title,
.spaces-intro .body-copy,
.area-section-header .section-title,
.area-section-header .section-intro,
.faq-page-wrap .section-title,
.faq-page-wrap .section-intro,
.policy-body h2,
.policy-body p,
.policy-body li {
  max-width: 48ch;
}
.story-content,
.split-content,
.intro-text,
.philosophy-text,
.space-content,
.pkg-body,
.contact-info-inner,
.policy-highlight,
.hotel-card,
.restaurant-card,
.step-card,
.micro-card,
.pkg-card {
  position: relative;
}
.story-content::before,
.split-content::before,
.intro-text::before,
.philosophy-text::before,
.contact-info-inner::before,
.policy-highlight::before {
  content: '';
  position: absolute;
  inset: 20px 0 20px -22px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 151, 90, 0.7), transparent);
}
.story + .hosts-section,
.story + .gallery-teaser,
.hosts-section + .statement,
.gallery-teaser + .testimonials,
.testimonials + .venue-teaser,
.venue-teaser + .cta-band,
.inner-section + .inner-section,
.pull-quote + .inner-section,
.area-section + .area-section,
.area-section + .cta-band,
.space-card + .space-card,
.packages + .cta-band,
.faq-page-wrap + .cta-band,
.gallery-grid + .cta-band,
.contact-hero + .contact-info,
.policy-hero + .policy-body {
  margin-top: clamp(24px, 4vw, 44px);
}
.hotel-card,
.restaurant-card,
.step-card,
.micro-card,
.pkg-card,
.policy-highlight,
.contact-info-inner,
.filter-bar,
.faq-filter-bar,
.area-hero-strip,
.featured,
.rain-note-inner {
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(28, 25, 22, 0.05);
}
.filter-bar,
.faq-filter-bar,
.area-hero-strip {
  border: 1px solid rgba(184, 151, 90, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cta-band,
.gallery-cta-band {
  padding-inline: var(--side-pad);
}
.cta-band::before,
.gallery-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 17, 15, 0.1), rgba(19, 17, 15, 0.42));
  z-index: 0;
}
.cta-band-content,
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 68px) clamp(24px, 4vw, 56px);
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-align: center;
}
.cta-band-title,
.cta-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-band-script,
.cta-script,
.cta-band-sub,
.cta-sub,
.cta-band-label,
.cta-band-actions,
.cta-band-btns {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-band-sub,
.cta-sub {
  max-width: 58ch;
}
.cta-band-actions,
.cta-band-btns,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-band-btns {
  width: 100%;
  align-items: center;
}
.footer-top {
  gap: clamp(28px, 4vw, 64px);
}
.footer-links li + li {
  margin-top: 6px;
}
.footer-brand-name,
.footer-col-title {
  text-wrap: balance;
}



/* Final shared layout adjustments */
img[width][height]{height:auto;}
.hero,.page-hero{overflow:hidden;}
.cta-band,.gallery-cta-band{scroll-margin-top:96px;}



/* img border-radius intentionally removed — applied per-component only */

.hero::before,
.page-hero::before,
.contact-hero::before,
.ceremony-hero::before,
.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.14));
  z-index: 1;
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
}

.nav-links a,
.nav-more-btn {
  position: relative;
}

.nav-links a::after,
.nav-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-more-btn:hover::after,
.nav-more.open .nav-more-btn::after {
  width: 100%;
}

.pkg-card,
.micro-card,
.faq-page-item {
  border-radius: 18px;
}



/* Final hero and CTA polish */

.page-script {
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

body[data-page="index"] .hero::after,
body[data-page="index"] .hero-subtitle {
  display: none !important;
}

body[data-page="index"] .gallery-teaser {
  align-items: stretch;
}

body[data-page="index"] .gallery-cell,
body[data-page="index"] .gallery-cta-cell {
  min-height: 260px;
}

body[data-page="index"] .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="index"] .gallery-cta-cell {
  justify-content: center;
}

/* Legacy nav/hero typography hard overrides removed.
   Nav tone and hero type rhythm are controlled by shared system layers. */

/* Legacy hero/CTA hard overrides removed.
   Shared hero + CTA rhythm is defined in components.css and responsive.css. */

/* Better responsive image handling */




/* ===== Nav: More dropdown ===== */
.nav-more {
  position: relative;
  list-style: none;
}

.nav-more-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-shadow: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease), opacity var(--ease);
  white-space: nowrap;
  opacity: 0.95;
}

nav.scrolled .nav-more-btn {
  color: var(--stone);
}

.nav-more-btn:hover,
nav.scrolled .nav-more-btn:hover,
.nav-more.open .nav-more-btn {
  color: var(--ink);
  opacity: 1;
}

.nav-more-btn:focus-visible {
  outline: 2px solid rgba(184, 151, 90, 0.45);
  outline-offset: 4px;
  border-radius: 999px;
}

.nav-more-caret {
  font-size: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-more.open .nav-more-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--warm-border);
  box-shadow: 0 16px 40px rgba(28, 25, 22, 0.12);
  min-width: 160px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
}

.nav-more.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  text-shadow: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown li a:hover {
  color: var(--ink);
  background: rgba(184, 151, 90, 0.06);
}

.nav-dropdown li a::after {
  display: none;
}

/* ===== Micro wedding cards: featured card distinction + badge ===== */
.micro-card {
  border-top: 2px solid transparent;
}

.micro-card:not(.featured) {
  border-top: 2px solid var(--warm-border);
}

.micro-card.featured {
  background: linear-gradient(160deg, rgba(184, 151, 90, 0.04) 0%, rgba(250, 247, 242, 1) 40%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(184, 151, 90, 0.1);
}

.micro-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== Hero / section title wrapping — hero measure lives in components.css ===== */

.cta-band-title,
.cta-title {
  text-wrap: balance;
  max-width: 28ch;
}

.statement-text {
  text-wrap: balance;
}

.section-title {
  text-wrap: balance;
}

/* More btn active state (when on FAQ / Area Guide / Contact page) */
.nav-more-btn.nav-more-active,
nav.scrolled .nav-more-btn.nav-more-active {
  color: var(--ink) !important;
  opacity: 1;
}

/* ============================================================
   MOBILE FIX PASS — targeting issues seen in screenshots
   1. Hero: title/eyebrow disappearing on small screens
   2. Hero: Main-Hero.jpg cropping badly (too short/wide)
   3. Story + venue teaser: portrait image too tall on mobile
   4. CTA band: title too large on mobile, wraps badly
   5. General spacing tightening on small screens
   ============================================================ */

/* ── 1. Hero: ensure all content is visible, better image position ── */




/* ── 3. Story + venue teaser: cap portrait image height on mobile ── */




/* ── 4. CTA band: title too large, script too wide on mobile ── */


/* ── 5. Page hero on inner pages: tighten on mobile ── */


/* ── 6. Section titles: prevent oversized on mobile ── */


/* ── 7. Nav: ensure More dropdown hidden on mobile ── */



/* ===== interior-pages.css ===== */

.page-hero {
  height: 80vh;
  min-height: 520px;
  padding-bottom: clamp(52px, 9vh, 90px);
}
main {
  display: block;
}
.inner-section {
  padding-inline: var(--side-pad);
}
.inner-section-alt {
  padding-inline: var(--side-pad);
  background: var(--ivory-deep);
}
.section-center {
  text-align: center;
}
.section-center .divider-gold {
  margin: var(--section-title-divider-mt) auto 0;
}
.section-intro {
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-mid);
  margin-top: var(--section-intro-mt);
  margin-left: auto;
  margin-right: auto;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.split-img:hover img {
  transform: scale(1.03);
}
.split-content {
  padding: var(--section-pad) var(--side-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content .body-copy {
  margin: clamp(20px, 2.5vw, 28px) 0 clamp(24px, 3vw, 36px);
}
.pull-quote {
  background: var(--ivory-deep);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.pull-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(28, 25, 22, 0.12);
  display: block;
  margin-bottom: 28px;
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: min(44ch, 92vw);
  margin: 0 auto 28px;
}
.pull-quote cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-style: normal;
}
.page-cta {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.page-cta::before {
  display: none;
}
.page-cta .section-label {
  color: rgba(255, 255, 255, 0.8);
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 12px;
  text-shadow: 0 2px 18px rgba(8, 7, 6, 0.28);
}
.cta-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: clamp(28px, 4vw, 36px);
  text-shadow: 0 1px 10px rgba(8, 7, 6, 0.22);
}
.cta-sub {
  font-size: clamp(0.62rem, 1.45vw, 0.76rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: clamp(36px, 5vw, 44px);
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 60px);
  width: 100%;
  max-width: 820px;
}
.cta-band-label {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.32em;
}
.cta-band-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-bar {
  padding: clamp(36px, 5vw, 52px) var(--side-pad) clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--ivory);
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--warm-border);
  color: var(--ink-mid);
  cursor: pointer;
  transition: all var(--ease);
  min-height: 44px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.gallery-header {
  text-align: center;
  padding: 0 var(--side-pad) clamp(16px, 3vw, 24px);
}
.gallery-grid {
  columns: 3;
  column-gap: 12px;
  padding: 16px clamp(16px, 4vw, 40px) clamp(40px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 22, 0);
  transition: background var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(28, 25, 22, 0.32);
}
.gallery-item-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--ease);
}
.gallery-item-cat {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s 0.04s ease;
}
.gallery-item:hover .gallery-item-label,
.gallery-item:hover .gallery-item-cat {
  opacity: 1;
  transform: translateY(0);
}
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 22, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lb-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: absolute;
}
.lb-btn:hover {
  opacity: 1;
}
.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-close {
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
}
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
#lb-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  white-space: nowrap;
}
.testimonial-feature {
  background: var(--ivory-deep);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.t-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(28, 25, 22, 0.08);
  display: block;
  margin-bottom: 28px;
}
.t-cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-style: normal;
}
.packages {
  padding: clamp(40px, 6vw, 80px) var(--side-pad);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  overflow: hidden;
  position: relative;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 25, 22, 0.09);
}
.pkg-card.featured {
  border-color: var(--gold);
}
.pkg-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
/* Per-card image positioning */
.pkg-card:nth-child(1) .pkg-card-img img {
  object-position: center 22%;
}
.pkg-card:nth-child(2) .pkg-card-img img {
  object-position: center 28%;
}
.pkg-card:nth-child(3) .pkg-card-img img {
  object-position: center 24%;
}
.pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}
.pkg-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
  z-index: 2;
}
.pkg-body {
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.pkg-tagline {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.pkg-starting {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 4px;
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pkg-price-note {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: block;
  margin: 4px 0 24px;
}
.pkg-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
  opacity: 0.6;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 30px;
  flex: 1;
}
.pkg-features li {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.pkg-features li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.68rem;
  margin-top: 2px;
}
.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 24px;
  text-decoration: none;
  border: 1px solid var(--warm-border);
  color: var(--ink);
  transition: all var(--ease);
  min-height: 44px;
}
.pkg-cta:hover,
.pkg-card.featured .pkg-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.inclusions {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
}
.inclusions-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.inclusions-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(40px, 5vw, 60px);
}
.inclusion-group {
  display: flex;
  flex-direction: column;
}
.inclusion-group h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-pale);
}
.inclusion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.inclusion-list li {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.inclusion-list li::before {
  content: "◇";
  color: var(--gold-light);
  font-size: 0.55rem;
  flex-shrink: 0;
}
.faq-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px) var(--side-pad) clamp(16px, 2vw, 24px);
  background: var(--ivory);
  border-bottom: 1px solid var(--warm-border);
}
.faq-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--warm-border);
  color: var(--ink-mid);
  cursor: pointer;
  transition: all var(--ease);
  min-height: 40px;
}
.faq-filter-btn:hover,
.faq-filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.faq-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--side-pad);
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.faq-group-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gold-pale);
}
.faq-page-item {
  border-bottom: 1px solid var(--warm-border);
}
.faq-page-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--ease);
}
.faq-page-question:hover {
  color: var(--gold);
}
.faq-page-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 200;
  flex-shrink: 0;
  transition: transform var(--ease);
  font-family: var(--font-sans);
}
.faq-page-item.open .faq-page-icon {
  transform: rotate(45deg);
}
.faq-page-answer {
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding-right: 40px;
}
.faq-page-item.open .faq-page-answer {
  max-height: 800px;
  padding-bottom: 20px;
}
.micro-packages {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
}
.micro-packages-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.micro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: clamp(40px, 5vw, 60px) auto 0;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.micro-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 52px) clamp(22px, 3vw, 36px);
  border: 1px solid var(--warm-border);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.micro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(28, 25, 22, 0.08);
}
.micro-card.featured {
  border-top: 2px solid var(--gold);
}
.micro-card-name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.55rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.micro-card-sub {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.micro-price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.micro-price-note {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: block;
  margin: 4px 0 24px;
}
.micro-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.micro-features li {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.micro-features li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.68rem;
  margin-top: 2px;
}
.micro-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  border: 1px solid var(--warm-border);
  color: var(--ink);
  transition: all var(--ease);
  min-height: 44px;
}
.micro-card-cta:hover,
.micro-card.featured .micro-card-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.micro-section {
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.micro-image {
  overflow: hidden;
}
.micro-image img {
  width: 100%;
  height: clamp(300px, 45vw, 480px);
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.micro-image:hover img {
  transform: scale(1.03);
}
.micro-content .body-copy {
  margin: 18px 0 32px;
}
.philosophy {
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}
.philosophy-text .body-copy {
  margin: 18px 0 16px;
}
.philosophy-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.phil-img {
  overflow: hidden;
}
.phil-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.phil-img:first-child img {
  height: clamp(220px, 30vw, 360px);
}
.phil-img:last-child {
  grid-column: span 2;
}
.phil-img:last-child img {
  height: clamp(160px, 20vw, 220px);
}
.phil-img:hover img {
  transform: scale(1.04);
}
.lodging-callout {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(32px, 4vw, 48px);
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
}
.lodging-callout-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin: 10px 0 8px;
}
.lodging-callout-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.timeline {
  padding: var(--section-pad) var(--side-pad);
  max-width: 820px;
  margin: 0 auto;
}
.timeline-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--warm-border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 44px;
}
.timeline-dot {
  width: 46px;
  height: 46px;
  border: 1px solid var(--warm-border);
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
}
.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  padding-top: 10px;
}
.timeline-content p {
  font-size: clamp(0.82rem, 2vw, 0.9rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
}
.pricing-intro {
  padding: clamp(60px, 8vw, 90px) var(--side-pad) clamp(20px, 3vw, 40px);
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.hero-left {
  position: relative;
  overflow: hidden;
}
.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 25, 22, 0.1),
    rgba(28, 25, 22, 0.05)
  );
}
.hero-right {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 70px)
    clamp(60px, 8vw, 80px);
  overflow-y: auto;
}
.hero-right-inner {
  max-width: 500px;
}
.contact-hero .page-eyebrow {
  color: var(--stone);
  text-shadow: none;
}
.contact-hero .page-title {
  color: var(--ink);
  text-shadow: none;
}
.contact-hero .page-title em {
  color: var(--gold);
}
.contact-hero .page-script {
  color: var(--gold);
  text-shadow: none;
}
.contact-hero .divider-gold {
  margin: 16px 0;
}
.contact-intro {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-mid);
  margin-bottom: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full {
  grid-column: span 2;
}
.form-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory-deep);
  border: 1px solid var(--warm-border);
  padding: 13px 16px;
  outline: none;
  transition:
    border-color var(--ease),
    background var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7068' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  padding-right: 40px;
}
.form-submit {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  padding: 16px 32px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all var(--ease);
  width: 100%;
  min-height: 48px;
}
.form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.form-note {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.success-icon {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
}
.form-error {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.2);
}
.sms-consent-wrap {
  margin: 24px 0 20px;
  padding: 20px 22px;
  background: var(--ivory-deep);
  border: 1px solid var(--warm-border);
  border-left: 3px solid var(--gold);
}
.sms-consent-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}
.sms-consent-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.sms-consent-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--warm-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  position: relative;
}
.sms-consent-check:checked + .sms-consent-box {
  background: var(--ink);
  border-color: var(--ink);
}
.sms-consent-check:checked + .sms-consent-box::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(40deg) translate(-1px, -1px);
}
.sms-consent-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
}
.sms-consent-text strong {
  font-weight: 400;
  color: var(--ink);
}
.sms-consent-text a {
  color: var(--gold);
  text-decoration: underline;
}
.sms-consent-text a:hover {
  color: var(--ink);
}
.sms-consent-note {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--stone);
  margin: 10px 0 0;
  font-style: italic;
  padding-left: 34px;
}
.contact-info {
  background: var(--ivory-deep);
  padding: clamp(60px, 8vw, 90px) var(--side-pad);
  border-top: 1px solid var(--warm-border);
}
.contact-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.info-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--warm-border);
}
.info-block p,
.info-block a {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color var(--ease);
}
.info-block a:hover {
  color: var(--ink);
}
.directions-block {
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
  border-bottom: 1px solid var(--warm-border);
  padding: clamp(48px, 6vw, 72px) var(--side-pad);
  text-align: center;
}
.directions-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 16px;
}
.directions-address {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}
.directions-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 28px;
}
.what-expect {
  padding: var(--section-pad) var(--side-pad);
}
.what-expect-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 60px);
}
.step-card {
  text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(16px, 2.5vw, 24px);
  background: var(--white);
  border-top: 1px solid var(--warm-border);
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--ease),
    transform var(--ease);
}
.step-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: rgba(28, 25, 22, 0.1);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-text {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
  flex: 1;
}
.area-hero-strip {
  background-color: var(--warm-border);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  max-width: 100%;
}
.area-stat {
  background: var(--ivory-deep);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  text-align: center;
}
.area-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.area-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: block;
  margin-top: 6px;
}
.area-section {
  padding: var(--section-pad) var(--side-pad);
}
.area-section-alt {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
}
.area-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.area-section-header {
  margin-bottom: clamp(32px, 4vw, 52px);
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
  cursor: pointer;
}
.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 25, 22, 0.07);
}
.hotel-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
.hotel-badge {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.hotel-name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.hotel-address {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 14px;
}
.hotel-distance {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hotel-details {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-top: 10px;
  flex: 1;
}
.directions-hint {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  transition: opacity var(--ease);
}
.hotel-card:hover .directions-hint,
.restaurant-card:hover .directions-hint {
  opacity: 0.7;
}
.card-active {
  border-color: var(--gold) !important;
  box-shadow:
    0 0 0 1px var(--gold),
    0 12px 32px rgba(28, 25, 22, 0.1) !important;
  transform: translateY(-3px) !important;
}
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.restaurant-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.restaurant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 25, 22, 0.07);
}
.restaurant-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
.restaurant-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.restaurant-cuisine {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.restaurant-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}
.restaurant-dist {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 4px;
}
.things-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.thing-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  padding: clamp(22px, 3vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--ease),
    transform var(--ease);
}
.thing-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.thing-icon-wrap {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin: 0 auto 14px;
  text-align: center;
  letter-spacing: 0.08em;
}
.thing-name {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.thing-detail {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
}
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.transport-numeral {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}
.intro-block {
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.intro-text .body-copy {
  margin: 20px 0 32px;
}
.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 60%;
}
.intro-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--ivory-deep);
  border: 1px solid var(--warm-border);
  padding: 20px 24px;
  text-align: center;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: block;
  margin-top: 4px;
}
.mh-mid-bleed {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mh-mid-bleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.mh-mid-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 22, 0.3) 0%,
    rgba(28, 25, 22, 0.55) 50%,
    rgba(28, 25, 22, 0.7) 100%
  );
}
.mh-mid-bleed-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  max-width: 760px;
}
.mh-mid-bleed-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 20px;
}
.mh-mid-bleed-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(28, 25, 22, 0.4);
}
.mh-mid-bleed-title em {
  font-style: italic;
  color: var(--gold-light);
}
.mh-mid-bleed-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.lodging-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--warm-border);
}
.lodging-img-wrap {
  overflow: hidden;
  min-height: 420px;
}
.lodging-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lodging-content-l,
.lodging-content-r {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lodging-eyebrow {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.lodging-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}
.lodging-subtitle {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 20px;
}
.lodging-price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.lodging-price-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 6px 0 20px;
}
.lodging-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 28px;
}
.lodging-divider-center {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
  opacity: 0.6;
}
.lodging-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.lodging-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-mid);
  display: flex;
  gap: 12px;
  line-height: 1.6;
}
.lodging-list li span {
  color: var(--gold);
  flex-shrink: 0;
}
.suites-note {
  text-align: center;
  padding: clamp(32px, 4vw, 52px) var(--side-pad);
  max-width: 680px;
  margin: 0 auto;
}
.suites-note-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}
.suites-note-body {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 28px;
}
.mt-s {
  margin-top: clamp(16px, 2.2vw, 22px);
}
.mt-m {
  margin-top: clamp(20px, 3vw, 28px);
}
.mt-l {
  margin-top: clamp(32px, 4vw, 48px);
}
.mt-xl {
  margin-top: clamp(40px, 5vw, 60px);
}
.mb-l {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.divider-inline {
  margin: var(--section-title-divider-mt) 0 var(--section-title-divider-mb);
}
.divider-center {
  margin: var(--section-title-divider-mt) auto 0;
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-s {
  gap: 16px;
}
.section-constrained {
  max-width: min(52ch, calc(100vw - 40px));
  margin: 0 auto;
}
.section-wide {
  max-width: 1140px;
  margin: 0 auto;
}
.section-lead {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.78;
}
.no-pad-bottom {
  padding-bottom: 0;
}
@media (hover: none) {
  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .filter-btn,
  .micro-card-cta,
  .pkg-cta,
  .faq-page-question,
  .hotel-card,
  .restaurant-card {
    min-height: 44px;
  }
  .testimonial-card:hover,
  .hotel-card:hover,
  .restaurant-card:hover,
  .pkg-card:hover {
    transform: none;
    box-shadow: none;
  }
}
@supports (-webkit-backdrop-filter: blur(1px)) {
  .nav-drawer {
    -webkit-backdrop-filter: blur(10px);
  }
}
.ceremony-hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(48px, 8vh, 80px);
  overflow: hidden;
}
.ceremony-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.spaces-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--side-pad);
  text-align: center;
}
.spaces-intro .body-copy {
  margin-top: 20px;
}
.space-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.space-card.reverse {
  direction: rtl;
}
.space-card.reverse > * {
  direction: ltr;
}
.space-image {
  overflow: hidden;
  position: relative;
}
.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.space-image:hover img {
  transform: scale(1.03);
}
.space-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 22, 0);
  transition: background 0.3s ease;
}
.space-content {
  padding: clamp(48px, 7vw, 90px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.space-card:nth-child(even) .space-content {
  background: var(--ivory-deep);
}
.space-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.space-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.space-title em {
  font-style: italic;
}
.space-capacity {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  display: block;
}
.space-body {
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 28px;
  max-width: 440px;
}
.space-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.space-features li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-mid);
  padding-left: 16px;
  position: relative;
}
.space-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}
.rain-note {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(48px, 7vw, 80px) var(--side-pad);
  text-align: center;
}
.rain-note-inner {
  max-width: 680px;
  margin: 0 auto;
}
.rain-note .section-title {
  color: var(--ivory);
}
.rain-note .section-title em {
  color: rgba(250, 247, 242, 0.7);
}
.rain-note p {
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 247, 242, 0.72);
  margin: 20px 0 32px;
}
.rain-note .section-label {
  color: rgba(250, 247, 242, 0.55);
}
.spaces-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
  overflow: hidden;
}
.spaces-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(36px, 5vw, 56px) 0;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* components.css sets margin:0 on .cta-band-script / .cta-band-sub — re-center blocks */
.spaces-cta .section-label,
.spaces-cta .cta-band-title,
.spaces-cta .cta-band-script,
.spaces-cta .cta-band-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.spaces-cta .cta-band-actions {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.spaces-cta .divider-gold {
  margin-left: auto;
  margin-right: auto;
}
.spaces-cta .section-label {
  color: rgba(250, 247, 242, 0.65);
}
.spaces-cta .cta-band-sub {
  margin-bottom: 36px;
}
.section-pad-reduced {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.transport-card {
  background: var(--white);
  border: 1px solid var(--warm-border);
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.transport-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.transport-name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.transport-detail {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  flex: 1;
}
@media (hover: none) {
  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .pkg-cta,
  .micro-card-cta,
  .faq-page-question,
  .hotel-card,
  .restaurant-card {
    min-height: 44px;
  }
  .testimonial-card:hover,
  .hotel-card:hover,
  .restaurant-card:hover,
  .pkg-card:hover {
    transform: none;
    box-shadow: none;
  }
}








/* Hero scrim: disabled in components.css — photography uses hero-images.css overlays */

.inner-section,
.inner-section-alt,
.pull-quote,
.page-cta {
  position: relative;
}

.inner-section > *,
.inner-section-alt > *,
.pull-quote > *,
.page-cta > * {
  position: relative;
  z-index: 1;
}

.inner-section::before,
.inner-section-alt::before {
  display: none;
}

.pull-quote {
  background: linear-gradient(180deg, rgba(242, 237, 228, 0.95), rgba(250, 247, 242, 0.92));
}

.page-cta {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 25, 22, 0.24), rgba(28, 25, 22, 0.68));
}



/* Shared interior page rhythm */
.inner-section,
.inner-section-alt,
.pull-quote,
.page-cta {
  position: relative;
}
.inner-section > .section-title,
.inner-section-alt > .section-title,
.pricing-intro,
.spaces-intro,
.gallery-header,
.area-section-header,
.micro-packages-header,
.inclusions-header {
  max-width: min(52ch, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}
.section-intro,
.body-copy,
.pkg-body,
.contact-intro {
  text-wrap: pretty;
}
.inclusions-grid,
.micro-grid,
.packages-grid,
.hotel-grid,
.restaurant-grid,
.getting-here-grid {
  align-items: stretch;
}
.micro-card,
.pkg-card,
.hotel-card,
.restaurant-card,
.step-card {
  border-radius: 18px;
  overflow: hidden;
}


/* Interior page adjustments */


/* Hero and CTA alignment */
.page-cta .cta-title {
  max-width: 16ch;
}
.page-cta .cta-script {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
.page-cta,
.cta-band,
.gallery-cta-band {
  text-align: center;
}

.page-cta::after,
.cta-band::before,
.gallery-cta-band::before {
  background: linear-gradient(
    180deg,
    rgba(19, 17, 15, 0.06) 0%,
    rgba(19, 17, 15, 0.22) 45%,
    rgba(19, 17, 15, 0.48) 100%
  );
}

.cta-band-inner,
.cta-band-content {
  max-width: 820px;
}

.cta-title,
.cta-band-title {
  max-width: 13ch;
  margin: 0 auto;
  line-height: 1.04;
  text-wrap: balance;
}

.cta-script,
.cta-band-script {
  max-width: 28ch;
  margin: 10px auto 0;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
}

.cta-sub,
.cta-band-sub {
  max-width: 42ch;
  margin: 18px auto 0;
  line-height: 1.8;
  text-wrap: balance;
}

.cta-band-btns,
.cta-band-actions {
  margin-top: clamp(24px, 4vw, 36px);
  gap: 12px;
}

.contact-info-inner {
  position: static;
  max-width: 1120px;
  gap: clamp(28px, 3vw, 42px);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.contact-info-inner::before,
.story-content::before,
.split-content::before,
.intro-text::before,
.philosophy-text::before,
.policy-highlight::before {
  display: none;
}

.info-block {
  padding: 0;
}

.info-block h3 {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: none;
}

.info-block p,
.info-block a {
  line-height: 1.95;
}

.directions-block {
  padding-top: clamp(60px, 7vw, 88px);
  padding-bottom: clamp(60px, 7vw, 88px);
}

.step-card,
.hotel-card,
.restaurant-card,
.micro-card,
.pkg-card,
.policy-highlight,
.filter-bar,
.faq-filter-bar,
.area-hero-strip,
.featured,
.rain-note-inner {
  box-shadow: 0 12px 30px rgba(28, 25, 22, 0.04);
}





/* Refine split layouts and editorial spacing */
.split,
.lodging-two-col {
  align-items: stretch;
}

.split {
  min-height: 0;
}

.split-img,
.lodging-img-wrap {
  align-self: stretch;
  min-height: 0;
  height: auto;
  display: flex;
}

.split-img img,
.lodging-img-wrap img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  display: block;
}

/* Soften card-like image treatments */
.split-content,
.lodging-content-l,
.lodging-content-r,
.suites-note {
  box-shadow: none;
}



/* Editorial layout consistency */
.intro-block,
.story,
.venue-teaser {
  align-items: stretch;
}

.intro-image,
.story-image,
.venue-image {
  display: flex;
  min-height: 0;
}

.intro-image img,
.story-image img,
.venue-image img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  display: block;
}




/* ===== hero cleanup =====
   Legacy hero override block removed in favor of
   components.css + responsive.css shared system. */


/* ===== pages/privacy-policy.css ===== */

.policy-hero {
  background: var(--ink);
  padding: clamp(100px, 14vw, 160px) var(--side-pad) clamp(60px, 8vw, 80px);
  text-align: center;
}
.policy-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.policy-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.policy-hero p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 16px;
}
.policy-body {
  max-width: min(48ch, calc(100vw - 2 * var(--side-pad)));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--side-pad);
}
.policy-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  margin: 52px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-pale);
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  margin: 28px 0 10px;
}
.policy-body p {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-mid);
  margin-bottom: clamp(14px, 1.8vw, 18px);
}
.policy-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-body ul li {
  font-size: clamp(0.85rem, 2vw, 0.92rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
}
.policy-body ul li::before {
  content: "—";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}
.policy-body a {
  color: var(--gold);
  text-decoration: underline;
}
.policy-body a:hover {
  color: var(--ink);
}
.policy-highlight {
  background: var(--ivory-deep);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0;
}
.policy-highlight p {
  margin: 0;
  font-style: italic;
}
.policy-updated {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--warm-border);
}


/* =============================================================
   NEW COMPONENTS — added post-refactor
   ============================================================= */

/* ── Gallery teaser: ensure it displays on mobile ── */



/* ── Mobile floating call button ── */
.mobile-call-btn {
  display: none;
}


/* ── Social proof strip above CTA band ── */
.pre-cta-proof {
  background: var(--ivory-deep);
  border-top: 1px solid var(--warm-border);
  padding: clamp(40px, 5vw, 64px) var(--side-pad);
  text-align: center;
}
.pre-cta-proof-inner {
  max-width: 680px;
  margin: 0 auto;
}
.pre-cta-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 18px;
}
.pre-cta-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 18px;
}
.pre-cta-attr {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ── FAQ inline CTA ── */
.faq-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  margin: 8px 0 32px;
  background: linear-gradient(135deg, rgba(184,151,90,0.06), rgba(184,151,90,0.02));
  border: 1px solid rgba(184, 151, 90, 0.18);
  border-radius: 12px;
}
.faq-inline-cta p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-mid);
  margin: 0;
}
.faq-inline-cta .btn-primary,
.faq-inline-cta .btn-outline {
  flex-shrink: 0;
  width: auto;
  min-height: 40px;
  padding: 10px 22px;
  font-size: 0.62rem;
}


/* ── Inline form field errors ── */
.form-input.field-error,
.form-select.field-error,
.form-textarea.field-error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.03);
}
.form-input.field-error:focus,
.form-select.field-error:focus,
.form-textarea.field-error:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}
.field-error-msg {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #c0392b;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

