*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:          #f4f1eb;
      --bg-raised:   #edeae2;
      --bg-card:     #f9f7f2;
      --bg-deep:     #1e2018;
      --border:      rgba(100,120,70,0.18);
      --border-gold: rgba(160,120,30,0.35);
      --gold:        #8a6a18;
      --gold-soft:   #b08a28;
      --green:       #4a7030;
      --green-soft:  #5a8a3a;
      --green-muted: #3a5a28;
      --sage:        #6a8858;
      --text:        #252a1e;
      --text-dim:    #4a5838;
      --text-faint:  #7a8a68;
      --white:       #1e2218;
      --rust:        #7a4820;
      --steel:       #3a6070;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      font-size: 17px;
      overflow-x: hidden;
    }

    /* ─────────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.1rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(244, 241, 235, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .nav-logo-text {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .nav-logo-text span {
      display: block;
      font-size: 0.62rem;
      font-family: 'DM Mono', monospace;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover { color: var(--gold-soft); }

    @media (max-width: 700px) {
      nav {
        position: fixed;
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
       }

      .nav-logo-text {
        font-size: 0.9rem;
      }
      
      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
        width: 100%;
      }
      
      .nav-links a {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
      }
      
      .hero {
        padding-top: 10rem;
      }
    }

    /* ─────────────────────────────────────────────
       HERO
    ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 2rem 360px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(100,140,60,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 70% 60%, rgba(180,140,30,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(60,90,40,0.10) 0%, transparent 60%),
        linear-gradient(180deg, #e8e4da 0%, #f0ece2 40%, #e4e0d4 100%);
    }

    .hero-meadow {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 360px;
      pointer-events: none;
    }

    .particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* Round pollen dots */
    .particle {
      position: absolute;
      border-radius: 50%;
      background: #9a7a18;
      opacity: 0;
      animation: drift linear infinite;
      box-shadow: 0 0 5px rgba(154,120,24,0.55);
    }

    /* Elongated seeds — slightly more opaque, drift with gentle rotation */
    .particle.seed {
      background: #7a6818;
      box-shadow: 0 0 4px rgba(120,100,20,0.45);
      animation: driftSeed linear infinite;
    }

    /* Tiny dust motes — very subtle */
    .particle.mote {
      background: #b09048;
      box-shadow: none;
      animation: driftMote linear infinite;
    }

    @keyframes drift {
      0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.6); }
      12%  { opacity: 0.72; }
      80%  { opacity: 0.42; }
      100% { opacity: 0; transform: translateY(-170px) translateX(38px) scale(1.2); }
    }

    @keyframes driftSeed {
      0%   { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg) scale(0.7); }
      10%  { opacity: 0.65; }
      75%  { opacity: 0.38; }
      100% { opacity: 0; transform: translateY(-140px) translateX(55px) rotate(40deg) scale(1.1); }
    }

    @keyframes driftMote {
      0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.8); }
      20%  { opacity: 0.35; }
      70%  { opacity: 0.18; }
      100% { opacity: 0; transform: translateY(-100px) translateX(20px) scale(1.0); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 740px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s ease forwards;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 700;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      line-height: 1.05;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.35s ease forwards;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-soft);
    }

    .hero-subtitle {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: var(--text-dim);
      margin: 1.2rem auto 0;
      max-width: 520px;
      line-height: 1.6;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s ease forwards;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin: 2.2rem 0;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s ease forwards;
    }

    .hero-divider::before,
    .hero-divider::after {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--border-gold);
    }

    .hero-divider svg { opacity: 0.6; }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      border: 1px solid rgba(200,160,40,0.5);
      color: var(--gold-soft);
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 0.85em 2em;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
      opacity: 0;
      animation: fadeUp 0.8s 0.75s ease forwards;
    }

    .cta-btn:hover {
      background: rgba(200,160,40,0.12);
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .cta-arrow {
      transition: transform 0.2s ease;
    }

    .cta-btn:hover .cta-arrow { transform: translateX(4px); }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeUp 1s 1.2s ease forwards;
    }

    .hero-scroll span {
      font-family: 'DM Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-faint);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--text-faint), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 0.8; transform: scaleY(1.1); }
    }

    /* ─────────────────────────────────────────────
       SHARED SECTION STYLES
    ───────────────────────────────────────────── */
    section {
      padding: 6rem 2rem;
    }

    .section-inner {
      max-width: 1060px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-eyebrow {
      display: inline-block;
      font-family: 'DM Mono', monospace;
      font-size: 0.63rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-soft);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.015em;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold-soft);
    }

    .section-body {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      max-width: 600px;
      margin: 1.2rem auto 0;
      text-align: center;
      line-height: 1.8;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─────────────────────────────────────────────
       MISSION SECTION
    ───────────────────────────────────────────── */
    .mission {
      background: var(--bg-raised);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem 4rem;
      margin-top: 3rem;
      align-items: start;
    }

    @media (max-width: 700px) {
      .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
    }

    .mission-text p {
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 1.1rem;
    }

    .mission-text p:last-child { margin-bottom: 0; }

    .mission-text strong { color: var(--gold-soft); font-weight: 500; }

    .mission-stats {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .stat-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1rem 1.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-left: 3px solid var(--green);
      border-radius: 0 4px 4px 0;
    }

    .stat-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      width: 36px;
      text-align: center;
    }

    .stat-content {}

    .stat-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 0.1rem;
    }

    .stat-text {
      font-family: 'Outfit', sans-serif;
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--text);
    }

    /* ─────────────────────────────────────────────
       PLANT DIRECTORY
    ───────────────────────────────────────────── */
    .directory { background: var(--bg); }

    .plant-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 860px) {
      .plant-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    }

    @media (min-width: 861px) and (max-width: 1060px) {
      .plant-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .plant-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
      color: inherit;
    }

    .plant-card:hover {
      border-color: rgba(140,180,80,0.35);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    }

    .plant-card-illustration {
      height: 180px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Per-plant color themes */
    .card-switchgrass .plant-card-illustration {
      background: linear-gradient(160deg, #e8e4da 0%, #dedad0 100%);
    }

    .card-alexanders .plant-card-illustration {
      background: linear-gradient(160deg, #ebe7de 0%, #e4e0d4 100%);
    }

    .card-rattlesnake .plant-card-illustration {
      background: linear-gradient(160deg, #e2e6ec 0%, #d8dde6 100%);
    }

    .card-illustration-svg {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      opacity: 0.75;
      transition: opacity 0.3s ease, transform 0.4s ease;
    }

    .plant-card:hover .card-illustration-svg {
      opacity: 0.95;
      transform: scale(1.04);
    }

    .plant-card-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .plant-card-tag {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .card-switchgrass .plant-card-tag { color: var(--gold); }
    .card-alexanders .plant-card-tag { color: #c8a028; }
    .card-rattlesnake .plant-card-tag { color: var(--steel); }

    .plant-card-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }

    .plant-card-latin {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }

    .plant-card-desc {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1.4rem;
    }

    .plant-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.63rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-soft);
      text-decoration: none;
      transition: gap 0.2s ease, color 0.2s ease;
      align-self: flex-start;
    }

    .plant-card:hover .plant-card-link {
      gap: 0.8rem;
      color: var(--gold-soft);
    }

    .plant-card-link::after {
      content: '→';
      transition: transform 0.2s ease;
    }

    .plant-card:hover .plant-card-link::after { transform: translateX(3px); }

    /* ─────────────────────────────────────────────
       WHY NATIVE PLANTS
    ───────────────────────────────────────────── */
    .why-native {
      background: var(--bg-raised);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 700px) {
      .why-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 420px) {
      .why-grid { grid-template-columns: 1fr; }
    }

    .why-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.6rem 1.4rem;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .why-card:hover {
      border-color: rgba(140,180,80,0.3);
      transform: translateY(-3px);
    }

    .why-icon {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
      display: block;
    }

    .why-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .why-desc {
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.6;
    }

    /* Directory CTA below featured cards */
    .dir-cta {
      text-align: center;
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .dir-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      background: var(--bg-card);
      border: 1px solid rgba(140,180,80,0.35);
      color: var(--green-soft);
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.9em 2.2em;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    }

    .dir-cta-btn:hover {
      background: rgba(106,148,72,0.12);
      border-color: var(--green-soft);
      color: var(--white);
      transform: translateY(-2px);
    }

    .dir-cta-note {
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text-faint);
      max-width: 480px;
      line-height: 1.6;
    }

    /* Directory preview section */
    .dir-preview {
      background: var(--bg-raised);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .dir-preview-inner {
      max-width: 780px;
      margin: 0 auto;
    }

    .dir-preview-frame {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin-top: 2.5rem;
    }

    @media (max-width: 600px) {
      .dir-preview-frame { grid-template-columns: 1fr; }
    }

    .dir-preview-cell {
      background: var(--bg-card);
      padding: 1.5rem;
    }

    .dir-preview-cell-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .dir-preview-cell-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .dir-preview-cell-desc {
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.6;
    }

    .dir-preview-cta {
      text-align: center;
      margin-top: 2.5rem;
    }
    .future { background: var(--bg); }

    .future-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .coming-soon-frame {
      border: 1px solid var(--border-gold);
      border-radius: 6px;
      padding: 3.5rem 2.5rem;
      position: relative;
      overflow: hidden;
      margin-top: 1rem;
    }

    .coming-soon-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,160,40,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .coming-plants {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.6rem;
      margin: 2rem 0;
    }

    .coming-plant {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--text-faint);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 0.3em 0.9em;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .coming-plant:hover {
      color: var(--text-dim);
      border-color: rgba(140,180,80,0.3);
    }

    .coming-note {
      font-family: 'Outfit', sans-serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.7;
    }


    /* ─────────────────────────────────────────────
       BROWSE BY PLANT TYPE
    ───────────────────────────────────────────── */
    .browse-types { background: var(--bg); }

    .type-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 860px) {
      .type-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 500px) {
      .type-grid { grid-template-columns: 1fr 1fr; }
    }

    .type-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.5rem 1.2rem 1.3rem;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.7rem;
      transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
      position: relative;
      overflow: hidden;
    }

    .type-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--type-color, var(--green));
      opacity: 0;
      transition: opacity 0.22s ease;
    }

    .type-card:hover {
      border-color: rgba(74,112,48,0.35);
      transform: translateY(-3px);
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    }

    .type-card:hover::after { opacity: 1; }

    .type-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--type-bg, var(--bg-raised));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.22s ease;
    }

    .type-card:hover .type-icon {
      background: var(--type-bg-hover, var(--bg-raised));
    }

    .type-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
    }

    /* per-type accent colours via inline custom properties */
    .type-card-wildflower {
      --type-color:      #6a5898;
      --type-bg:         #eeebf5;
      --type-bg-hover:   #e6e1f0;
    }
    .type-card-grasses {
      --type-color:      #6a7818;
      --type-bg:         #eef0e2;
      --type-bg-hover:   #e6e9d6;
    }
    .type-card-shrubs {
      --type-color:      #3a7848;
      --type-bg:         #e4f0e8;
      --type-bg-hover:   #d8ebe0;
    }
    .type-card-trees {
      --type-color:      #5a4830;
      --type-bg:         #eee8e0;
      --type-bg-hover:   #e6dfd4;
    }
    .type-card-vines {
      --type-color:      #387068;
      --type-bg:         #e2eeec;
      --type-bg-hover:   #d6e8e4;
    }

    /* Footer col title already present — just need the new section in footer links */

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    footer {
      background: var(--bg-deep);
      border-top: 1px solid var(--border);
      padding: 4rem 2rem 3rem;
    }

    .footer-inner {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (max-width: 700px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
    }

    .footer-brand {}

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1rem;
      text-decoration: none;
    }

    @media (max-width: 700px) {
      .footer-logo { justify-content: center; }
    }

    .footer-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #e8edd8;
      line-height: 1.2;
    }

    .footer-tagline {
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem;
      font-weight: 300;
      color: #7a8a68;
      line-height: 1.7;
      font-style: italic;
    }

    .footer-col-title {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #6a7a58;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    @media (max-width: 700px) {
      .footer-links { align-items: center; }
    }

    .footer-links a {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: #a8b890;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover { color: #c8a840; }

    .footer-links .latin {
      font-style: italic;
      font-size: 0.78rem;
      color: #6a7a58;
      display: block;
    }

    .footer-bottom {
      max-width: 1060px;
      margin: 3rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(120,150,80,0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    @media (max-width: 700px) {
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    .footer-bottom p {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: #5a6a48;
    }

    /* ─────────────────────────────────────────────
       ANIMATIONS
    ───────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
