:root {
  --pine: #174432;
  --moss: #6e8b4c;
  --fern: #b8ce79;
  --bark: #6d4b31;
  --clay: #c46f4b;
  --sand: #f2e7cf;
  --foam: #eff8ec;
  --sea: #247a83;
  --ink: #17251d;
  --shadow: 0 24px 60px rgba(21, 37, 29, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 111, 75, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(23, 68, 50, 0.08) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(45deg, rgba(110, 139, 76, 0.08) 25%, transparent 25%) 0 0 / 38px 38px,
    var(--foam);
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(18, 40, 30, 0.62);
  padding: 10px 12px;
  color: white;
  backdrop-filter: blur(16px);
}

.brand,
nav,
.hero-actions,
.field-row,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--fern);
  color: var(--pine);
  font-size: 0.82rem;
  letter-spacing: 0;
}

nav {
  gap: 8px;
}

nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--pine);
  color: white;
}

.hero-image,
.hero-overlay,
.leaf-pattern {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.84), rgba(15, 49, 36, 0.35) 54%, rgba(8, 21, 15, 0.18)),
    linear-gradient(0deg, rgba(8, 21, 15, 0.62), transparent 45%);
}

.leaf-pattern {
  opacity: 0.34;
  background-image:
    linear-gradient(35deg, transparent 44%, rgba(184, 206, 121, 0.35) 45% 52%, transparent 53%),
    linear-gradient(145deg, transparent 44%, rgba(255, 255, 255, 0.22) 45% 52%, transparent 53%);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 36px));
  padding: 24vh 0 190px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--fern);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sea);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 500;
  line-height: 0.9;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--fern);
  color: var(--pine);
  box-shadow: 0 14px 36px rgba(184, 206, 121, 0.24);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.availability-strip {
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2));
  bottom: 42px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: min(680px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(16, 39, 29, 0.72);
  backdrop-filter: blur(18px);
}

.availability-strip span {
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.availability-strip strong {
  display: block;
  color: white;
  font-size: 1.24rem;
}

.band,
.section,
.experience,
.booking-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 52px;
  padding: 78px 0;
}

.intro p:last-child,
.booking-copy p,
.experience-copy p {
  margin: 0;
  color: rgba(23, 37, 29, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section {
  padding: 42px 0 84px;
}

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

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

.cabin-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.cabin-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.cabin-body {
  padding: 18px;
}

.cabin-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--sea);
  font-size: 0.88rem;
  font-weight: 800;
}

.cabin-card p {
  min-height: 76px;
  margin: 12px 0 16px;
  color: rgba(23, 37, 29, 0.7);
  line-height: 1.55;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid rgba(23, 68, 50, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(184, 206, 121, 0.16);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 700;
}

.experience {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  margin-bottom: 86px;
  border-radius: 8px;
  background: var(--pine);
  color: white;
  padding: 44px;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.ritual-grid article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 206, 121, 0.15), transparent),
    rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.ritual-grid span {
  color: var(--fern);
  font-weight: 900;
}

.ritual-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 82px;
}

.price-panel {
  margin-top: 22px;
  border-left: 5px solid var(--clay);
  background: #fffaf0;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(109, 75, 49, 0.12);
  font-weight: 800;
}

.price-panel.warning {
  border-left-color: #9d3d25;
  color: #9d3d25;
}

.booking-form {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  background: #fffaf0;
  padding: 22px;
  box-shadow: var(--shadow);
}

.field-row {
  gap: 14px;
}

label {
  display: grid;
  flex: 1;
  gap: 7px;
  color: rgba(23, 37, 29, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 68, 50, 0.2);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

input:focus,
select:focus {
  outline: 3px solid rgba(36, 122, 131, 0.22);
  border-color: var(--sea);
}

.submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--pine);
  font-weight: 800;
}

.form-status.error {
  color: #9d3d25;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(23, 68, 50, 0.15);
  padding: 48px 0;
}

blockquote {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.12;
}

.social-proof div {
  display: grid;
  gap: 6px;
}

.social-proof span,
footer span {
  color: rgba(23, 37, 29, 0.62);
}

footer {
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: white;
  padding: 24px max(18px, calc((100vw - 1120px) / 2));
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .availability-strip,
  .intro,
  .experience,
  .booking-section,
  .social-proof {
    grid-template-columns: 1fr;
  }

  .availability-strip {
    left: 18px;
    right: 18px;
  }

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

  .experience {
    padding: 28px;
  }

  .field-row,
  .social-proof,
  footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  nav a {
    padding: 8px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-top: 150px;
  }

  .availability-strip {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .availability-strip span {
    padding: 11px 14px;
  }

  .intro {
    padding-top: 54px;
  }

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


.button.light {
  background: #fffaf0;
  color: var(--pine);
}

.button.earthy {
  background: var(--bark);
  color: white;
}

.text-link,
.cabin-link {
  color: var(--sea);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cabin-link {
  display: inline-flex;
  margin-top: 16px;
}

.split-heading {
  align-items: end;
}

.location-band {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  margin: 0 auto 78px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 206, 121, 0.18), transparent 42%),
    var(--pine);
  color: white;
  padding: 42px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.location-copy .button {
  margin-top: 18px;
}

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

.place-grid article,
.values article,
.steps-panel {
  border-radius: 8px;
  background: #fffaf0;
  padding: 18px;
  box-shadow: 0 16px 38px rgba(23, 37, 29, 0.12);
}

.place-grid article {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.place-grid span,
.values span,
.place-feature span {
  color: var(--fern);
  font-weight: 900;
}

.place-grid p,
.place-feature p,
.about-copy p,
.steps-panel p {
  color: rgba(23, 37, 29, 0.7);
  line-height: 1.62;
}

.place-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.story-strip {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(23, 68, 50, 0.15);
  border-bottom: 1px solid rgba(23, 68, 50, 0.15);
  padding: 48px 0;
  margin-bottom: 80px;
}

.story-strip p {
  margin: 0;
  color: rgba(23, 37, 29, 0.72);
  line-height: 1.65;
}

.page-hero {
  display: grid;
  min-height: 520px;
  place-items: end start;
  padding: 170px max(18px, calc((100vw - 1120px) / 2)) 78px;
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.82), rgba(8, 21, 15, 0.25)),
    url('/assets/greensoul-hero.png') center / cover;
  color: white;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.page-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.cabin-hero {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.82), rgba(8, 21, 15, 0.22)),
    url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.area-hero {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.82), rgba(8, 21, 15, 0.2)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.84), rgba(8, 21, 15, 0.24)),
    url('/assets/greensoul-hero.png') center / cover;
}

.detail-list {
  display: grid;
  gap: 36px;
  padding: 72px 0;
}

.cabin-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.cabin-detail:nth-child(even) img {
  order: 2;
}

.cabin-detail img {
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cabin-detail p {
  color: rgba(23, 37, 29, 0.72);
  line-height: 1.65;
}

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

.fact-list div {
  border-left: 4px solid var(--clay);
  background: #fffaf0;
  padding: 12px;
}

.fact-list dt {
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.feature-list.expanded {
  margin-bottom: 20px;
}

.area-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 72px 0 36px;
}

.place-feature {
  border-radius: 8px;
  background: #fffaf0;
  padding: 22px;
  box-shadow: var(--shadow);
}

.place-feature h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.day-plan,
.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 42px 0 72px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 68, 50, 0.15);
  padding: 0 0 16px;
}

.timeline span {
  color: rgba(23, 37, 29, 0.72);
  line-height: 1.55;
}

.sources-note {
  padding: 0 0 72px;
  color: rgba(23, 37, 29, 0.58);
  font-size: 0.92rem;
}

.about-copy {
  display: grid;
  gap: 16px;
}

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

.values p {
  margin-bottom: 0;
}

.about-booking {
  padding-top: 0;
}

.steps-panel {
  display: grid;
  gap: 12px;
}

.steps-panel p {
  margin: 0;
}

@media (max-width: 920px) {
  .location-band,
  .story-strip,
  .cabin-detail,
  .day-plan,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .cabin-detail:nth-child(even) img {
    order: 0;
  }

  .place-grid,
  .area-guide,
  .values,
  .fact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .location-band {
    padding: 26px;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 150px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
