:root {
  --ink: #152823;
  --evergreen: #123a31;
  --deep-green: #0d2b25;
  --sage: #8fa397;
  --mist: #e9efeb;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --gold: #c9a467;
  --gold-light: #e3c58d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.inquiry-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.section-shell {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 22px;
  color: #5c7068;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 14px 25px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--deep-green);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-dark {
  background: var(--evergreen);
  color: var(--white);
}

.button-outline {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--evergreen);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 0 0 6px;
  color: var(--evergreen);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
}

.light-link {
  color: var(--white);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0 4vw;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 38px;
}

.brand-mark i {
  position: absolute;
  bottom: 8px;
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-bottom: 20px solid currentColor;
  border-left: 12px solid transparent;
}

.brand-mark i:nth-child(1) { left: 0; opacity: 0.76; }
.brand-mark i:nth-child(2) { left: 9px; bottom: 12px; border-right-width: 14px; border-bottom-width: 25px; border-left-width: 14px; }
.brand-mark i:nth-child(3) { right: 0; opacity: 0.62; }

.brand-mark::after {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.8;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-transform: uppercase;
}

.brand-copy b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand-copy small {
  font-size: 0.52rem;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,0.55);
  padding: 13px 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  height: 100svh;
  max-height: 1020px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.2s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,23,20,0.78) 0%, rgba(8,30,25,0.35) 52%, rgba(6,19,18,0.1) 75%),
    linear-gradient(0deg, rgba(5,20,17,0.58) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 12vw));
  margin: 80px 0 0 8vw;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4.6rem, 8.7vw, 9rem);
  line-height: 0.84;
  text-wrap: balance;
}

.hero h1 em,
.regions h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 38px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 34px;
  left: 8vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  padding-block: 108px;
}

.intro-kicker {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  color: #62776e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.vertical-rule {
  width: 1px;
  height: 90px;
  background: var(--gold);
}

.intro-copy {
  max-width: 780px;
}

.intro-copy h2 {
  margin-bottom: 44px;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #53655e;
}

.intro-copy .large-copy {
  margin-bottom: 26px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.42;
}

.experiences {
  padding: 98px 0 94px;
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading > p {
  max-width: 380px;
  margin-bottom: 8px;
  color: #5f7069;
  font-size: 1.05rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.experience-card > img,
.card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-card > img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.experience-card:hover > img {
  transform: scale(1.035);
}

.card-shade {
  background: linear-gradient(0deg, rgba(4,26,21,0.86) 0%, rgba(5,27,22,0.18) 58%, rgba(5,27,22,0.05));
}

.experience-card-copy {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 35px;
  left: 34px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
}

.experience-card-copy > span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.experience-card h3 {
  margin-bottom: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.06;
}

.experience-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.8);
}

.seasonal-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 780px;
  margin-top: 14px;
  background: var(--paper);
  color: var(--ink);
}

#seasonal-packages {
  scroll-margin-top: 24px;
}

.seasonal-card--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
}

.seasonal-card--reverse .seasonal-media {
  order: 2;
}

.seasonal-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
}

.seasonal-media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seasonal-card:hover .carousel-image {
  transform: scale(1.025);
}

.seasonal-media-shade {
  z-index: 1;
  background: linear-gradient(0deg, rgba(5,27,22,0.72) 0%, rgba(5,27,22,0.05) 58%);
  pointer-events: none;
}

.seasonal-media-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.seasonal-media-copy > span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.seasonal-media-copy p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.84);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seasonal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 6vw, 86px);
}

.seasonal-content h3 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.seasonal-intro {
  max-width: 750px;
  margin-bottom: 34px;
  color: #586a63;
  font-size: 1.02rem;
}

.seasonal-select-note {
  margin: -14px 0 28px;
  color: #7a6550;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.seasonal-activity-groups {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  border-top: 1px solid #ced6d0;
  margin-bottom: 32px;
}

.seasonal-activity-group {
  border-bottom: 1px solid #ced6d0;
  padding: 21px 0 20px;
}

.seasonal-activity-group h4 {
  margin: 0 0 10px;
  color: var(--evergreen);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seasonal-activity-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seasonal-activity-group li {
  color: #5a6c64;
  font-size: 0.77rem;
  line-height: 1.55;
}

.seasonal-activity-group li button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 2px 5px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.seasonal-activity-group li button:hover,
.seasonal-activity-group li button:focus-visible {
  background: #e9eee9;
  color: var(--evergreen);
  outline: none;
}

.seasonal-activity-group li button.selected {
  background: var(--evergreen);
  box-shadow: 0 0 0 2px var(--evergreen);
  color: var(--white);
}

.seasonal-activity-group li:not(:last-child)::after {
  margin: 0 8px;
  color: var(--gold);
  content: "•";
}

.activity-strip {
  display: flex;
  align-items: center;
  gap: 42px;
  border-top: 1px solid #cdd6d0;
  margin-top: 38px;
  padding-top: 24px;
}

.activity-strip > span {
  flex: 0 0 auto;
  color: #6c7a74;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.activity-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.activity-strip li button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid #c8d2cb;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 13px 8px 15px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.activity-strip li button:hover,
.activity-strip li button:focus-visible {
  border-color: var(--evergreen);
  outline: none;
  transform: translateY(-1px);
}

.activity-strip li button.selected {
  border-color: var(--evergreen);
  background: var(--evergreen);
  color: var(--white);
}

.activity-strip li button small {
  color: #7c8a84;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-strip li button.selected small {
  color: var(--gold-light);
}

.feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 760px;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding-block: 108px;
}

.feature-image {
  position: relative;
  align-self: stretch;
  min-height: 550px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--paper);
  padding: 14px 20px 8px 0;
  color: #6d7b75;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-copy blockquote {
  margin-bottom: 38px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.feature-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #586a63;
}

.regions {
  padding: 102px 0 108px;
  background: var(--deep-green);
  color: var(--white);
}

.regions-heading > p {
  color: rgba(255,255,255,0.66);
}

.region-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 42px;
}

.region-tabs button {
  position: relative;
  min-height: 86px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.region-tabs button:last-child {
  border-right: 0;
}

.region-tabs button span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
}

.region-tabs button.active,
.region-tabs button:hover {
  background: rgba(255,255,255,0.055);
  color: var(--white);
}

.region-tabs button.active::after {
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 2px;
  background: var(--gold);
  content: "";
}

.region-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 590px;
}

.region-image-wrap {
  position: relative;
  overflow: hidden;
}

.image-carousel {
  position: absolute;
  inset: 0;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: carousel-fade 260ms ease;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.carousel-side {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  display: flex;
  width: clamp(52px, 7vw, 88px);
  align-items: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.carousel-side--previous {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(90deg, rgba(6,28,23,0.62), rgba(6,28,23,0));
  padding-left: clamp(8px, 1.4vw, 18px);
}

.carousel-side--next {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(270deg, rgba(6,28,23,0.62), rgba(6,28,23,0));
  padding-right: clamp(8px, 1.4vw, 18px);
}

.carousel-side span {
  display: inline-flex;
  width: 42px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.62);
  background: rgba(8,31,26,0.58);
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-side:hover,
.carousel-side:focus-visible {
  outline: none;
  opacity: 1;
}

.carousel-side:hover span,
.carousel-side:focus-visible span {
  background: var(--white);
  color: var(--evergreen);
  transform: scale(1.05);
}

.carousel-footer {
  position: absolute;
  z-index: 5;
  bottom: 17px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  background: rgba(8,31,26,0.48);
  padding: 4px 6px;
  backdrop-filter: blur(8px);
}

.carousel-toggle {
  min-width: 60px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  background: rgba(8,31,26,0.58);
  color: var(--white);
  cursor: pointer;
  padding: 0 12px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.carousel-toggle:hover,
.carousel-toggle:focus-visible {
  background: var(--white);
  color: var(--evergreen);
  outline: none;
}

.carousel-dots button {
  position: relative;
  width: 26px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  content: "";
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-dots button:hover::after,
.carousel-dots button:focus-visible::after,
.carousel-dots button.active::after {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.55);
}

.carousel-dots button:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: -4px;
}

@keyframes carousel-fade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.region-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-image-wrap > span {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 26px;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 7px 12px;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.region-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #1b493e;
  padding: clamp(42px, 6vw, 80px);
}

.region-copy h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
}

.region-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,0.74);
}

.region-copy ul {
  width: 100%;
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}

.region-copy li {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding: 10px 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
}

.region-copy li::before {
  margin-right: 10px;
  color: var(--gold-light);
  content: "—";
}

.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding-block: 105px;
}

.steps {
  counter-reset: planning;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 160px 1fr;
  gap: 20px;
  border-top: 1px solid #ccd4cf;
  padding: 26px 0 29px;
}

.steps article:last-child {
  border-bottom: 1px solid #ccd4cf;
}

.steps span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.steps h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.steps p {
  margin-bottom: 0;
  color: #5a6b64;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 850px;
  background: var(--cream);
}

.contact-image {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.contact-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,30,25,0.85) 0%, rgba(6,30,25,0.08) 68%);
  content: "";
}

.contact-image-copy {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 6vw, 90px);
  bottom: 75px;
  left: clamp(30px, 6vw, 90px);
}

.contact-image-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 5.4vw, 6rem);
}

.contact-image-copy > p:last-child {
  max-width: 520px;
  color: rgba(255,255,255,0.78);
}

.form-wrap {
  display: flex;
  align-items: center;
  padding: clamp(55px, 7vw, 110px);
}

.form-alert {
  border-left: 3px solid #a5634c;
  background: #f6e9e3;
  color: #713e2f;
  margin: 0 0 28px;
  padding: 13px 16px;
  font-size: 0.86rem;
}

.form-wrap form,
.form-success {
  width: min(680px, 100%);
}

.form-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #cbd3cd;
  margin-bottom: 42px;
}

.form-intro > p:last-child,
.form-note {
  color: #708078;
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aab7b0;
  border-radius: 0;
  outline: none;
  background: transparent;
  padding: 10px 0 12px;
  color: var(--ink);
  transition: border-color 180ms ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--evergreen);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #96a19b;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 38px;
  cursor: pointer;
  padding-inline: 24px;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
}

.form-success {
  text-align: center;
}

.form-success > span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 28px;
  color: var(--evergreen);
  font-size: 1.4rem;
}

.form-success h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.form-success > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 auto 28px;
  color: #61716a;
}

footer {
  background: #0b211d;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr 1.2fr;
  gap: 6vw;
  padding-block: 68px;
}

.footer-brand {
  align-self: flex-start;
  color: var(--gold-light);
}

.footer-statement {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.06;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: 22px 28px;
  color: rgba(255,255,255,0.42);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-in {
  from { opacity: 0.2; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1000px) {
  .section-shell {
    width: min(100% - 48px, 900px);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-content {
    width: calc(100% - 12vw);
    margin-left: 6vw;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 10vw, 7rem);
  }

  .intro,
  .approach {
    grid-template-columns: 1fr;
  }

  .intro-kicker {
    display: none;
  }

  .seasonal-card,
  .seasonal-card--reverse {
    grid-template-columns: 1fr;
  }

  .seasonal-card--reverse .seasonal-media {
    order: 0;
  }

  .seasonal-media {
    min-height: 620px;
  }

  .region-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .region-panel {
    min-height: auto;
  }

  .region-image-wrap {
    min-height: 540px;
  }

  .region-copy {
    min-height: 520px;
  }

  .approach-heading {
    max-width: 660px;
  }

  .contact-image {
    min-height: 720px;
  }

  .form-wrap {
    min-height: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr 1.4fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .admin-bar .site-header {
    top: 46px;
  }

  body {
    font-size: 15px;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

  .site-header {
    position: absolute;
    height: 82px;
    padding-inline: 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .nav-links {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--deep-green);
    padding: 100px 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.nav-cta) {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .hero {
    min-height: 740px;
    max-height: none;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(5,22,18,0.88) 0%, rgba(5,24,20,0.3) 80%);
  }

  .hero-content {
    width: calc(100% - 36px);
    align-self: flex-end;
    margin: 0 18px 108px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.4rem);
    line-height: 0.88;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-foot {
    display: none;
  }

  .intro,
  .feature,
  .approach {
    padding-block: 64px;
  }

  .experiences,
  .regions {
    padding-block: 68px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 34px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-card,
  .seasonal-card--reverse {
    grid-template-columns: 1fr;
  }

  .seasonal-card--reverse .seasonal-media {
    order: 0;
  }

  .seasonal-media {
    min-height: 560px;
  }

  .seasonal-activity-groups {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 510px;
  }

  .experience-card-copy {
    right: 23px;
    bottom: 24px;
    left: 23px;
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .seasonal-card {
    margin-top: 6px;
  }

  .seasonal-media {
    min-height: 430px;
  }

  .seasonal-content {
    padding: 48px 23px 54px;
  }

  .seasonal-content h3 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .seasonal-activity-groups {
    margin-bottom: 28px;
  }

  .seasonal-activity-group li {
    font-size: 0.8rem;
  }

  .activity-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .activity-strip ul {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .activity-strip li button {
    width: 100%;
    justify-content: space-between;
  }

  .carousel-side {
    width: 48px;
  }

  .carousel-side--previous {
    padding-left: 5px;
  }

  .carousel-side--next {
    padding-right: 5px;
  }

  .carousel-side span {
    width: 34px;
    height: 58px;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 520px;
  }

  .feature-copy {
    padding: 20px 8px 0;
  }

  .region-tabs {
    display: flex;
    margin-right: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .region-tabs::-webkit-scrollbar {
    display: none;
  }

  .region-tabs button {
    min-width: 150px;
    padding-inline: 18px;
  }

  .region-image-wrap {
    min-height: 410px;
  }

  .region-copy {
    min-height: 520px;
    padding: 42px 28px;
  }

  .steps article {
    grid-template-columns: 40px 1fr;
  }

  .steps p {
    grid-column: 2;
  }

  .contact-image {
    min-height: 650px;
  }

  .contact-image-copy {
    right: 24px;
    bottom: 48px;
    left: 24px;
  }

  .form-wrap {
    min-height: 0;
    padding: 70px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
