:root {
  --pine: #243b2f;
  --pine-deep: #13231b;
  --moss: #6f8f56;
  --sage: #dce9d2;
  --cream: #fbf5e8;
  --sand: #efd8ad;
  --clay: #b8633b;
  --amber: #f4b75e;
  --ink: #17211b;
  --muted: #647267;
  --white: #ffffff;
  --line: rgba(23, 33, 27, 0.13);
  --shadow: 0 24px 60px rgba(19, 35, 27, .14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img, svg {
  display: block;
}

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

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

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 245, 232, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 59, 47, .08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.18rem;
  color: var(--pine-deep);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--pine);
  color: var(--sand);
  box-shadow: 0 10px 22px rgba(36, 59, 47, .22);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(19, 35, 27, .78);
  font-weight: 700;
  font-size: .95rem;
}

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

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--clay);
  transition: right .2s ease;
}

.nav-menu a:hover::after {
  right: 0;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 14px 30px rgba(36, 59, 47, .17);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--pine-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 55vw;
  height: 55vw;
  min-width: 480px;
  min-height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,183,94,.4), rgba(244,183,94,0) 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1, h2, h3 {
  color: var(--pine-deep);
  line-height: 1.02;
  margin: 0;
}

h1, h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.6rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.hero-text {
  margin: 24px 0 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 18px 40px rgba(36, 59, 47, .22);
}

.btn-primary:hover {
  background: var(--pine-deep);
}

.btn-ghost {
  color: var(--pine-deep);
  background: rgba(255,255,255,.72);
  border-color: rgba(36, 59, 47, .14);
}

.btn-ghost.dark {
  background: rgba(36, 59, 47, .08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(36, 59, 47, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: rgba(19,35,27,.76);
  font-size: .88rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(123, 168, 185, .42), transparent 46%),
    linear-gradient(140deg, #8dae71 0%, #d9bd7b 52%, #bd7445 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.45);
  isolation: isolate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -16% -12%;
  height: 44%;
  background: linear-gradient(180deg, #415a39, #1b2c22);
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.sun {
  position: absolute;
  top: 52px;
  right: 58px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffd98d;
  box-shadow: 0 0 60px rgba(255,217,141,.72);
}

.mountain {
  position: absolute;
  bottom: 190px;
  width: 320px;
  height: 320px;
  background: rgba(36,59,47,.62);
  transform: rotate(45deg);
  border-radius: 28px;
}

.mountain-back {
  left: -70px;
  bottom: 185px;
  opacity: .5;
}

.mountain-front {
  right: -100px;
  bottom: 150px;
  background: rgba(19,35,27,.64);
}

.tent {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  width: 260px;
  height: 155px;
  background: linear-gradient(135deg, var(--amber), #d36b3d 70%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  z-index: 4;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.24));
}

.tent::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 8px;
  background: rgba(19,35,27,.4);
}

.tent-flap {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 74px;
  height: 94px;
  transform: translateX(-50%);
  background: rgba(19,35,27,.58);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.trees {
  position: absolute;
  inset: auto 24px 118px 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.trees span {
  width: 56px;
  height: 150px;
  background: var(--pine-deep);
  clip-path: polygon(50% 0, 88% 35%, 70% 35%, 100% 70%, 73% 70%, 95% 100%, 5% 100%, 27% 70%, 0 70%, 30% 35%, 12% 35%);
  opacity: .9;
}

.trees span:nth-child(2) { height: 112px; opacity: .72; }
.trees span:nth-child(3) { height: 132px; opacity: .82; }
.trees span:nth-child(4) { height: 94px; opacity: .7; }

.campfire {
  position: absolute;
  right: 92px;
  bottom: 70px;
  z-index: 5;
  width: 70px;
  height: 60px;
}

.campfire span:nth-child(1),
.campfire span:nth-child(2) {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 10px;
  border-radius: 99px;
  background: #573622;
}

.campfire span:nth-child(1) { transform: rotate(18deg); }
.campfire span:nth-child(2) { transform: rotate(-18deg); }
.campfire span:nth-child(3) {
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 34px;
  height: 48px;
  background: linear-gradient(#ffd98d, #ff7a3c);
  clip-path: polygon(50% 0, 85% 42%, 65% 100%, 20% 100%, 0 44%);
  border-radius: 50% 50% 45% 45%;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 7;
  width: 160px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 24px;
  background: rgba(251, 245, 232, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 34px rgba(0,0,0,.16);
}

.hero-badge strong {
  display: block;
  color: var(--pine-deep);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.hero-badge small {
  display: block;
  margin-top: 5px;
  color: rgba(19,35,27,.72);
  font-weight: 800;
  line-height: 1.25;
}

.feature-strip {
  padding: 16px 0 48px;
}

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

.strip-item {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.62);
  transition: transform .2s ease, box-shadow .2s ease;
}

.strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(19,35,27,.1);
}

.strip-item span,
.tag {
  color: var(--clay);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.strip-item strong {
  color: var(--pine-deep);
  font-size: 1.08rem;
}

.strip-item small {
  color: var(--muted);
  font-weight: 600;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.split-head > p,
.section-text {
  color: var(--muted);
  margin: 0;
  font-size: 1.04rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: minmax(270px, auto);
  gap: 18px;
}

.guide-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(19,35,27,.08);
  overflow: hidden;
}

.guide-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -76px;
  bottom: -82px;
  border-radius: 50%;
  background: rgba(111,143,86,.13);
}

.large-card {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.98)),
    radial-gradient(circle at 20% 10%, rgba(244,183,94,.42), transparent 34%),
    linear-gradient(135deg, #dce9d2, #ffffff);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 19px;
  background: var(--sage);
  font-size: 1.55rem;
}

.guide-card h3,
.post-card h3 {
  margin-top: 8px;
}

.guide-card p:not(.tag) {
  color: var(--muted);
  margin: 14px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--pine);
  font-weight: 950;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.muted {
  background: linear-gradient(180deg, rgba(220, 233, 210, .55), rgba(220, 233, 210, .2));
}

.checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
  gap: 36px;
  align-items: center;
}

.checklist-grid .section-text {
  margin: 18px 0 28px;
  max-width: 660px;
}

.checklist-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--pine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.checklist-card h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.checklist-card li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,.84);
  font-weight: 700;
}

.checklist-card li span {
  flex: 0 0 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--amber);
  position: relative;
}

.checklist-card li span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--pine-deep);
  border-bottom: 2px solid var(--pine-deep);
  transform: rotate(42deg);
}

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

.post-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(19,35,27,.08);
}

.post-art {
  min-height: 190px;
  background:
    radial-gradient(circle at 76% 26%, rgba(255,217,141,.9) 0 32px, transparent 33px),
    linear-gradient(145deg, #7b9b74, #d2b26c);
  position: relative;
  overflow: hidden;
}

.post-art::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 55%;
  border-radius: 50% 50% 0 0;
  background: rgba(19,35,27,.82);
}

.post-art::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 98px;
  height: 70px;
  background: var(--amber);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.25));
}

.water-art {
  background:
    radial-gradient(circle at 76% 26%, rgba(255,217,141,.85) 0 32px, transparent 33px),
    linear-gradient(145deg, #62869a, #d6bf83);
}

.water-art::after {
  width: 58px;
  height: 118px;
  border-radius: 22px;
  clip-path: none;
  background: linear-gradient(#e9f5fb, #6094a3);
}

.meal-art {
  background:
    radial-gradient(circle at 76% 26%, rgba(255,217,141,.85) 0 32px, transparent 33px),
    linear-gradient(145deg, #a46a45, #e3bb67);
}

.meal-art::after {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  clip-path: none;
  background: radial-gradient(circle, #ffcf7a 0 18px, #cc5d37 19px 34px, #3a2319 35px);
}

.post-body {
  padding: 24px;
}

.post-body p:not(.tag) {
  color: var(--muted);
  margin: 12px 0 0;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .7fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--pine-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card h2 {
  color: var(--white);
}

blockquote {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.2rem;
  font-weight: 700;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--sand);
  font-style: normal;
}

.join-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .58fr);
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 20%, rgba(244,183,94,.34), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7ecd7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.join-card p:not(.eyebrow) {
  color: var(--muted);
  margin: 16px 0 0;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(36, 59, 47, .16);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.signup-form input:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(111,143,86,.18);
}

.signup-form .btn {
  width: 100%;
  border: none;
}

.form-note {
  min-height: 22px;
  color: var(--pine);
  font-size: .9rem;
  font-weight: 800;
  margin: 0 !important;
}

.site-footer {
  padding: 58px 0 26px;
  background: var(--pine-deep);
  color: rgba(255,255,255,.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(260px, .6fr);
  gap: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 480px;
  margin: 14px 0 0;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: .9rem;
}

@media (max-width: 920px) {
  .section-pad { padding: 72px 0; }

  .hero-grid,
  .split-head,
  .checklist-grid,
  .testimonial-card,
  .join-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 440px;
  }

  .strip-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

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

  .large-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(251,245,232,.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-card {
    min-height: 380px;
  }

  .hero-badge {
    width: 146px;
  }

  .join-card,
  .testimonial-card,
  .guide-card,
  .checklist-card {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
