:root {
      --forest: #183B2A;
      --forest-dark: #10291D;
      --cream: #F3EFE5;
      --cream-light: #FAF8F2;
      --earth: #795548;
      --gold: #D5A83A;
      --ink: #20251F;
      --muted: #687068;
      --white: #FFFFFF;
      --border: rgba(24, 59, 42, .14);
      --shadow: 0 18px 50px rgba(16, 41, 29, .12);
      --radius: 18px;
      --serif: "Fraunces", Georgia, serif;
      --sans: "DM Sans", Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream-light);
      font-family: var(--sans);
      line-height: 1.6;
    }

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

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

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

    /* ---------- Header ---------- */

    header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 10;
      color: var(--white);
    }

    .nav {
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a {
      opacity: .9;
      transition: opacity .2s ease;
    }

    .nav-links a:hover { opacity: 1; }

    .nav-cta {
      padding: 11px 17px;
      border: 1px solid rgba(255,255,255,.45);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }

    /* Used on pages with no hero image behind the nav (blog index, posts) */
    header.header-solid {
      position: static;
      background: var(--forest-dark);
    }

    header.header-solid .nav { height: 72px; }

    /* ---------- Hero ---------- */

    .hero {
      position: relative;
      padding: 150px 0 100px;
      overflow: hidden;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(16,41,29,.94) 0%, rgba(16,41,29,.78) 46%, rgba(16,41,29,.30) 100%),
        url("https://images.unsplash.com/photo-1504545102780-26774c1bb073?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
    }

    /* If you later add your own photo, replace the URL above. */

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 110px;
      background: linear-gradient(transparent, rgba(16,41,29,.22));
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(700px, 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
    }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; margin-bottom: 24px; border-radius: 999px; background: rgba(213, 168, 58, .16); border: 1px solid rgba(213, 168, 58, .5); color: #F3EFE5; font-size: 15px; font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease; }
    .hero-badge:hover { transform: translateY(-1px); background: rgba(213, 168, 58, .26); }
    .hero-badge .dot { font-size: 18px; }

    h1, h2, h3 {
      margin: 0;
      line-height: 1.08;
    }

    h1 {
      max-width: 720px;
      font-family: var(--serif);
      font-size: clamp(54px, 7vw, 88px);
      letter-spacing: -.035em;
    }

    .hero p {
      max-width: 570px;
      margin: 26px 0 32px;
      color: rgba(255,255,255,.86);
      font-size: 19px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border: 0;
      border-radius: 999px;
      background: var(--gold);
      color: var(--forest-dark);
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,.16);
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }

    .button.secondary {
      background: transparent;
      color: var(--forest);
      border: 1px solid var(--border);
      box-shadow: none;
    }

    /* ---------- Intro ---------- */

    .intro {
      padding: 105px 0 95px;
      background: var(--cream-light);
      text-align: center;
    }

    .section-label {
      margin-bottom: 14px;
      color: var(--earth);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .intro h2 {
      max-width: 760px;
      margin-inline: auto;
      font-family: var(--serif);
      color: var(--forest);
      font-size: clamp(38px, 5vw, 60px);
      letter-spacing: -.025em;
    }

    .intro p {
      max-width: 680px;
      margin: 22px auto 0;
      color: var(--muted);
      font-size: 17px;
    }

    /* ---------- Cards ---------- */

    .cards-section {
      padding: 0 0 110px;
      background: var(--cream-light);
    }

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

    .card {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--forest);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .card-photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .45s ease;
    }

    .card:hover .card-photo { transform: scale(1.04); }

    .card:nth-child(1) .card-photo {
      background-image: linear-gradient(rgba(16,41,29,.15), rgba(16,41,29,.84)),
        url("https://images.unsplash.com/photo-1552825897-bb4d9a0d7f1c?auto=format&fit=crop&w=1000&q=80");
    }

    .card:nth-child(2) .card-photo {
      background-image: linear-gradient(rgba(16,41,29,.12), rgba(16,41,29,.84)),
        url("https://images.unsplash.com/photo-1504545102780-26774c1bb073?auto=format&fit=crop&w=1000&q=80");
    }

    .card:nth-child(3) .card-photo {
      background-image: linear-gradient(rgba(16,41,29,.12), rgba(16,41,29,.84)),
        url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1000&q=80");
    }

    .card-content {
      position: absolute;
      inset: auto 0 0;
      padding: 30px;
    }

    .card-number {
      display: block;
      margin-bottom: 10px;
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .card h3 {
      font-family: var(--serif);
      font-size: 32px;
    }

    .card p {
      margin: 10px 0 0;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    /* ---------- Featured story ---------- */

    .story {
      padding: 110px 0;
      background: var(--forest);
      color: var(--white);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .story-image {
      min-height: 540px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(24,59,42,.10), rgba(24,59,42,.35)),
        url("https://images.unsplash.com/photo-1504545102780-26774c1bb073?auto=format&fit=crop&w=1200&q=85")
        center / cover no-repeat;
    }

    .story-copy .section-label { color: var(--gold); }

    .story h2 {
      font-family: var(--serif);
      font-size: clamp(38px, 5vw, 58px);
      letter-spacing: -.025em;
    }

    .story-copy p {
      max-width: 520px;
      margin: 22px 0 28px;
      color: rgba(255,255,255,.75);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--gold);
      font-weight: 700;
    }

    .text-link span {
      transition: transform .2s ease;
    }

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

    /* ---------- Waitlist ---------- */

    .waitlist {
      padding: 100px 0;
      background: var(--cream);
    }

    .waitlist-box {
      position: relative;
      overflow: hidden;
      padding: 65px;
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .waitlist-box::before {
      content: "🍄";
      position: absolute;
      right: 55px;
      top: 25px;
      font-size: 130px;
      opacity: .06;
      transform: rotate(15deg);
    }

    .waitlist-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }

    .waitlist h2 {
      font-family: var(--serif);
      color: var(--forest);
      font-size: clamp(38px, 5vw, 56px);
      letter-spacing: -.025em;
    }

    .waitlist p {
      color: var(--muted);
      margin: 18px 0 28px;
      max-width: 610px;
    }

    .signup-form {
      display: flex;
      gap: 10px;
      max-width: 600px;
    }

    .signup-form input {
      flex: 1;
      min-width: 0;
      height: 50px;
      padding: 0 17px;
      border: 1px solid #D7D8D0;
      border-radius: 999px;
      background: var(--cream-light);
      color: var(--ink);
      font: inherit;
      outline: none;
    }

    .signup-form input:focus {
      border-color: var(--forest);
      box-shadow: 0 0 0 3px rgba(24,59,42,.08);
    }

    .form-note {
      margin-top: 12px;
      font-size: 12px;
      color: #8A8F89;
    }

    .success-message {
      display: none;
      margin-top: 15px;
      color: var(--forest);
      font-weight: 700;
    }

    /* ---------- Footer ---------- */

    footer {
      padding: 55px 0 30px;
      background: var(--forest-dark);
      color: var(--white);
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 45px;
    }

    .footer-brand {
      max-width: 360px;
    }

    .footer-brand p {
      margin: 16px 0 0;
      color: rgba(255,255,255,.58);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 50px;
    }

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

    .footer-links strong {
      margin-bottom: 5px;
      color: var(--gold);
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .footer-links a {
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,.42);
      font-size: 12px;
    }

    /* ---------- Blog ---------- */

    .blog-header {
      padding: 70px 0 30px;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
    }

    .blog-header .section-label { margin-bottom: 10px; }

    .blog-header h1 {
      font-family: var(--serif);
      color: var(--forest);
      font-size: clamp(34px, 4.5vw, 48px);
      letter-spacing: -.02em;
      margin: 0 0 12px;
    }

    .blog-header p {
      color: var(--muted);
      max-width: 600px;
      margin: 0;
    }

    .blog-list {
      padding: 60px 0 90px;
    }

    .blog-list .container {
      display: grid;
      gap: 26px;
    }

    .post-preview {
      display: block;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .post-preview:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .post-preview .post-date {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .post-preview h2 {
      font-family: var(--serif);
      color: var(--forest);
      font-size: 26px;
      margin: 0 0 10px;
    }

    .post-preview p {
      color: var(--muted);
      margin: 0;
    }

    .post-hero {
      padding: 70px 0 40px;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
    }

    .post-hero .post-date {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .post-hero h1 {
      font-family: var(--serif);
      color: var(--forest);
      font-size: clamp(32px, 5vw, 50px);
      letter-spacing: -.02em;
      max-width: 800px;
      margin: 0;
    }

    .post-body {
      padding: 50px 0 90px;
    }

    .post-body .container {
      max-width: 720px;
    }

    .post-body h2 {
      font-family: var(--serif);
      color: var(--forest);
      font-size: 28px;
      margin: 44px 0 16px;
    }

    .post-body p {
      margin: 0 0 20px;
      color: var(--ink);
    }

    .post-body ul,
    .post-body ol {
      margin: 0 0 20px;
      padding-left: 22px;
      color: var(--ink);
    }

    .post-body li { margin-bottom: 8px; }

    .post-body a {
      color: var(--forest);
      text-decoration: underline;
      text-decoration-color: var(--gold);
      text-underline-offset: 3px;
    }

    .post-body hr {
      border: none;
      border-top: 1px solid var(--border);
      margin: 40px 0;
    }

    .post-body em { color: var(--muted); }

    .back-link {
      display: inline-block;
      margin-bottom: 30px;
      font-size: 14px;
      font-weight: 600;
      color: var(--forest);
    }

    /* ---------- Mushroom variety guide ---------- */

    .variety-section {
      padding: 70px 0 100px;
    }

    .variety-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 26px;
    }

    .variety-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .variety-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .variety-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
      background: var(--cream);
    }

    .variety-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .variety-photo.placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .variety-photo.placeholder svg {
      width: 40px;
      height: 40px;
      opacity: .35;
    }

    .variety-name {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--forest);
      line-height: 1.25;
      margin-bottom: 2px;
    }

    .variety-aka {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 14px;
      color: var(--muted);
    }

    .variety-alt {
      font-size: 12px;
      font-style: italic;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .variety-desc {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .variety-row {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .variety-row strong {
      color: var(--forest);
      font-weight: 700;
      margin-right: 6px;
    }

    .variety-tag {
      margin-top: 14px;
      display: inline-block;
      padding: 7px 14px;
      border-radius: 999px;
      background: var(--cream);
      font-size: 11.5px;
      font-weight: 700;
      color: var(--earth);
    }

    /* ---------- Mobile ---------- */

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

      .nav { height: 72px; }

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

      .hero {
        padding: 120px 0 70px;
        background-position: 62% center;
      }

      .hero p { font-size: 17px; }

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

      .card { min-height: 320px; }

      .story-image {
        min-height: 380px;
        order: 2;
      }

      .waitlist-box { padding: 38px 25px; }

      .signup-form {
        flex-direction: column;
      }

      .signup-form .button { width: 100%; }

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

      .footer-links {
        gap: 35px;
      }

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

    .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;
    }
