  :root {
    --cream:   #F1EADB;
    --cream-2: #E7DEC9;
    --forest:  #3E5A3A;
    --forest-d:#2A3E27;
    --forest-l:#5B7B55;
    --ink:     #1B2419;
    --ochre:   #D9A648;
    --ochre-d: #B98A33;
    --line:    rgba(27,36,25,0.18);
    --soft:    rgba(27,36,25,0.62);

    --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
    --sans:  "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  a { color: inherit; }

  /* ───────── Layout shell ───────── */
  .page {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 22px 64px;
    position: relative;
  }
  @media (min-width: 720px) {
    .page { max-width: 540px; padding: 0 28px 96px; }
  }

  /* ───────── Top bar ───────── */
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 14px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--soft);
  }
  .topbar .dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ochre);
    margin-right: 8px;
    transform: translateY(-1px);
  }
  .topbar .brand-mini {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
  }

  /* ───────── Hero ───────── */
  .hero {
    padding: 14px 0 8px;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(64px, 19vw, 104px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--forest-d);
  }
  .hero h1 .it {
    font-style: italic;
    color: var(--forest);
  }
  .hero .lede {
    margin: 22px 0 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    max-width: 34ch;
  }

  /* Hero scene (simple geometric) */
  .scene {
    margin: 28px -4px 0;
    position: relative;
    height: 130px;
    border-bottom: 1px solid var(--line);
  }
  .scene svg { display: block; width: 100%; height: 100%; }

  /* ───────── Section heading ───────── */
  .section {
    padding-top: 44px;
  }
  .section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--forest-d);
  }
  .section-head h2 em { font-style: italic; color: var(--forest); }
  .section-head .num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--soft);
    font-size: 18px;
  }

  /* ───────── Hike list ───────── */
  .hikes {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hike {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 18px 18px 16px;
    background: var(--cream-2);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }
  .hike .date {
    text-align: center;
    line-height: 1;
  }
  .hike .date .d {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--forest-d);
    display: block;
    letter-spacing: -0.02em;
  }
  .hike .date .m {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    margin-top: 4px;
    display: block;
    font-weight: 600;
  }
  .hike .body .title {
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    margin: 0 0 3px;
  }
  .hike .body .meta {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.4;
  }
  .hike .tag {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .hike.current {
    background: var(--forest);
    color: var(--cream);
  }
  .hike.current .date .d { color: var(--cream); }
  .hike.current .date .m { color: var(--ochre); }
  .hike.current .body .title { color: var(--cream); }
  .hike.current .body .meta { color: rgba(241,234,219,0.72); }
  .hike.current .tag {
    background: var(--ochre);
    color: var(--forest-d);
  }
  .hike .tag.upcoming {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--line);
  }

  /* ───────── Format steps ───────── */
  .format {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }
  .step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
  }
  .step .ico {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--cream-2);
    color: var(--forest-d);
  }
  .step .ico svg { width: 20px; height: 20px; }
  .step.middle .ico {
    background: var(--ochre);
    color: var(--forest-d);
  }
  .step .name {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1;
    color: var(--forest-d);
    letter-spacing: -0.01em;
  }
  .step .sub {
    font-size: 13px;
    color: var(--soft);
    margin-top: 4px;
  }

  /* ───────── Facts strip ───────── */
  .facts {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }
  .fact {
    background: var(--cream);
    padding: 16px 16px 18px;
  }
  .fact .k {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft);
    font-weight: 600;
  }
  .fact .v {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--forest-d);
    line-height: 1.1;
    margin-top: 6px;
    letter-spacing: -0.01em;
  }
  .fact .v em { font-style: italic; color: var(--forest); }

  /* ───────── CTA / footer ───────── */
  .cta {
    margin-top: 44px;
    padding: 32px 24px 30px;
    border-radius: 18px;
    background: var(--forest);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta::after {
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--ochre);
    opacity: 0.95;
    z-index: 0;
  }
  .cta > * { position: relative; z-index: 1; }
  .cta h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: 32px;
    line-height: 1.05;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  .cta p {
    margin: 0 0 18px;
    color: rgba(241,234,219,0.8);
    font-size: 14px;
  }
  .cta .link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    color: var(--forest-d);
    padding: 12px 18px 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .cta .link .arrow {
    width: 18px; height: 18px;
    display: grid; place-items: center;
  }

  /* ───────── Footer ───────── */
  footer.foot {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 12px;
    color: var(--soft);
    letter-spacing: 0.04em;
  }
  footer.foot .sign {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--forest);
    letter-spacing: 0;
  }

  /* Pull-quote (Sundays belong outside, in Spanish spirit) */
  .quote {
    margin-top: 40px;
    text-align: center;
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.1;
    color: var(--forest-d);
    letter-spacing: -0.01em;
    padding: 0 4px;
  }
  .quote em { font-style: italic; color: var(--forest); }

  /* Small upper-right ornament near hero title (sun) */
  .sun {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ochre);
    z-index: 0;
  }

  /* Make hero stack work with absolute sun */
  .hero-wrap { position: relative; }

  /* Responsive tweaks for slightly larger screens */
  @media (min-width: 720px) {
    .section-head h2 { font-size: 40px; }
    .hike { padding: 22px 22px 22px 18px; }
    .format { grid-template-columns: 1fr; }
    .facts { grid-template-columns: repeat(4, 1fr); }
    .quote { font-size: 34px; }
  }