:root {
  --primary-green: #143124;
  --dark-green: #13261e;
  --green-accent: #2f4d3a;
  --gold-light: #fdee79;
  --gold-deep: #d6b24a;
  --gold-gradient-start: #ac8400;
  --ivory: #f5f2e9;
  --warm: #efe7d9;
  --white: #ffffff;
  --earth-dark: var(--primary-green);
  --ink: var(--dark-green);
  --cream: var(--ivory);
  --paper: var(--white);
  --mist: rgba(255, 250, 240, 0.78);
  --line: rgba(19, 38, 30, 0.16);
  --shadow: 0 30px 80px rgba(19, 38, 30, 0.16);
  --deep-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
  --container: min(100% - 32px, 1520px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

img,
video {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  color: #fff8df;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
}

.brand img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.header-cta {
  border: 1px solid rgba(253, 238, 121, 0.46);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(19, 38, 30, 0.46);
  backdrop-filter: blur(10px);
  color: #fff8df;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.header-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-offer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(253, 238, 121, 0.22);
  border-bottom: 1px solid rgba(253, 238, 121, 0.22);
  padding: 10px 18px;
  background: rgba(19, 38, 30, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  color: rgba(255, 248, 223, 0.9);
  backdrop-filter: blur(12px);
  text-align: center;
}

.sticky-offer span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff8df;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.64), rgba(70, 70, 66, 0.16) 55%, rgba(15, 15, 14, 0.36)),
    linear-gradient(0deg, rgba(15, 15, 14, 0.48), rgba(15, 15, 14, 0.04) 48%, rgba(15, 15, 14, 0.22));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1060px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.hero__copy {
  max-width: 640px;
  color: rgba(255, 248, 223, 0.88);
  font-size: clamp(17px, 2vw, 23px);
}

.hero__benefit-line {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(253, 238, 121, 0.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero__value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
  margin-top: 34px;
}

.hero__value-strip span {
  border: 1px solid rgba(253, 238, 121, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(19, 38, 30, 0.52);
  color: rgba(255, 248, 223, 0.92);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--gold-gradient-start), var(--gold-light));
  color: var(--earth-dark);
  box-shadow: 0 16px 36px rgba(172, 132, 0, 0.28);
}

.button--ghost {
  border: 1px solid rgba(255, 248, 223, 0.36);
  background: rgba(255, 248, 223, 0.08);
  color: #fff8df;
}

.button--full {
  width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(58px, 7vw, 112px) 0;
}

.intro {
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.08), transparent 34%),
    var(--primary-green);
  color: #fff8df;
}

.intro__grid,
.included__grid,
.faq__grid,
.split-media__grid {
  display: grid;
  gap: clamp(28px, 5vw, 80px);
}

.intro__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
}

.intro p,
.included__copy p,
.split-media p,
.section-heading p {
  color: rgba(19, 38, 30, 0.68);
}

.intro p {
  color: rgba(255, 248, 223, 0.78);
  font-size: 18px;
}

.media-band {
  height: clamp(340px, 56vw, 820px);
  overflow: hidden;
}

.media-band img,
.split-media img,
.full-bleed-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-section {
  background: var(--dark-green);
  color: #fff8df;
  padding: clamp(46px, 6vw, 78px) 0;
}

.promise-heading {
  max-width: 920px;
  margin-bottom: 28px;
  text-align: center;
}

.promise-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 50px);
}

.promise-heading p {
  margin-bottom: 0;
  color: rgba(255, 248, 223, 0.74);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(253, 238, 121, 0.18);
}

.promise-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(253, 238, 121, 0.18);
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 248, 223, 0.035);
}

.promise-grid span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.promise-grid h2 {
  margin: 34px 0 16px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.promise-grid p {
  margin-bottom: 0;
  color: rgba(255, 248, 223, 0.72);
}

.reserve-section {
  background:
    linear-gradient(90deg, rgba(19, 38, 30, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, var(--ivory), var(--warm));
  background-size: 88px 88px, auto;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 44px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.priority-booking {
  margin-bottom: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(19, 38, 30, 0.12);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 240, 0.58);
  box-shadow: 0 18px 50px rgba(19, 38, 30, 0.08);
}

.priority-booking--detail {
  margin: 0;
}

.priority-detail-section {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.priority-booking__heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.priority-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.priority-steps--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.priority-steps article {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(19, 38, 30, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.48);
}

.priority-steps article::after {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(100% - 10px);
  width: 20px;
  height: 1px;
  background: rgba(19, 38, 30, 0.2);
}

.priority-steps article:last-child::after {
  display: none;
}

.priority-steps span,
.panel-kicker {
  color: var(--gold-gradient-start);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.priority-steps h3 {
  margin: 42px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.guest-benefits,
.founders-reason {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.benefit-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 50px rgba(19, 38, 30, 0.08);
}

.benefit-card h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(19, 38, 30, 0.68);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  align-self: center;
  width: 46px;
  height: 1px;
  margin-left: 12px;
  background: var(--gold-deep);
}

.location-section {
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.08), transparent 42%),
    var(--warm);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.location-grid p {
  color: rgba(19, 38, 30, 0.68);
  font-size: 17px;
}

.location-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.location-list span {
  position: relative;
  padding-left: 18px;
  color: rgba(19, 38, 30, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.location-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(253, 238, 121, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(253, 238, 121, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(253, 238, 121, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 48% 48%, rgba(253, 238, 121, 0.16), transparent 18%),
    var(--primary-green);
  background-size: 72px 72px, 72px 72px, auto, auto;
  box-shadow: var(--shadow);
}

.map-card__rings {
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(253, 238, 121, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(253, 238, 121, 0.04), 0 0 0 160px rgba(253, 238, 121, 0.03);
}

.map-card__dot,
.map-card__label {
  position: absolute;
  z-index: 1;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card__dot--alarka {
  left: 45%;
  top: 45%;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(253, 238, 121, 0.16);
}

.map-card__label--asheville {
  right: 24%;
  top: 36%;
}

.map-card__label--atlanta {
  left: 25%;
  bottom: 22%;
}

.map-card__label--charlotte {
  right: 12%;
  bottom: 34%;
}

.map-card__label--knoxville {
  left: 22%;
  top: 22%;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  align-items: start;
}

.booking-flow {
  display: grid;
  gap: 24px;
}

.booking-panel,
.summary-card,
.feature-card,
.steps article,
.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow);
}

.booking-panel,
.summary-card {
  border-radius: 8px;
  padding: clamp(22px, 3vw, 36px);
}

.booking-panel--secondary {
  background: rgba(255, 250, 240, 0.56);
  box-shadow: 0 18px 50px rgba(19, 38, 30, 0.08);
}

.booking-panel--secondary .panel-heading {
  align-items: flex-start;
}

.booking-panel--secondary .panel-heading span {
  background: rgba(19, 38, 30, 0.1);
  color: var(--earth-dark);
}

.panel-kicker {
  margin: 0 0 5px;
}

.panel-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.panel-heading span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--earth-dark);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.panel-heading h3 {
  margin: 0;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.option-card {
  min-height: 100%;
  border: 1px solid rgba(19, 38, 30, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.68);
  text-align: left;
  cursor: pointer;
}

.option-card[aria-pressed="true"] {
  border-color: var(--gold-deep);
  background: linear-gradient(180deg, #ffffff, #f7edbd);
  box-shadow: 0 18px 44px rgba(172, 132, 0, 0.18);
}

.option-grid--upgrades {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid--upgrades .option-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.option-grid--upgrades .option-card[aria-pressed="true"] {
  background: #fffdf4;
  box-shadow: 0 12px 30px rgba(172, 132, 0, 0.12);
}

.option-grid--upgrades .option-card h4 {
  font-size: 20px;
}

.option-grid--upgrades .option-card p,
.option-grid--upgrades .pill {
  font-size: 12px;
}

.option-grid--upgrades .option-card__top {
  display: block;
}

.option-grid--upgrades .option-card__price {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.option-grid--upgrades .option-card__meta {
  margin-top: 14px;
}

.option-grid--upgrades .option-card__cta,
.option-grid--upgrades .option-card__pricing span {
  display: none;
}

.option-grid--upgrades .option-card__pricing {
  text-align: left;
}

.option-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.option-card h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.option-card p {
  margin-bottom: 0;
  color: rgba(19, 38, 30, 0.68);
}

.option-card__price {
  white-space: nowrap;
  color: var(--earth-dark);
  font-weight: 900;
}

.option-card__pricing {
  text-align: right;
}

.option-card__pricing span {
  display: block;
  margin-bottom: 8px;
  color: rgba(19, 38, 30, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.option-card__pricing .option-card__price {
  display: block;
  font-size: 24px;
}

.option-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 22px;
}

.option-card__meta--upgrades {
  display: none;
}

.pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-radius: 4px;
  padding: 8px 10px;
  background: rgba(20, 49, 36, 0.1);
  color: var(--earth-dark);
  font-size: 12px;
  font-weight: 800;
}

.option-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--earth-dark);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.panel-note {
  margin: 16px 0 0;
  color: rgba(19, 38, 30, 0.62);
  font-size: 13px;
}

.summary-card {
  position: sticky;
  top: 94px;
  background: #ffffff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(19, 38, 30, 0.12);
  color: rgba(19, 38, 30, 0.76);
}

.summary-row strong {
  color: var(--earth-dark);
  text-align: right;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 18px;
  color: var(--earth-dark);
  font-size: 22px;
  font-weight: 900;
}

.summary-empty {
  border: 1px dashed rgba(19, 38, 30, 0.26);
  border-radius: 18px;
  padding: 18px;
  color: rgba(19, 38, 30, 0.64);
  background: rgba(255, 255, 255, 0.42);
}

.checkout-error {
  min-height: 24px;
  margin: 8px 0 12px;
  color: #7d1d13;
  font-weight: 800;
}

.reservation-email {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.reservation-email span {
  color: rgba(19, 38, 30, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-email input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(19, 38, 30, 0.18);
  border-radius: 4px;
  padding: 12px 14px;
  background: rgba(245, 242, 233, 0.62);
  color: var(--earth-dark);
}

.reservation-email input:focus {
  outline: 2px solid rgba(214, 178, 74, 0.44);
  outline-offset: 2px;
}

.summary-note {
  margin: 16px 0 0;
  color: rgba(19, 38, 30, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.trust-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 38, 30, 0.1);
}

.trust-panel h4 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.trust-list span {
  position: relative;
  padding-left: 16px;
  color: rgba(19, 38, 30, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.trust-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.checkout-enhancements {
  margin-top: 18px;
  border-top: 1px solid rgba(19, 38, 30, 0.1);
  padding-top: 18px;
}

.checkout-enhancements h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.checkout-enhancements h4 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--earth-dark);
  color: var(--gold-light);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.checkout-enhancements > h4::after {
  content: "Choose an upgrade if you want earlier access to the dates you most want to secure.";
  display: block;
  flex: 0 0 100%;
  margin-top: 8px;
  margin-left: 38px;
  padding-bottom: 10px;
  color: rgba(19, 38, 30, 0.62);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.checkout-enhancements > p {
  margin: 0 0 12px;
  color: rgba(19, 38, 30, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-enhancements .option-grid--upgrades {
  grid-template-columns: 1fr;
}

.checkout-enhancements .option-grid--upgrades .option-card {
  padding: 14px;
  box-shadow: none;
}

.checkout-enhancements .option-grid--upgrades .option-card h4 {
  font-size: 18px;
}

.priority-card {
  margin-top: 18px;
  border-top: 1px solid rgba(19, 38, 30, 0.1);
  padding-top: 18px;
}

.priority-card h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.priority-card p,
.priority-card li {
  color: rgba(19, 38, 30, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.priority-card ol {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
}

.founder-story {
  background: var(--paper);
}

.founder-story__grid,
.progress-section__grid {
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.founder-story__grid {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.founder-story__media {
  margin: 0;
  justify-self: start;
}

.founder-story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 260px;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-placeholder {
  aspect-ratio: 4 / 5;
  max-width: 260px;
  min-height: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 238, 121, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(19, 38, 30, 0.9), rgba(20, 49, 36, 0.98)),
    url("../founders/images/creek.jpg") center / cover;
  background-blend-mode: normal, multiply, normal;
  box-shadow: var(--shadow);
  color: rgba(255, 248, 223, 0.72);
}

.founder-placeholder span {
  border: 1px solid rgba(253, 238, 121, 0.3);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(19, 38, 30, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-story__media figcaption {
  margin-top: 10px;
  color: rgba(19, 38, 30, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-story__copy {
  max-width: 760px;
  justify-self: end;
}

.founder-story__columns {
  display: grid;
  gap: 10px;
}

.founder-story__copy p,
.progress-section p {
  color: rgba(19, 38, 30, 0.68);
  font-size: 17px;
}

.founder-story blockquote {
  margin: 30px 0;
  border-left: 2px solid var(--gold-deep);
  padding-left: 22px;
}

.founder-story blockquote p {
  margin-bottom: 8px;
  color: var(--earth-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.progress-section {
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.08), transparent 40%),
    var(--warm);
}

.progress-section__grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.progress-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-timeline--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.progress-timeline li {
  position: relative;
  min-height: 168px;
  padding: 0 18px 0 0;
}

.progress-timeline--grid li {
  min-height: 178px;
  border: 1px solid rgba(19, 38, 30, 0.13);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.58);
  box-shadow: 0 16px 44px rgba(19, 38, 30, 0.07);
}

.progress-timeline li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(19, 38, 30, 0.18);
}

.progress-timeline--grid li::before {
  display: none;
}

.progress-timeline li:last-child::before {
  right: auto;
  width: 20px;
}

.progress-timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 38, 30, 0.22);
  border-radius: 50%;
  background: var(--warm);
}

.progress-timeline .is-complete span {
  border-color: var(--primary-green);
  background: var(--primary-green);
}

.progress-timeline .is-complete span::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 12px;
  height: 17px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(42deg);
}

.progress-timeline .is-current span {
  border-color: var(--gold-deep);
  background: #fffdf4;
  box-shadow: 0 0 0 6px rgba(214, 178, 74, 0.16);
}

.progress-timeline .is-current span::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.progress-timeline li:not(.is-complete):not(.is-current) span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(19, 38, 30, 0.3);
  border-radius: 50%;
}

.progress-timeline strong {
  display: block;
  margin-top: 18px;
  color: var(--earth-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}

.progress-timeline--grid strong {
  min-height: 72px;
  margin-top: 34px;
}

.progress-timeline small {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(20, 49, 36, 0.08);
  color: rgba(19, 38, 30, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-timeline .is-current small {
  background: rgba(214, 178, 74, 0.18);
  color: var(--earth-dark);
}

.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.team-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 38px rgba(19, 38, 30, 0.07);
}

.team-grid span {
  color: var(--gold-gradient-start);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-grid h3 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.included {
  background:
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.enhancements-section {
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.08), transparent 42%),
    var(--primary-green);
  color: #fff8df;
}

.enhancements-section .section-heading p {
  color: rgba(255, 248, 223, 0.74);
}

.enhancements-section .option-grid--upgrades {
  max-width: 900px;
  margin: 0 auto;
}

.enhancements-section .option-grid--upgrades .option-card {
  border-color: rgba(253, 238, 121, 0.2);
  background: rgba(255, 248, 223, 0.08);
  color: #fff8df;
}

.enhancements-section .option-grid--upgrades .option-card[aria-pressed="true"] {
  border-color: rgba(253, 238, 121, 0.56);
  background: rgba(255, 248, 223, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.enhancements-section .option-grid--upgrades .option-card p,
.enhancements-section .option-grid--upgrades .pill {
  color: rgba(255, 248, 223, 0.72);
}

.enhancements-section .option-grid--upgrades .pill {
  background: rgba(255, 248, 223, 0.1);
}

.enhancements-section .option-grid--upgrades .option-card__price {
  color: var(--gold-light);
}

.included__grid {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.steps article {
  border-radius: 8px;
  padding: 24px;
}

.feature-card p,
.steps p,
.faq p {
  color: rgba(19, 38, 30, 0.68);
}

.split-media {
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.1), transparent 40%),
    var(--primary-green);
  color: #fff8df;
}

.split-media__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
}

.split-media img {
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.split-media p {
  color: rgba(255, 248, 223, 0.78);
}

.full-bleed-story {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff8df;
}

.full-bleed-story img {
  position: absolute;
  inset: 0;
}

.full-bleed-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 38, 30, 0.9), rgba(19, 38, 30, 0.18) 60%, rgba(19, 38, 30, 0.48));
}

.full-bleed-story__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 clamp(58px, 8vw, 120px);
  text-align: center;
}

.full-bleed-story__content p {
  color: rgba(255, 248, 223, 0.78);
}

.how-it-works {
  background: var(--warm);
}

.steps article {
  box-shadow: none;
}

.steps h3 {
  margin-top: 20px;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  color: var(--earth-dark);
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff8df;
  background-image: url("../founders/images/Blue-Ridge-Pitch-Deck.jpg");
  background-size: cover;
  background-position: center;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 38, 30, 0.88), rgba(19, 38, 30, 0.28));
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: max(16px, calc((100vw - 1520px) / 2));
  padding-bottom: clamp(48px, 8vw, 96px);
}

.final-cta h2 {
  margin-bottom: 28px;
}

.status-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(253, 238, 121, 0.08), transparent 36%),
    var(--primary-green);
}

.status-card {
  width: min(100%, 760px);
  border: 1px solid rgba(253, 238, 121, 0.2);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 64px);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--deep-shadow);
}

.status-card h1 {
  color: var(--earth-dark);
  font-size: clamp(38px, 6vw, 78px);
}

.status-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(19, 38, 30, 0.7);
  font-size: 18px;
}

@media (max-width: 1100px) {
  .booking-layout,
  .intro__grid,
  .included__grid,
  .founder-story__grid,
  .progress-section__grid,
  .location-grid,
  .split-media__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .feature-grid,
  .steps,
  .promise-grid,
  .priority-steps,
  .priority-steps--five,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid--three,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-story__media img,
  .founder-placeholder {
    max-width: 180px;
    max-height: none;
  }

  .progress-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 22px, 1520px);
  }

  .site-header {
    top: 70px;
    padding-top: 12px;
  }

  .brand {
    width: 92px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .sticky-offer {
    padding: 9px 12px;
  }

  .hero__content {
    padding: 168px 0 48px;
    text-align: left;
  }

  .hero__video {
    object-position: 28% center;
  }

  h1,
  .hero__copy,
  .hero__benefit-line {
    text-align: left;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .option-grid,
  .option-grid--upgrades,
  .feature-grid,
  .steps,
  .promise-grid,
  .priority-steps,
  .priority-steps--five,
  .benefit-grid,
  .benefit-grid--three,
  .team-grid,
  .progress-timeline,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .priority-steps article {
    min-height: 150px;
  }

  .priority-steps article::after {
    display: none;
  }

  .priority-steps h3 {
    margin-top: 28px;
    font-size: 22px;
  }

  .hero__benefit-line {
    font-size: 12px;
  }

  .benefit-card {
    min-height: 0;
  }

  .map-card {
    min-height: 320px;
  }

  .promise-grid {
    border-left: 0;
  }

  .promise-grid article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(253, 238, 121, 0.18);
  }

  .option-card__top {
    display: block;
  }

  .option-card__price {
    display: block;
    margin-top: 12px;
  }

  .option-card__pricing {
    text-align: left;
  }

  .split-media img {
    min-height: 300px;
  }

  .founder-story__media img {
    max-width: 180px;
    min-height: 0;
  }

  .founder-placeholder {
    max-width: 180px;
    min-height: 0;
  }

  .progress-timeline li {
    min-height: auto;
    padding: 0 0 24px 58px;
  }

  .progress-timeline--grid li {
    min-height: auto;
    padding: 22px;
  }

  .progress-timeline li::before {
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    height: auto;
    right: auto;
  }

  .progress-timeline--grid li::before {
    display: none;
  }

  .progress-timeline li:last-child::before {
    height: 20px;
  }

  .progress-timeline span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .progress-timeline--grid span {
    position: relative;
    left: auto;
    top: auto;
  }

  .progress-timeline strong {
    margin-top: 0;
    padding-top: 6px;
  }

  .progress-timeline--grid strong {
    min-height: auto;
    margin-top: 20px;
  }

  .full-bleed-story {
    min-height: 620px;
  }
}
