* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2d27;
  --ink-strong: #251a13;
  --forest: #315f4c;
  --forest-deep: #17372b;
  --leaf: #638656;
  --water: #6fa6a0;
  --clay: #b86449;
  --gold: #d8bd76;
  --paper: #fffdf8;
  --paper-warm: #f6efe4;
  --mist: #eef4e8;
  --line: rgba(31, 45, 39, 0.14);
  --line-strong: rgba(31, 45, 39, 0.24);
  --shadow: rgba(18, 44, 34, 0.18);
  color: var(--ink);
  background: var(--mist);
  font-family: "Avenir Next", Inter, "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--mist);
}

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

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px 32px;
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(21, 41, 32, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 1px;
  color: inherit;
  text-decoration: none;
}

.brand span {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.header-cta {
  text-decoration: none;
}

.desktop-nav a {
  opacity: 0.88;
}

.desktop-nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 253, 248, 0.15);
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(49, 95, 76, 0.22);
  background: var(--forest);
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(15, 35, 27, 0.52), rgba(15, 35, 27, 0.22) 46%, rgba(15, 35, 27, 0.2)),
    url("./assets/hero-nature.png") center / cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 31, 25, 0.2), rgba(16, 31, 25, 0.56)),
    radial-gradient(circle at 18% 40%, rgba(255, 253, 248, 0.12), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 124px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.intro h2,
.experience-copy h2,
.pricing h2,
.included h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--forest-deep);
}

.button.ghost {
  border-color: rgba(255, 253, 248, 0.5);
  background: rgba(255, 253, 248, 0.15);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 44px 0 0;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 17px 18px;
  background: rgba(17, 39, 29, 0.2);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: rgba(255, 253, 248, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 800;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.band {
  padding: 84px 0;
  background: var(--mist);
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.experience-grid,
.pricing-grid,
.included-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.intro h2,
.section-head h2,
.experience-copy h2,
.pricing h2,
.included h2,
.faq h2,
.contact h2 {
  color: var(--ink-strong);
  font-size: 40px;
}

.intro-grid > p,
.section-head > p,
.experience-copy p,
.pricing p,
.contact-copy p {
  margin: 0;
  color: rgba(31, 45, 39, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  max-width: none;
  gap: 48px;
  align-items: end;
}

.section-head.split > p {
  padding-bottom: 4px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.day-card,
.ease-grid article,
.price-table,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(24, 48, 38, 0.06);
}

.feature-card {
  padding: 26px;
}

.feature-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(49, 95, 76, 0.1);
  color: var(--forest);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.feature-card h3,
.day-card h3,
.ease-grid h3 {
  margin: 20px 0 8px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.day-card p,
.ease-grid p,
.faq-list p,
.price-table p {
  margin: 0;
  color: rgba(31, 45, 39, 0.72);
  line-height: 1.68;
}

.journey {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.day-card {
  position: relative;
  min-height: 360px;
  padding: 0 0 24px;
  overflow: hidden;
}

.day-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--water), var(--gold));
}

.day-card span {
  display: inline-block;
  margin: 22px 24px 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-photo {
  height: 158px;
  margin: 0;
  overflow: hidden;
  background: rgba(49, 95, 76, 0.08);
}

.day-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.day-card:hover .day-photo img {
  transform: scale(1.045);
}

.day-card h3,
.day-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.visual-gallery {
  background: var(--paper);
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-control {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.gallery-control:hover {
  border-color: var(--forest);
  background: rgba(49, 95, 76, 0.08);
}

.slide-track {
  display: grid;
  grid-auto-columns: minmax(320px, 42%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.slide-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest-deep);
  box-shadow: 0 22px 54px rgba(24, 48, 38, 0.14);
  scroll-snap-align: start;
}

.slide-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 28, 21, 0.78));
  pointer-events: none;
}

.slide-card figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--paper);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.slide-card figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience {
  background: var(--paper-warm);
}

.experience-grid {
  align-items: center;
}

.image-panel {
  min-height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 48, 37, 0.1), rgba(19, 48, 37, 0.22)),
    url("./assets/hero-nature.png") center / cover;
  box-shadow: 0 24px 64px rgba(24, 48, 38, 0.16);
}

.experience-copy {
  max-width: 560px;
}

.experience-copy p {
  margin-top: 18px;
}

.check-list,
.included-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.included-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(31, 45, 39, 0.78);
  line-height: 1.65;
}

.check-list li::before,
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 5px rgba(49, 95, 76, 0.1);
}

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

.ease-grid article {
  min-height: 210px;
  padding: 24px;
}

.ease-grid h3 {
  margin-top: 0;
}

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

.price-table {
  padding: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-row span {
  color: rgba(31, 45, 39, 0.76);
  overflow-wrap: anywhere;
}

.price-row strong {
  color: var(--forest);
  white-space: nowrap;
}

.price-table p {
  margin: 18px 16px 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.included {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.included-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 244, 232, 0.95), rgba(246, 239, 228, 0.96)),
    var(--mist);
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-left: 3px solid var(--forest);
  padding: 8px 14px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(49, 95, 76, 0.13);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(31, 45, 39, 0.68);
  font-size: 13px;
}

.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 253, 248, 0.82);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-weight: 800;
}

.footer-inner a {
  text-decoration: none;
}

.image-credits {
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 12px;
}

.image-credits summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 800;
}

.image-credits p {
  max-width: 980px;
  margin: 10px 0 0;
  line-height: 1.75;
}

.image-credits a {
  color: rgba(255, 253, 248, 0.9);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    padding: 12px 22px;
  }

  .desktop-nav {
    display: none;
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .intro-grid,
  .section-head.split,
  .experience-grid,
  .pricing-grid,
  .included-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .promise-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 24px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 38px;
    max-width: 154px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 1.2;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 96px 0 38px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 39px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section,
  .band {
    padding: 64px 0;
  }

  .intro h2,
  .section-head h2,
  .experience-copy h2,
  .pricing h2,
  .included h2,
  .faq h2,
  .contact h2 {
    font-size: 32px;
  }

  .intro-grid > p,
  .section-head > p,
  .experience-copy p,
  .pricing p,
  .contact-copy p {
    font-size: 16px;
  }

  .promise-grid,
  .timeline,
  .ease-grid,
  .included-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .day-card,
  .ease-grid article {
    min-height: auto;
  }

  .day-photo {
    height: 176px;
  }

  .slide-track {
    grid-auto-columns: minmax(278px, 74%);
  }

  .slide-card {
    min-height: 460px;
  }

  .image-panel {
    min-height: 420px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    padding: 14px 12px;
  }

  .price-row strong {
    white-space: normal;
  }

  .contact-form {
    padding: 18px;
  }

  .footer-inner {
    display: grid;
  }
}
