:root {
      --earth: #0f1f17;
      --forest: #173b2a;
      --leaf: #5f8f3d;
      --lime: #c8d96f;
      --sun: #f2b950;
      --soil: #7c4f2f;
      --mist: #f5f1e6;
      --cream: #fffaf0;
      --text: #1d261f;
      --muted: #657060;
      --line: rgba(15, 31, 23, 0.14);
      --shadow: 0 24px 70px rgba(15, 31, 23, 0.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .site-shell { background: linear-gradient(180deg, #0b1711 0%, #13291d 38%, #fffaf0 38%, #fffaf0 100%); }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      display: flex;
      justify-content: center;
      padding: 20px 22px;
      pointer-events: none;
    }

    .nav-inner {
      width: min(1180px, 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 13px 16px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(9, 17, 12, 0.58);
      backdrop-filter: blur(18px);
      border-radius: 0;
      pointer-events: auto;
      box-shadow: 0 18px 50px rgba(0,0,0,0.18);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 13px;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 0;
      background: var(--lime);
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 13px;
      height: 22px;
      border-radius: 80% 0 80% 0;
      background: var(--earth);
      transform: rotate(35deg);
      left: 10px;
      top: 6px;
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      color: rgba(255,255,255,0.78);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links a { transition: color .2s ease; }
    .nav-links a:hover { color: #fff; }

    .nav-cta {
      color: #10190f;
      background: var(--lime);
      padding: 10px 16px;
      border-radius: 0;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      color: #fff;
      display: grid;
      align-items: end;
      padding: 150px 24px 80px;
      overflow: hidden;
      background-image:
        linear-gradient(
          90deg,
          rgba(6,13,8,.82) 0%,
          rgba(6,13,8,.34) 45%,
          rgba(6,13,8,.78) 100%
        ),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85');
      background-size: cover;
      background-position: center;
    }

    .hero::after {
      display: none;
    }

    .hill-lines {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0.45;
      background:
        radial-gradient(ellipse at 75% 88%, transparent 0 28%, rgba(255,255,255,0.11) 28.2% 28.6%, transparent 28.8%),
        radial-gradient(ellipse at 65% 92%, transparent 0 35%, rgba(255,255,255,0.10) 35.2% 35.6%, transparent 35.8%),
        radial-gradient(ellipse at 52% 95%, transparent 0 43%, rgba(255,255,255,0.09) 43.2% 43.6%, transparent 43.8%);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 50px;
      align-items: end;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 900;
      color: var(--lime);
      margin-bottom: 18px;
    }

    .kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--lime);
    }

    h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(58px, 10vw, 142px);
      line-height: 0.88;
      letter-spacing: -0.075em;
      max-width: 780px;
    }

    .hero-copy {
      margin: 28px 0 0;
      max-width: 610px;
      font-size: clamp(17px, 2vw, 22px);
      line-height: 1.42;
      color: rgba(255,255,255,0.84);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 0;
      padding: 15px 20px;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--lime); color: #10190f; box-shadow: 0 14px 38px rgba(200,217,111,0.22); }
    .btn-ghost { border: 1px solid rgba(255,255,255,0.22); color: #fff; background: rgba(255,255,255,0.06); }

    .hero-card {
      background: rgba(255,250,240,.14);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 0;
      padding: 24px;
      backdrop-filter: blur(18px);
      box-shadow: 0 34px 80px rgba(0,0,0,0.22);
      margin-bottom: 48px;
    }

    .hero-card-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .stat {
      padding: 16px;
      border-radius: 0;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.11);
    }

    .stat strong {
      display: block;
      font-size: 26px;
      color: var(--lime);
      letter-spacing: -0.04em;
    }

    .stat span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,0.72);
      font-size: 12px;
      line-height: 1.28;
    }

    section { position: relative; }
    .section { padding: 110px 24px; }
    .wrap { width: min(1180px, 100%); margin: 0 auto; }

    .section-head {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 54px;
    }

    .eyebrow {
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--leaf);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--leaf); }

    h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 5.6vw, 82px);
      line-height: 0.94;
      letter-spacing: -0.055em;
      color: var(--earth);
    }

    .lead {
      margin: 0;
      font-size: 18px;
      line-height: 1.5;
      color: var(--muted);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
    }

    .editorial-card {
      min-height: 560px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
      background-image:
        linear-gradient(180deg, transparent 0 34%, rgba(0,0,0,0.70) 100%),
        url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=1500&q=85');
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .editorial-copy {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 34px;
      color: #fff;
    }

    .editorial-copy h3 {
      margin: 0 0 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 4vw, 56px);
      line-height: .95;
      letter-spacing: -0.05em;
    }

    .editorial-copy p { margin: 0; color: rgba(255,255,255,.80); line-height: 1.45; font-size: 16px; max-width: 640px; }

    .side-stack { display: grid; gap: 24px; }

    .info-tile {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0;
      padding: 28px;
      min-height: 268px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 18px 48px rgba(15,31,23,.08);
    }

    .tile-number {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 58px;
      line-height: 1;
      letter-spacing: -0.06em;
      color: var(--leaf);
    }

    .info-tile h3 { margin: 24px 0 8px; font-size: 20px; }
    .info-tile p { margin: 0; color: var(--muted); line-height: 1.42; }

    .dark-section {
      background: var(--earth);
      color: #fff;
      overflow: hidden;
    }

    .dark-section h2 { color: #fff; }
    .dark-section .lead { color: rgba(255,255,255,.68); }

    .species-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .species-card {
      min-height: 360px;
      border-radius: 0;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.12);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform .25s ease, border-color .25s ease;
      background-size: cover;
      background-position: center;
    }

    .species-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.78));
      z-index: 0;
    }

    .species-card:hover { transform: translateY(-7px); border-color: rgba(200,217,111,.42); }
    .species-card > * { position: relative; z-index: 1; }
    .species-card.fruit { background-image: url('https://images.unsplash.com/photo-1471193945509-9ad0617afabf?auto=format&fit=crop&w=900&q=85'); }
    .species-card.native { background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=900&q=85'); }
    .species-card.bamboo { background-image: url('https://images.unsplash.com/photo-1520962880247-cfaf541c8724?auto=format&fit=crop&w=900&q=85'); }
    .species-card.bio { background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=900&q=85'); }

    .species-icon {
      position: absolute;
      top: 22px;
      left: 22px;
      width: 58px;
      height: 58px;
      border-radius: 0;
      display: grid;
      place-items: center;
      background: rgba(0,0,0,.28);
      border: 1px solid rgba(255,255,255,.20);
      color: var(--lime);
    }

    .species-icon svg { width: 31px; height: 31px; stroke-width: 1.5; }
    .species-card h3 { margin: 0 0 10px; font-size: 22px; }
    .species-card p { margin: 0; color: rgba(255,255,255,.74); line-height: 1.42; font-size: 14px; }

    .journey { background: #f3ecd9; }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line);
      border-radius: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.42);
    }

    .timeline-step {
      padding: 30px;
      min-height: 260px;
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .timeline-step:last-child { border-right: 0; }
    .timeline-step small { color: var(--leaf); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .timeline-step h3 { margin: 20px 0 10px; font-size: 23px; line-height: 1.1; }
    .timeline-step p { margin: 0; color: var(--muted); line-height: 1.42; font-size: 14px; }

    .miyawaki-block {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }

    .miyawaki-visual {
      min-height: 520px;
      border-radius: 0;
      background-image:
        linear-gradient(180deg, rgba(15,31,23,0.02), rgba(15,31,23,0.58)),
        url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1400&q=85');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .miyawaki-copy {
      border-radius: 0;
      background: #fff;
      border: 1px solid var(--line);
      padding: 44px;
      box-shadow: 0 18px 48px rgba(15,31,23,.08);
    }

    .miyawaki-copy h2 { margin-bottom: 22px; }
    .check-list { display: grid; gap: 14px; margin-top: 26px; }
    .check-item { display: flex; gap: 12px; color: var(--muted); line-height: 1.42; }
    .check-item::before { content: "✦"; color: var(--leaf); font-weight: 900; flex: 0 0 auto; }

    .gallery-strip {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 14px;
    }

    .gallery-card {
      min-height: 360px;
      border-radius: 0;
      padding: 24px;
      color: #fff;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      background-size: cover;
      background-position: center;
    }

    .gallery-card:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1200&q=85'); }
    .gallery-card:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1523712999610-f77fbcfc3843?auto=format&fit=crop&w=1000&q=85'); }
    .gallery-card:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1100&q=85'); }

    .gallery-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
    }

    .gallery-card h3 { position: relative; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 32px; line-height: .98; letter-spacing: -0.04em; }

    .visit {
      background: var(--earth);
      color: #fff;
      border-radius: 0;
      margin-top: 40px;
    }

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

    .visit h2 { color: #fff; }
    .visit p { color: rgba(255,255,255,.68); }

    .contact-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 0;
      padding: 30px;
    }

    .contact-row {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255,255,255,.78);
    }

    .contact-row:last-child { border-bottom: 0; }
    .contact-row strong { color: #fff; }

    footer {
      padding: 26px 24px;
      background: #09120d;
      color: rgba(255,255,255,.58);
      text-align: center;
      font-size: 13px;
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-content, .section-head, .story-grid, .miyawaki-block, .visit-grid { grid-template-columns: 1fr; }
      .hero-card { margin-bottom: 0; }
      .species-grid { grid-template-columns: repeat(2, 1fr); }
      .timeline { grid-template-columns: 1fr 1fr; }
      .timeline-step:nth-child(2) { border-right: 0; }
      .timeline-step { border-bottom: 1px solid var(--line); }
      .timeline-step:nth-child(3), .timeline-step:nth-child(4) { border-bottom: 0; }
      .gallery-strip { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .nav { padding: 12px; }
      .nav-inner { border-radius: 0; }
      .nav-cta { display: none; }
      .hero { padding: 130px 18px 64px; }
      h1 { font-size: clamp(54px, 18vw, 80px); }
      .hero-copy { font-size: 16px; }
      .stat-grid, .species-grid, .timeline { grid-template-columns: 1fr; }
      .timeline-step { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
      .timeline-step:last-child { border-bottom: 0 !important; }
      .section { padding: 74px 18px; }
      .editorial-card, .miyawaki-visual { min-height: 460px; }
      .miyawaki-copy { padding: 30px; }
      .contact-row { flex-direction: column; gap: 6px; }
    }
#story {
      background: #f3ecd9;
      padding-top: 100px;
    }
    
    .species-card {
      transform-style: preserve-3d;
      perspective: 1000px;
    }
    
    .species-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--cream);
      opacity: 0;
      transform: rotateY(180deg);
      transition: opacity .35s ease;
      z-index: 2;
    }
    
    .species-card:hover::before {
      opacity: 1;
    }
    
    .species-card:hover {
      transform: rotateY(180deg);
    }
    
    .species-card:hover > * {
      transform: rotateY(180deg);
      color: var(--earth);
      z-index: 3;
    }
    
    .species-card:hover p {
      color: var(--muted);
    }

    .timeline-step {
      transition: background .25s ease, transform .25s ease;
    }
    
    .timeline-step:hover {
      background: #fffaf0;
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(15,31,23,.08);
    }

/* Inner Pages */
.page-hero {
  min-height: 62vh;
  padding: 150px 24px 80px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(rgba(4,20,13,.56), rgba(4,20,13,.82)),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(64px, 12vw, 150px);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--earth);
  padding: 12px 16px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--earth);
  color: #fff;
  transform: translateY(-2px);
}

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

.catalogue-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(15,31,23,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.catalogue-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(15,31,23,.14);
}

.catalogue-image {
  min-height: 270px;
  background-size: cover;
  background-position: center;
}

.catalogue-content {
  padding: 24px;
}

.catalogue-content span {
  display: block;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalogue-content h3 {
  margin: 0 0 10px;
  font-size: 25px;
  color: var(--earth);
}

.catalogue-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.42;
}

.catalogue-content a {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--earth);
}

@media (max-width: 980px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .page-hero {
    min-height: 52vh;
    padding: 130px 18px 64px;
  }

/* Trees page final fix */
.trees-page .site-shell {
  background: var(--cream);
}

.trees-page main {
  background: var(--cream);
}

.trees-page .section {
  background: var(--cream);
  padding-top: 90px;
  padding-bottom: 80px;
}

.trees-page .section-head h2 {
  color: var(--earth);
  opacity: 1;
}

.trees-page footer {
  margin-top: 0;
}

/* CONTACT PAGE DESIGN TWEAK */

/* 1. Remove the Flora Hills text from the right image */
.contact-visual h2,
.contact-image h2,
.contact-photo h2,
.contact-visual-title,
.contact-image-title {
  display: none !important;
}

/* 2. Reduce email font size and make it regular */
.contact-email,
.email-card .email,
.email-card a,
.contact-row.email span,
.contact-card .email,
.contact-info-email {
  font-size: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}
