:root {
  --ucm-green: #14b85a;
  --forest: #18754b;
  --forest-dark: #126542;
  --ink: #07131f;
  --cream: #f7f3eb;
  --white: #ffffff;
  --gold: #d4ad72;
  --header-height: 90px;
  --content-width: 1360px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-width: 320px; background: var(--ink); }
body {
  color: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--white);
  color: #111;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(3,19,38,.82) 0%, rgba(3,19,38,.40) 72%, rgba(3,19,38,.08) 100%);
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 243, 235, 0.90);
  border-bottom-color: rgba(7, 19, 31, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.header-inner {
  width: min(var(--content-width), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.brand-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 27px);
}
.site-nav a {
  position: relative;
  padding-inline: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: #31a36c;
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after { right: 0; }
.site-nav a.is-active { color: #45b77b; }
.site-header.is-scrolled .site-nav a {
  color: var(--ink);
  border-radius: 5px;
  transition: color .18s ease, background-color .18s ease;
}
.site-header.is-scrolled .site-nav a::after {
  background: var(--forest);
}
.site-header.is-scrolled .site-nav a.is-active {
  color: var(--forest);
}
.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--forest);
  background: transparent;
}
.site-header.is-scrolled .site-nav a:hover::after,
.site-header.is-scrolled .site-nav a:focus-visible::after {
  background: var(--forest);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.mobile-action-bar a:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }
.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 22px rgba(13,88,56,.25);
}
.button-primary:hover { background: var(--forest-dark); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: #091a2d;
}
.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 49%;
  width: min(820px, calc(100% - 80px));
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5.35vw, 82px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.035em;
}
.hero-copy h1 em {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #fff;
}
.hero-lede {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,.95);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.hero-actions .button { min-width: 188px; }
.button-call { white-space: nowrap; }
.button-message {
  color: #fff;
  border-color: rgba(255,255,255,.72);
  background: rgba(7,16,20,.35);
  backdrop-filter: blur(7px);
}
.button-message:hover { border-color: #fff; background: rgba(7,16,20,.58); }
.messenger-icon { width: 20px !important; height: 20px !important; color: #fff; stroke: none !important; }

.quick-facts {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  width: min(1120px, calc(100% - 64px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(6,11,8,.82);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.quick-fact {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 26px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.quick-fact:last-child { border-right: 0; }
.quick-fact > svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-fact div { min-width: 0; }
.quick-fact strong,
.quick-fact small { display: block; }
.quick-fact strong {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.quick-fact small {
  color: rgba(255,255,255,.74);
  font-size: 11.5px;
  line-height: 1.35;
  white-space: nowrap;
}


.activities-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(92px, 8vw, 138px) 32px clamp(104px, 9vw, 154px);
  overflow: hidden;
  color: #17251e;
  background:
    radial-gradient(circle at 92% 8%, rgba(188,144,97,.14), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, #f3eee5 100%);
}
.activities-section::before {
  content: "ADVENTURE";
  position: absolute;
  top: 56px;
  right: -18px;
  color: rgba(27,76,51,.045);
  font: 700 clamp(76px, 11vw, 180px)/1 "Manrope", sans-serif;
  letter-spacing: -.07em;
  pointer-events: none;
  user-select: none;
}
.activities-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}
.activities-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, .72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 112px);
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 19px;
  color: #226544;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-eyebrow span {
  width: 42px;
  height: 1px;
  background: #8f6843;
}
.activities-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #14231c;
  font: 600 clamp(48px, 5.5vw, 78px)/.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}
.activities-heading h2 em {
  display: block;
  color: #2b7650;
  font-weight: 600;
}
.activities-intro {
  margin: 0 0 5px;
  padding-left: 30px;
  border-left: 1px solid rgba(35,107,70,.28);
  color: #5e6b64;
  font-size: 14px;
  line-height: 1.8;
}
.activity-grid {
  margin-top: clamp(46px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.activity-card {
  grid-column: span 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(43,83,61,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 50px rgba(38,50,42,.09);
  transition: transform .28s ease, box-shadow .28s ease;
}
.activity-card:nth-child(4) { grid-column: 2 / span 2; }
.activity-card:nth-child(5) { grid-column: 4 / span 2; }
.activity-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(38,50,42,.15);
}
.activity-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9d4ca;
}
.activity-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7,19,15,.35) 100%);
  pointer-events: none;
}
.activity-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.75,.25,1);
}
.activity-card:hover .activity-media img { transform: scale(1.035); }
.activity-content {
  flex: 1;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 24px;
}
.activity-type {
  margin: 0 0 12px;
  color: #2b7650 !important;
  font-size: 9.5px !important;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}
.activity-content h3 {
  margin: 0;
  color: #15231c;
  font: 600 clamp(27px, 2.1vw, 35px)/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.025em;
}
.activity-content > p:not(.activity-type) {
  margin: 14px 0 0;
  color: #647068;
  font-size: 13px;
  line-height: 1.65;
}
.activity-link {
  min-height: 44px;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #1d6946;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.activity-link svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.activity-link:hover svg { transform: translateX(4px); }
.activity-link:focus-visible {
  outline: 3px solid rgba(35,107,70,.42);
  outline-offset: 4px;
  border-radius: 3px;
}


.stays-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(104px, 9vw, 154px) 32px clamp(112px, 10vw, 168px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212,173,114,.13), transparent 25%),
    radial-gradient(circle at 88% 85%, rgba(38,118,79,.24), transparent 33%),
    linear-gradient(145deg, #071a17 0%, #0b211a 58%, #071611 100%);
}
.stays-section::before {
  content: "STAY";
  position: absolute;
  top: 38px;
  right: -14px;
  color: rgba(255,255,255,.028);
  font: 700 clamp(100px, 18vw, 290px)/.8 "Manrope", sans-serif;
  letter-spacing: -.09em;
  pointer-events: none;
  user-select: none;
}
.stays-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}
.stays-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 112px);
}
.section-eyebrow-light { color: #d8b47d; }
.section-eyebrow-light span { background: rgba(255,255,255,.48); }
.stays-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font: 600 clamp(49px, 5.5vw, 80px)/.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}
.stays-heading h2 em {
  display: block;
  color: #d8b47d;
  font-weight: 600;
}
.stays-intro {
  margin: 0 0 5px;
  padding-left: 30px;
  border-left: 1px solid rgba(216,180,125,.42);
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.8;
}
.stay-grid {
  margin-top: clamp(48px, 5.5vw, 78px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(270px, 1fr)) minmax(355px, .9fr);
  gap: 18px;
}
.stay-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: #14261f;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.stay-card-featured { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.stay-card-compact { grid-column: 8 / -1; }
.stay-card-wide { grid-column: span 6; }
.stay-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.75,.25,1), filter .5s ease;
}
.stay-card:hover > img { transform: scale(1.045); filter: saturate(1.04); }
.stay-card-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,14,11,.08) 20%, rgba(4,14,11,.26) 48%, rgba(3,12,9,.93) 100%),
    linear-gradient(90deg, rgba(3,12,9,.34), transparent 60%);
}
.stay-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 30px 27px;
}
.stay-card-featured .stay-content { padding: 40px 40px 36px; }
.stay-type {
  margin: 0 0 11px;
  color: #e2bd83;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.stay-content h3 {
  margin: 0;
  color: #fff;
  font: 600 clamp(34px, 3.5vw, 50px)/.95 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.025em;
}
.stay-card-featured .stay-content h3 { font-size: clamp(48px, 5vw, 70px); }
.stay-content > p:not(.stay-type) {
  max-width: 540px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.77);
  font-size: 12.5px;
  line-height: 1.65;
}
.stay-link {
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 7px;
  color: #fff;
  background: rgba(4,18,13,.3);
  backdrop-filter: blur(7px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.stay-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.72); background: rgba(4,18,13,.58); }
.stay-link:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }
.stay-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.stay-link:hover svg { transform: translateX(3px); }

.phase-boundary {
  min-height: 620px;
  padding: 110px 32px 140px;
  color: #19251f;
  background: #f5f0e7;
}
.phase-boundary-inner { width: min(1120px, 100%); margin: 0 auto; text-align: center; }
.phase-label { margin: 0 0 16px; color: #226544; font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.phase-boundary h2 { max-width: 820px; margin: 0 auto; font: 600 clamp(42px, 5vw, 66px)/.98 "Cormorant Garamond", Georgia, serif; }
.phase-boundary h2 em { display: block; color: #2d8059; font-weight: 600; }
.phase-boundary > div > p:not(.phase-label) { max-width: 720px; margin: 24px auto 0; color: #59645e; line-height: 1.8; }
.phase-map { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: left; }
.phase-map article { min-height: 112px; padding: 22px; border: 1px solid #d9d3c8; border-radius: 10px; background: rgba(255,255,255,.55); scroll-margin-top: 110px; }
.phase-map span { display: block; margin-bottom: 18px; color: #2d8059; font-size: 12px; font-weight: 800; }
.phase-map strong { font-size: 16px; }

.mobile-action-bar { display: none; }


@media (min-width: 1400px) {
  .activity-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
  .activity-card,
  .activity-card:nth-child(4),
  .activity-card:nth-child(5) { grid-column: auto; }
  .activity-content { min-height: 262px; padding-inline: 21px; }
  .activity-content h3 { font-size: 29px; }
  .activity-content > p:not(.activity-type) { font-size: 12.5px; }
  .activity-link { font-size: 9px; letter-spacing: .055em; }
}

@media (max-width: 1080px) {
  .activities-header { grid-template-columns: 1fr; gap: 28px; }
  .activities-intro { max-width: 680px; padding-left: 24px; }
  .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activity-card,
  .activity-card:nth-child(4) { grid-column: auto; }
  .activity-card:nth-child(5) { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
}

@media (max-width: 680px) {
  .activities-section { padding: 82px 16px 96px; }
  .activities-section::before { top: 34px; right: -8px; font-size: 70px; }
  .activities-heading h2 { font-size: clamp(45px, 14vw, 62px); }
  .activities-intro { padding-left: 18px; font-size: 13.5px; }
  .activity-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .activity-card,
  .activity-card:nth-child(4),
  .activity-card:nth-child(5) { grid-column: auto; width: 100%; }
  .activity-media { aspect-ratio: 5 / 6; }
  .activity-content { min-height: 220px; padding: 23px 22px 21px; }
  .activity-content h3 { font-size: 33px; }
  .activity-link { font-size: 9.5px; }
}


@media (max-width: 1100px) {
  .stays-header { grid-template-columns: 1fr; gap: 28px; }
  .stays-intro { max-width: 680px; padding-left: 24px; }
  .stay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(500px, auto) repeat(2, minmax(340px, auto));
  }
  .stay-card-featured { grid-column: 1 / -1; grid-row: auto; }
  .stay-card-compact,
  .stay-card-wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 680px) {
  .stays-section { padding: 88px 16px 104px; }
  .stays-section::before { top: 28px; right: -6px; font-size: 110px; }
  .stays-heading h2 { font-size: clamp(45px, 14vw, 62px); }
  .stays-intro { padding-left: 18px; font-size: 13.5px; }
  .stay-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
    margin-top: 40px;
  }
  .stay-card-featured,
  .stay-card-compact,
  .stay-card-wide { grid-column: auto; grid-row: auto; min-height: 410px; }
  .stay-card-featured { min-height: 500px; }
  .stay-content,
  .stay-card-featured .stay-content { padding: 27px 23px 24px; }
  .stay-content h3,
  .stay-card-featured .stay-content h3 { font-size: 42px; }
  .stay-link { font-size: 8.5px; }
}

@media (max-width: 1240px) {
  .header-inner { width: min(1180px, calc(100% - 40px)); gap: 20px; }
  .site-nav { gap: 13px; }
  .site-nav a { padding-inline: 7px; font-size: 12.5px; }
  .quick-fact { padding-inline: 18px; gap: 12px; }
}

@media (max-width: 1120px) {
  :root { --header-height: 78px; }
  .header-inner { display: flex; justify-content: space-between; }
  .brand-mark { width: 62px; height: 62px; }
  .menu-toggle { display: block; margin-left: 0; }
  .site-header.is-scrolled .menu-toggle { color: var(--ink); }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 6px;
    bottom: auto;
    left: auto;
    width: 188px;
    max-height: calc(100svh - var(--header-height) - 12px);
    padding: 20px 18px 28px;
    display: grid;
    gap: 2px;
    overflow-y: auto;
    background: rgba(7, 19, 31, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-header.is-scrolled .site-nav {
    background: rgba(7, 19, 31, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .site-nav a {
    min-height: 50px;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    color: #fff;
    background: transparent;
  }

  .site-nav a.is-active,
  .site-header.is-scrolled .site-nav a.is-active {
    color: #fff;
    background: transparent;
  }
  .site-header.is-scrolled .site-nav a { border-bottom-color: rgba(255,255,255,.18); }
  .site-nav a::after { display: none; }
  .no-js .site-header {
    position: relative;
    height: auto;
    background: #051420;
  }
  .no-js .header-inner {
    height: auto;
    min-height: var(--header-height);
    padding-block: 8px;
  }
  .no-js .menu-toggle { display: none; }
  .no-js .site-nav {
    position: static;
    inset: auto;
    grid-column: 1 / -1;
    max-height: none;
    padding: 8px 0 14px;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .no-js .site-nav a { min-height: 46px; }
  .quick-facts { width: min(900px, calc(100% - 40px)); }
  .quick-fact { padding-inline: 14px; }
  .quick-fact strong { font-size: 12.5px; }
  .quick-fact small { font-size: 10.5px; }
}

@media (max-width: 820px) {
  .hero { min-height: 1040px; padding: 150px 20px 130px; overflow: visible; }
  .hero-media img { object-position: center center; }
  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(640px, 100%);
    margin: 140px auto 0;
    transform: none;
  }
  .hero-copy h1 { font-size: clamp(52px, 9vw, 68px); }
  .hero-lede { max-width: 560px; }
  .quick-facts {
    position: absolute;
    bottom: 28px;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
  }
  .quick-fact { min-height: 76px; }
  .quick-fact:nth-child(2) { border-right: 0; }
  .quick-fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .quick-fact strong { font-size: 12.5px; }
  .quick-fact small { font-size: 10.5px; }
  .phase-map { grid-template-columns: repeat(2, 1fr); }
  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    inset: auto 0 0 0;
    min-height: 70px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.22);
    background: rgba(7, 19, 31, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .mobile-action-bar a {
    width: 100%;
    min-width: 0;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    background: transparent;
    border-right: 1px solid rgba(255,255,255,.22);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
  }
  .mobile-action-bar a:hover,
  .mobile-action-bar a:focus-visible { background: rgba(255,255,255,.08); }
  .mobile-action-bar a:last-child { border-right: 0; }
  .mobile-action-bar svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-action-bar svg:first-child { fill: currentColor; stroke: none; }
  .mobile-action-bar .messenger-bolt { fill: var(--ink); }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}

@media (max-width: 620px) {
  .header-inner { width: calc(100% - 24px); display: flex; gap: 10px; }
  .menu-toggle { margin-left: auto; }
  .hero { min-height: 1060px; padding-inline: 16px; }
  .hero-copy { margin-top: 120px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .24em; }
  .hero-copy h1 { font-size: clamp(47px, 13vw, 62px); line-height: .94; }
  .hero-lede { margin-top: 22px; font-size: 14px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: center; margin-top: 24px; }
  .hero-actions .button { width: min(270px, 100%); }
  .quick-facts { grid-template-columns: 1fr; bottom: 20px; width: calc(100% - 24px); }
  .quick-fact { min-height: 68px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 12px 18px; }
  .quick-fact:nth-child(2) { border-right: 0; }
  .quick-fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .quick-fact:last-child { border-bottom: 0; }
  .quick-fact > svg { width: 26px; height: 26px; flex-basis: 26px; }
  .quick-fact strong { font-size: 12.5px; }
  .quick-fact small { font-size: 10.5px; }
  .phase-boundary { padding: 84px 18px 110px; }
  .phase-map { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero { min-height: 1100px; }
  .hero-copy { margin-top: 105px; }
  .hero-copy h1 { font-size: 45px; }
  .hero-eyebrow { letter-spacing: .2em; }
}


/* Purposeful motion for the hero facts and Why UCM cards. */
.js .quick-facts { opacity: 0; transform: translate(-50%, 20px); }
.js .hero.is-ready .quick-facts { animation: quickFactsIn .72s cubic-bezier(.2,.75,.25,1) .35s forwards; }
.js .hero.is-ready .quick-fact > svg { animation: quickFactIconIn .55s cubic-bezier(.2,.75,.25,1) both; }
.js .hero.is-ready .quick-fact:nth-child(1) > svg { animation-delay: .68s; }
.js .hero.is-ready .quick-fact:nth-child(2) > svg { animation-delay: .78s; }
.js .hero.is-ready .quick-fact:nth-child(3) > svg { animation-delay: .88s; }
.js .hero.is-ready .quick-fact:nth-child(4) > svg { animation-delay: .98s; }
.quick-fact { transition: background-color .22s ease, transform .22s ease; }
.quick-fact:hover { background: rgba(255,255,255,.055); transform: translateY(-2px); }
.js .motion-card { opacity: 0; transform: translateY(28px); }
.js .motion-card.is-visible { opacity: 1; transform: translateY(0); transition-delay: var(--reveal-delay, 0ms); }
.js .motion-card.is-visible:hover { transform: translateY(-8px); transition-delay: 0ms; }
@keyframes quickFactsIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes quickFactIconIn {
  from { opacity: 0; transform: translateY(8px) scale(.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .quick-facts { opacity: 1 !important; transform: translate(-50%, 0) !important; }
  .js .motion-card { opacity: 1 !important; transform: none !important; }
}

/* Final website phases: story, why, groups, gallery, visitor guide, inquiry, footer */
.story-section {
  position: relative;
  min-height: clamp(580px, 72vw, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0b1c18;
}
.story-media,
.story-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-media { z-index: -2; object-fit: cover; object-position: center 58%; }
.story-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4,15,12,.86) 0%, rgba(4,15,12,.56) 45%, rgba(4,15,12,.12) 80%), linear-gradient(0deg, rgba(4,15,12,.38), transparent 46%);
}
.story-inner { width: min(var(--content-width), calc(100% - 64px)); margin: 0 auto; padding-block: 100px; }
.story-inner h2 { max-width: 760px; margin: 0; font: 600 clamp(54px, 6vw, 88px)/.93 "Cormorant Garamond", Georgia, serif; letter-spacing: -.04em; }
.story-inner h2 em { display: block; color: #e2bd83; font-weight: 600; }
.story-inner > p:not(.section-eyebrow) { max-width: 600px; margin: 26px 0 32px; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.8; }
.button-light { color: #10231b; background: #fff; border-color: #fff; }
.button-light:hover { transform: translateY(-2px); background: #ece7dd; border-color: #ece7dd; }

.why-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(104px, 9vw, 148px) 32px clamp(112px, 10vw, 160px);
  color: #17231d;
  background: #f5f0e7;
}
.why-inner, .visitor-inner, .gallery-inner { width: min(var(--content-width), 100%); margin: 0 auto; }
.why-header, .visitor-header, .gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .72fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: end;
}
.why-header h2, .visitor-header h2, .gallery-header h2 {
  max-width: 900px;
  margin: 0;
  font: 600 clamp(49px, 5.4vw, 78px)/.95 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}
.why-header h2 em, .visitor-header h2 em { display: block; color: #2b7e57; font-weight: 600; }
.why-header > p, .visitor-header > p, .gallery-header > p {
  margin: 0 0 5px;
  padding-left: 28px;
  border-left: 1px solid rgba(43,126,87,.4);
  color: #68736d;
  font-size: 14px;
  line-height: 1.8;
}
.why-grid { margin-top: clamp(48px, 5vw, 72px); display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.why-card {
  position: relative;
  min-height: 380px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dcd6cc;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 20px 45px rgba(34,47,40,.06);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, opacity .45s ease;
}
.why-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: #2b7e57; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 28px 58px rgba(34,47,40,.13); }
.why-card:hover::after { transform: scaleX(1); }
.why-card-accent { color: #fff; border-color: transparent; background: linear-gradient(145deg,#1f764f,#155a3c); }
.why-card svg { width: 52px; height: 52px; margin: 12px 0 42px; fill: none; stroke: #2b7e57; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.why-card-accent svg { stroke: #e4bd81; }
.why-card h3 { margin: 0; font: 600 32px/1 "Cormorant Garamond", Georgia, serif; }
.why-card p { margin: 16px 0 0; color: #68736d; font-size: 13px; line-height: 1.75; }
.why-card-accent p { color: rgba(255,255,255,.76); }
.inline-arrow { margin-top: auto; padding-top: 24px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inline-arrow span { display: inline-block; margin-left: 8px; transition: transform .18s ease; }
.inline-arrow:hover span { transform: translateX(5px); }

.groups-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: clamp(100px, 9vw, 150px) 32px;
  overflow: hidden;
  background: #0c1714;
}
.groups-inner { width: min(var(--content-width), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr); gap: clamp(48px, 7vw, 110px); align-items: center; }
.groups-media { position: relative; min-height: 680px; border-radius: 18px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.groups-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,13,10,.65),transparent 55%); }
.groups-media img { width: 100%; height: 100%; object-fit: cover; }
.groups-badge { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 28px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(7,24,18,.64); backdrop-filter: blur(10px); }
.groups-badge strong, .groups-badge span { display: block; }
.groups-badge strong { font: 600 27px/1 "Cormorant Garamond", Georgia, serif; }
.groups-badge span { margin-top: 7px; color: rgba(255,255,255,.67); font-size: 11px; }
.groups-copy h2 { max-width: 650px; margin: 0; font: 600 clamp(52px,5vw,76px)/.94 "Cormorant Garamond",Georgia,serif; letter-spacing: -.035em; }
.groups-copy h2 em { display: block; color: #d8b47d; font-weight: 600; }
.groups-lede { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.85; }
.group-types { margin-top: 32px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.group-types span { min-height: 52px; display: flex; align-items: center; padding: 0 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; color: rgba(255,255,255,.84); background: rgba(255,255,255,.035); font-size: 11px; font-weight: 700; }
.groups-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { color: #d8b47d; }

.gallery-section { scroll-margin-top: calc(var(--header-height) + 18px); padding: clamp(104px,9vw,148px) 32px clamp(112px,9vw,150px); background: #060a09; }
.gallery-header h2 { color: #fff; }
.gallery-header h2 em { display: block; color: #d8b47d; font-weight: 600; }
.gallery-header > p { border-color: rgba(216,180,125,.4); color: rgba(255,255,255,.6); }
.gallery-grid { margin-top: clamp(48px,5vw,72px); display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-auto-rows: 235px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; padding: 0; border: 0; border-radius: 12px; overflow: hidden; cursor: zoom-in; background: #142019; }
.gallery-item-wide { grid-column: span 8; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(2,8,6,.72),transparent 58%); transition: background .25s ease; }
.gallery-item:hover::after { background: linear-gradient(0deg,rgba(2,8,6,.56),transparent 65%); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span { position: absolute; z-index: 1; left: 20px; bottom: 18px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery-item:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.gallery-dialog { width: min(1100px, calc(100% - 40px)); max-height: calc(100svh - 40px); padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: #fff; background: #070b0a; overflow: hidden; }
.gallery-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(5px); }
.gallery-dialog figure { margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; height: min(82svh,820px); }
.gallery-dialog img { width: 100%; height: 100%; min-height: 0; object-fit: contain; background: #020403; }
.gallery-dialog figcaption { min-height: 56px; display: flex; align-items: center; justify-content: center; padding: 12px 76px; color: rgba(255,255,255,.72); font-size: 12px; }
.gallery-close,.gallery-nav { position: absolute; z-index: 2; min-width: 48px; min-height: 48px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff; background: rgba(3,10,8,.72); cursor: pointer; }
.gallery-close { top: 14px; right: 14px; font-size: 28px; }
.gallery-nav { top: 50%; transform: translateY(-50%); font-size: 38px; }
.gallery-prev { left: 14px; }.gallery-next { right: 14px; }

.visitor-section { scroll-margin-top: calc(var(--header-height) + 18px); padding: clamp(104px,9vw,148px) 32px clamp(112px,10vw,160px); color: #17231d; background: #f7f4ee; }
.planning-grid { margin-top: clamp(46px,5vw,68px); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid #d8d2c7; border-bottom: 1px solid #d8d2c7; }
.planning-grid article { min-height: 245px; padding: 30px clamp(24px,3vw,42px); border-right: 1px solid #d8d2c7; }
.planning-grid article:last-child { border-right: 0; }
.planning-grid span { color: #2b7e57; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.planning-grid h3 { margin: 52px 0 0; font: 600 30px/1 "Cormorant Garamond",Georgia,serif; }
.planning-grid p { margin: 14px 0 0; color: #69736e; font-size: 12.5px; line-height: 1.75; }
.location-panel { scroll-margin-top: calc(var(--header-height) + 18px); margin-top: 72px; min-height: 440px; display: grid; grid-template-columns: 1fr .85fr; border-radius: 18px; overflow: hidden; color: #fff; background: linear-gradient(135deg,#1e704d,#123d2b); box-shadow: 0 24px 60px rgba(27,75,53,.16); }
.location-copy { padding: clamp(45px,6vw,78px); }
.location-kicker { margin: 0 0 22px; color: #dfbb83; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.location-copy h3 { margin: 0; font: 600 clamp(37px,4vw,57px)/1 "Cormorant Garamond",Georgia,serif; }
.location-copy > p:not(.location-kicker) { max-width: 610px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; }
.location-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.button-outline-dark { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.button-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.location-art { display: grid; place-items: center; min-height: 100%; background: rgba(3,16,11,.2); }
.location-art svg { width: min(420px,85%); overflow: visible; }
.location-art path,.location-art circle { fill: none; stroke: rgba(255,255,255,.78); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.location-art .map-road { stroke: rgba(222,186,130,.58); stroke-width: 11; stroke-dasharray: 6 20; }
.location-art .map-road-two { stroke: rgba(255,255,255,.18); stroke-width: 8; }
.location-art circle { fill: #dfbb83; stroke: #fff; }
.faq-wrap { margin-top: 90px; display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: clamp(48px,7vw,110px); }
.faq-heading h3 { margin: 0; font: 600 42px/1 "Cormorant Garamond",Georgia,serif; }
.faq-list details { border-top: 1px solid #d8d2c7; }
.faq-list details:last-child { border-bottom: 1px solid #d8d2c7; }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 14px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #c9c3b8; border-radius: 50%; color: #2b7e57; font-size: 20px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -4px 60px 25px 0; color: #68736d; font-size: 13px; line-height: 1.8; }

.contact-section { scroll-margin-top: calc(var(--header-height) + 18px); padding: clamp(100px,9vw,148px) 32px; background: radial-gradient(circle at 10% 20%,rgba(54,133,91,.22),transparent 28%),linear-gradient(140deg,#071812,#0a2119 65%,#06140f); }
.contact-inner { width: min(var(--content-width),100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0,.85fr) minmax(500px,1.05fr); gap: clamp(54px,8vw,124px); align-items: start; }
.contact-copy h2 { margin: 0; font: 600 clamp(52px,5.5vw,80px)/.94 "Cormorant Garamond",Georgia,serif; letter-spacing: -.035em; }
.contact-copy h2 em { display: block; color: #d8b47d; font-weight: 600; }
.contact-copy > p:not(.section-eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.85; }
.contact-methods { margin-top: 38px; display: grid; gap: 12px; }
.contact-method { min-height: 74px; display: flex; align-items: center; gap: 17px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.035); transition: background .18s ease,border-color .18s ease; }
.contact-method:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.contact-method svg { width: 32px; height: 32px; fill: none; stroke: #d8b47d; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-method:first-child svg { fill: #d8b47d; stroke: none; }.contact-method .messenger-bolt { fill: #0b2118; }
.contact-method small,.contact-method strong { display: block; }.contact-method small { color: rgba(255,255,255,.54); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.contact-method strong { margin-top: 4px; font-size: 14px; }
.contact-method strong:only-child { margin-top: 0; font-size: 15px; }
.inquiry-form { padding: clamp(28px,4vw,48px); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.075); box-shadow: 0 30px 80px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.inquiry-form label { display: block; margin-bottom: 15px; color: rgba(255,255,255,.84); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-form label > span[aria-hidden] { color: #e0bb82; }
.inquiry-form input,.inquiry-form select,.inquiry-form textarea { width: 100%; margin-top: 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; color: #fff; background: rgba(3,14,10,.44); font: 500 14px/1.4 "Manrope",sans-serif; outline: none; }
.inquiry-form input,.inquiry-form select { min-height: 50px; padding: 0 14px; }
.inquiry-form textarea { min-height: 118px; padding: 13px 14px; resize: vertical; }
.inquiry-form select option { color: #17231d; background: #fff; }
.inquiry-form input:focus,.inquiry-form select:focus,.inquiry-form textarea:focus { border-color: #d8b47d; box-shadow: 0 0 0 3px rgba(216,180,125,.16); }
.inquiry-form input::placeholder,.inquiry-form textarea::placeholder { color: rgba(255,255,255,.38); }
.consent-check { display: flex !important; gap: 12px; align-items: flex-start; margin-top: 4px; text-transform: none !important; letter-spacing: 0 !important; font-size: 11px !important; font-weight: 500 !important; line-height: 1.6; }
.consent-check input { flex: 0 0 19px; width: 19px; min-height: 19px; margin: 1px 0 0; accent-color: #2e8a59; }
.consent-check a { text-decoration: underline; text-underline-offset: 3px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.form-submit { width: 100%; margin-top: 9px; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.47); font-size: 10px; line-height: 1.6; text-align: center; }
.form-status { margin-bottom: 18px; padding: 13px 15px; border-radius: 7px; color: #fff; background: rgba(181,62,62,.3); font-size: 12px; line-height: 1.6; }

.site-footer { padding: 64px 32px 28px; color: #fff; background: #030706; }
.footer-inner { width: min(var(--content-width),100%); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr .8fr; gap: 42px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }.footer-brand img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }.footer-brand strong,.footer-brand span { display: block; }.footer-brand strong { font: 600 25px/1 "Cormorant Garamond",Georgia,serif; }.footer-brand span { margin-top: 7px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 24px; }.footer-links a { color: rgba(255,255,255,.67); font-size: 11px; }.footer-links a:hover { color: #fff; }
.footer-social { justify-self: end; display: flex; align-items: center; gap: 14px; }
.footer-social a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.76); transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease; }
.footer-social a:hover { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.42); transform: translateY(-3px); }
.footer-social svg { width: 23px; height: 23px; fill: currentColor; stroke: currentColor; stroke-width: 1.7; }
.footer-social a:last-child svg { fill: none; }
.footer-social .social-dot { fill: currentColor; stroke: none; }
.footer-bottom { width: min(var(--content-width),100%); margin: 52px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.6; }

@media (max-width: 1100px) {
  .why-header,.visitor-header,.gallery-header { grid-template-columns: 1fr; gap: 28px; }
  .why-header > p,.visitor-header > p,.gallery-header > p { max-width: 720px; }
  .why-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .why-card { min-height: 340px; }
  .groups-inner,.contact-inner { grid-template-columns: 1fr; }
  .groups-media { min-height: 560px; }
  .groups-copy { max-width: 820px; }
  .contact-copy { max-width: 820px; }
  .inquiry-form { max-width: 820px; }
  .gallery-grid { grid-auto-rows: 210px; }
  .gallery-item { grid-column: span 6; }.gallery-item-wide { grid-column: span 12; }
}

@media (max-width: 820px) {
  .story-inner { width: calc(100% - 40px); }
  .story-section { min-height: 680px; }
  .story-overlay { background: linear-gradient(0deg,rgba(4,15,12,.82),rgba(4,15,12,.22) 70%),linear-gradient(90deg,rgba(4,15,12,.55),transparent); }
  .planning-grid { grid-template-columns: 1fr; }
  .planning-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #d8d2c7; }
  .planning-grid article:last-child { border-bottom: 0; }.planning-grid h3 { margin-top: 24px; }
  .location-panel { grid-template-columns: 1fr; }.location-art { min-height: 300px; order: -1; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }.footer-social { grid-column: 1 / -1; justify-self: start; }
  .gallery-grid { grid-auto-rows: 190px; }.gallery-item-tall { grid-row: span 1; }
}

@media (max-width: 680px) {
  .story-section { min-height: 650px; }.story-inner { width: calc(100% - 32px); padding-block: 76px; }.story-inner h2 { font-size: clamp(48px,14vw,62px); }.story-inner > p:not(.section-eyebrow) { font-size: 14px; }
  .why-section,.groups-section,.gallery-section,.visitor-section,.contact-section { padding-left: 16px; padding-right: 16px; }
  .why-header h2,.visitor-header h2,.gallery-header h2,.groups-copy h2,.contact-copy h2 { font-size: clamp(45px,14vw,62px); }
  .why-header > p,.visitor-header > p,.gallery-header > p { padding-left: 18px; font-size: 13px; }
  .why-grid { grid-template-columns: 1fr; }.why-card { min-height: 330px; }.why-card svg { margin-block: 34px 28px; }
  .groups-media { min-height: 460px; }.groups-badge { left: 15px; right: 15px; bottom: 15px; }.group-types { grid-template-columns: 1fr; }.groups-actions { align-items: stretch; flex-direction: column; }.groups-actions .button,.groups-actions .text-link { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
  .gallery-item,.gallery-item-wide,.gallery-item-tall { grid-column: auto; grid-row: auto; height: 280px; min-height: 0; }
  .gallery-item:nth-child(1),.gallery-item:nth-child(6) { height: 390px; min-height: 0; }
  .gallery-item span { max-width: calc(100% - 40px); }
  .gallery-dialog { width: calc(100% - 20px); }.gallery-nav { top: auto; bottom: 8px; transform: none; }.gallery-dialog figcaption { padding-inline: 70px; }
  .location-panel { margin-top: 50px; }.location-copy { padding: 38px 24px 44px; }.location-actions { flex-direction: column; }.location-actions .button { width: 100%; }
  .faq-wrap { margin-top: 66px; }.faq-list summary { min-height: 70px; font-size: 13px; }.faq-list details p { margin-right: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }.inquiry-form { padding: 24px 18px; }.contact-method { padding-inline: 14px; }
  .site-footer { padding-left: 18px; padding-right: 18px; }.footer-inner { grid-template-columns: 1fr; }.footer-social { grid-column: auto; justify-self: start; }.footer-links { margin-top: 8px; }.footer-bottom { flex-direction: column; margin-top: 38px; }
}

.legal-page,.thank-you-page { min-height: 100svh; color: #17231d; background: #f5f0e7; }
.legal-shell { width: min(820px,calc(100% - 40px)); margin: 0 auto; padding: 70px 0 100px; }
.legal-back { min-height: 44px; display: inline-flex; align-items: center; color: #2b7e57; font-size: 12px; font-weight: 800; }
.legal-shell h1,.thank-you-card h1 { margin: 24px 0 30px; font: 600 clamp(48px,7vw,76px)/.95 "Cormorant Garamond",Georgia,serif; letter-spacing: -.035em; }
.legal-shell h2 { margin: 42px 0 12px; font: 600 32px/1 "Cormorant Garamond",Georgia,serif; }
.legal-shell p { color: #5e6a64; font-size: 14px; line-height: 1.85; }.legal-shell a { text-decoration: underline; text-underline-offset: 3px; }.legal-updated { margin-top: 50px; padding-top: 24px; border-top: 1px solid #d8d2c7; font-size: 11px !important; }
.thank-you-page { display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 20% 20%,rgba(46,138,89,.2),transparent 32%),#071812; color: #fff; }
.thank-you-card { width: min(720px,100%); padding: clamp(34px,6vw,72px); text-align: center; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.06); box-shadow: 0 30px 80px rgba(0,0,0,.25); }.thank-you-card > img { width: 86px; height: 86px; margin: 0 auto 34px; border-radius: 50%; object-fit: cover; }.thank-you-card .section-eyebrow { justify-content: center; color: #d8b47d; }.thank-you-card p:not(.section-eyebrow) { max-width: 560px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.8; }.thank-you-actions { margin-top: 32px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
