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

    :root {
      --bg: #080808;
      --bg-warm: #0b0a09;
      --bg-card: #111110;
      --gold: #f0d060;
      --gold-light: #f5de7a;
      --gold-dim: #d4b254;
      --text: #f0ede6;
      --text-mid: #8a8680;
      --text-dim: #555250;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Inter', -apple-system, sans-serif;
    }

    ::selection { background: rgba(212,178,84,0.3); color: #fff; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ═══ FILM GRAIN ═══ */
    .grain {
      position: fixed; inset: 0;
      z-index: 500;
      pointer-events: none;
      opacity: 0;
      animation: grainFadeIn 2s 0.5s forwards;
    }
    .grain::before {
      content: '';
      position: absolute;
      inset: -100%;
      width: 300%; height: 300%;
      filter: url(#noiseFilter);
      opacity: 0.032;
      animation: grainDrift 8s steps(10) infinite;
    }
    @keyframes grainDrift {
      0% { transform: translate(0, 0); }
      10% { transform: translate(-5%, -5%); }
      20% { transform: translate(3%, -8%); }
      30% { transform: translate(-8%, 2%); }
      40% { transform: translate(5%, 5%); }
      50% { transform: translate(-3%, 8%); }
      60% { transform: translate(8%, -2%); }
      70% { transform: translate(-5%, 5%); }
      80% { transform: translate(3%, -5%); }
      90% { transform: translate(-8%, -2%); }
    }
    @keyframes grainFadeIn { to { opacity: 1; } }

    /* ═══ REVEAL SYSTEM ═══ */
    .rv {
      clip-path: inset(100% 0 0 0);
      transform: translateY(24px);
      transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .rv.vis {
      clip-path: inset(0 0 0 0);
      transform: translateY(0);
    }
    .rv-fade {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .rv-fade.vis { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.35s; }
    .d4 { transition-delay: 0.5s; }
    .d5 { transition-delay: 0.65s; }

    /* ═══ GOLD GRADIENT ═══ */
    .gld {
      background: linear-gradient(135deg, #b89a3a 0%, #e8cb72 35%, #d4b254 65%, #b89a3a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ═══ HEADER ═══ */
    .hdr {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.4rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hdr.stuck {
      background: rgba(8,8,8,0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 0.8rem 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .hdr-brand {
      display: flex; align-items: center; gap: 0.75rem;
      text-decoration: none;
      opacity: 0;
      transition: opacity 0.5s;
    }
    .hdr.stuck .hdr-brand { opacity: 1; }
    .hdr-brand img { width: 34px; height: 34px; border-radius: 8px; }
    .hdr-brand span {
      font-family: var(--serif);
      font-size: 0.95rem; font-weight: 500;
      color: var(--text);
    }
    .hdr-nav { display: flex; gap: 2.5rem; }
    .hdr-nav a {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .hdr-nav a:hover { color: var(--gold); }

    /* ═══ HERO ═══ */
    .hero {
      position: relative;
      height: 100vh; height: 100svh;
      min-height: 650px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-photo {
      position: absolute; inset: -30px;
      overflow: hidden;
    }
    .hero-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      animation: heroKB 30s ease-in-out infinite alternate;
    }
    @keyframes heroKB {
      0% { transform: scale(1) translate(0, 0); }
      100% { transform: scale(1.08) translate(-1%, 1%); }
    }
    .hero-photo::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, transparent 35%),
        linear-gradient(to top, var(--bg) 0%, transparent 40%),
        linear-gradient(to right, rgba(8,8,8,0.2) 0%, transparent 30%);
    }
    .hero-inner {
      position: relative; z-index: 2;
      text-align: center;
      padding: 2rem;
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 8vw, 6rem);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 1rem;
    }
    .hero-loc {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--text-mid);
      opacity: 0;
      animation: heroReveal 1s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-rule {
      width: 50px; height: 1px;
      margin: 2.5rem auto;
      background: var(--gold-dim);
      opacity: 0;
      animation: heroReveal 1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-tag {
      font-family: var(--serif);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 400;
      font-style: italic;
      color: var(--gold);
      opacity: 0;
      animation: heroReveal 1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero h1 .w {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
      animation: wordUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero h1 .w:nth-child(1) { animation-delay: 0.1s; }
    .hero h1 .w:nth-child(2) { animation-delay: 0.25s; }
    .hero h1 .w:nth-child(3) { animation-delay: 0.4s; }
    @keyframes wordUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroReveal {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-scroll {
      position: absolute;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      width: 1px; height: 48px;
      overflow: hidden;
    }
    .hero-scroll::after {
      content: '';
      position: absolute;
      top: -48px; left: 0;
      width: 1px; height: 48px;
      background: var(--gold-dim);
      animation: scrollLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    @keyframes scrollLine {
      0% { transform: translateY(0); }
      100% { transform: translateY(96px); }
    }

    /* ═══ MANIFESTO ═══ */
    .manifesto {
      min-height: 60vh;
      display: flex; align-items: center; justify-content: center;
      padding: 6rem 2rem;
      background: var(--bg-warm);
      position: relative;
    }
    .manifesto::before, .manifesto::after {
      content: '';
      position: absolute; left: 50%; transform: translateX(-50%);
      width: 1px; height: 80px;
      background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
      opacity: 0.3;
    }
    .manifesto::before { top: 0; }
    .manifesto::after { bottom: 0; }
    .manifesto blockquote {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      font-weight: 400;
      text-align: center;
      max-width: 800px;
      line-height: 1.4;
      color: var(--text);
    }

    /* ═══ PILLAR STRIP ═══ */
    .pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .pill {
      padding: 3rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.04);
      transition: background 0.5s;
    }
    .pill:last-child { border-right: none; }
    .pill:hover { background: rgba(255,255,255,0.015); }
    .pill-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      display: block;
    }
    .pill h3 {
      font-family: var(--serif);
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 0.6rem;
      color: var(--text);
    }
    .pill p {
      color: var(--text-dim);
      font-size: 0.8rem;
      line-height: 1.7;
      max-width: 220px;
      margin: 0 auto;
    }

    /* ═══ STRAIN EDITORIAL SECTIONS ═══ */
    .strain-spread {
      display: grid;
      grid-template-columns: 3fr 2fr;
      min-height: 85vh;
      position: relative;
      overflow: hidden;
    }
    .strain-spread.flip {
      grid-template-columns: 2fr 3fr;
    }
    .strain-spread.flip .ss-photo { order: 2; }
    .strain-spread.flip .ss-text { order: 1; }

    .ss-photo {
      position: relative;
      overflow: hidden;
    }
    .ss-photo img {
      position: absolute; inset: -20px;
      width: calc(100% + 40px);
      height: calc(100% + 40px);
      object-fit: cover;
    }
    .ss-photo .ss-kb { animation: kb1 28s ease-in-out infinite alternate; }
    .strain-spread.flip .ss-photo .ss-kb { animation: kb2 32s ease-in-out infinite alternate; }
    .strain-spread:nth-child(3) .ss-photo .ss-kb { animation: kb3 26s ease-in-out infinite alternate; }
    @keyframes kb1 {
      0% { transform: scale(1) translate(0, 0); }
      100% { transform: scale(1.06) translate(1.5%, -1%); }
    }
    @keyframes kb2 {
      0% { transform: scale(1.06) translate(-1%, 0.5%); }
      100% { transform: scale(1) translate(0.5%, -0.5%); }
    }
    @keyframes kb3 {
      0% { transform: scale(1); }
      100% { transform: scale(1.07) translate(-1%, 1%); }
    }

    .ss-photo::after {
      content: '';
      position: absolute; inset: 0;
      z-index: 1;
    }
    .strain-spread:not(.flip) .ss-photo::after {
      background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
    }
    .strain-spread.flip .ss-photo::after {
      background: linear-gradient(to left, transparent 60%, var(--bg) 100%);
    }

    .ss-num {
      position: absolute;
      z-index: 2;
      font-family: var(--serif);
      font-size: clamp(8rem, 14vw, 12rem);
      font-weight: 700;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      bottom: 1rem;
    }
    .strain-spread:not(.flip) .ss-num { right: 2rem; }
    .strain-spread.flip .ss-num { left: 2rem; }

    .ss-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem 5rem;
    }
    .ss-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 1.5rem;
    }
    .ss-name {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.5vw, 3rem);
      font-weight: 600;
      margin-bottom: 0.4rem;
      line-height: 1.1;
    }
    .ss-lineage {
      font-family: var(--serif);
      font-size: 0.95rem;
      font-style: italic;
      color: var(--gold-dim);
      margin-bottom: 2rem;
    }
    .ss-rule {
      width: 40px; height: 1px;
      background: var(--gold-dim);
      margin-bottom: 2rem;
      opacity: 0.5;
    }
    .ss-desc {
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.85;
      margin-bottom: 2.5rem;
      max-width: 400px;
    }
    .ss-meta {
      display: flex; align-items: center; gap: 1.5rem;
      flex-wrap: wrap;
    }
    .ss-thc {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--gold);
      padding: 0.35rem 0.8rem;
      border: 1px solid rgba(212,178,84,0.2);
    }
    .ss-tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* ═══ COMING SOON ═══ */
    .coming {
      padding: 6rem 2rem;
      background: var(--bg-warm);
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .coming-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .coming-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 1rem;
      text-align: center;
    }
    .coming-title {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 3.5rem;
      color: var(--text-mid);
    }
    .coming-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: rgba(255,255,255,0.04);
    }
    .coming-card {
      background: var(--bg);
      padding: 3rem;
    }
    .coming-card h3 {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .coming-card .cc-lineage {
      font-family: var(--serif);
      font-size: 0.85rem;
      font-style: italic;
      color: var(--gold-dim);
      margin-bottom: 1.5rem;
    }
    .coming-card p {
      color: var(--text-dim);
      font-size: 0.9rem;
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }
    .coming-card .cc-badge {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-dim);
      padding: 0.3rem 0.8rem;
      border: 1px solid rgba(212,178,84,0.15);
      animation: pulseBorder 3s ease-in-out infinite;
    }
    @keyframes pulseBorder {
      0%, 100% { border-color: rgba(212,178,84,0.15); }
      50% { border-color: rgba(212,178,84,0.35); }
    }

    /* ═══ GALLERY ═══ */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .gal-item {
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      position: relative;
    }
    .gal-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.7) brightness(0.75);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gal-item:hover img {
      filter: saturate(1) brightness(1);
      transform: scale(1.06);
    }

    /* ═══ ABOUT ═══ */
    .about {
      padding: 8rem 2rem;
      position: relative;
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 6rem;
      align-items: center;
    }
    .about-copy {}
    .about-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 1.5rem;
    }
    .about h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 2.5rem;
    }
    .about-body p {
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }
    .about-body strong { color: var(--text); font-weight: 500; }
    .about-pull {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      padding-left: 2rem;
      border-left: 2px solid var(--gold-dim);
      margin: 3rem 0;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.04);
    }
    .a-stat {
      background: var(--bg);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background 0.4s;
    }
    .a-stat:hover { background: var(--bg-card); }
    .a-stat-num {
      font-family: var(--serif);
      font-size: 2.4rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .a-stat-lbl {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* ═══ WHOLESALE ═══ */
    .wholesale {
      padding: 7rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .ws-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 1.2rem;
    }
    .ws-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 500;
      margin-bottom: 1.2rem;
    }
    .ws-body {
      color: var(--text-mid);
      font-size: 1rem;
      max-width: 460px;
      margin: 0 auto 3rem;
      line-height: 1.85;
    }
    .ws-btn {
      display: inline-flex; align-items: center; gap: 0.8rem;
      color: var(--gold);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: 1px solid rgba(212,178,84,0.25);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .ws-btn:hover {
      background: rgba(212,178,84,0.06);
      border-color: var(--gold);
      box-shadow: 0 0 60px rgba(212,178,84,0.06);
    }
    .ws-btn svg { width: 16px; height: 16px; stroke: currentColor; }

    /* ═══ FOOTER ═══ */
    footer {
      padding: 4rem 2rem 3rem;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .ft-mark {
      width: 80px; height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 10px;
      overflow: hidden;
      opacity: 0.85;
    }
    .ft-mark img { width: 100%; height: 100%; object-fit: cover; }
    .ft-info {
      color: var(--text-dim);
      font-size: 0.78rem;
      line-height: 2.2;
    }
    .ft-info a {
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.3s;
    }
    .ft-info a:hover { color: var(--gold); }
    .ft-legal {
      margin-top: 2rem;
      color: #2a2a2a;
      font-size: 0.68rem;
      letter-spacing: 0.05em;
    }

    /* ═══ MOBILE ═══ */
    @media (max-width: 900px) {
      .hdr-nav a.hm { display: none; }
      .pillars { grid-template-columns: repeat(2, 1fr); }
      .strain-spread, .strain-spread.flip {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .ss-photo { height: 55vh; order: 0 !important; }
      .ss-text { order: 1 !important; padding: 3rem 2rem; }
      .strain-spread:not(.flip) .ss-photo::after,
      .strain-spread.flip .ss-photo::after {
        background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
      }
      .ss-num { bottom: auto; top: 1rem; right: 1.5rem !important; left: auto !important; font-size: 7rem; }
      .gallery { grid-template-columns: repeat(2, 1fr); }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .coming-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .pillars { grid-template-columns: 1fr; }
      .pill { text-align: left; display: flex; gap: 1rem; align-items: flex-start; padding: 2rem 1.5rem; }
      .pill-icon { margin-bottom: 0; flex-shrink: 0; }
      .pill p { max-width: none; }
      .hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
      .ss-photo { height: 45vh; }
      .ss-text { padding: 2.5rem 1.5rem; }
      .hdr { padding: 1rem 1.2rem; }
      .hdr.stuck { padding: 0.7rem 1.2rem; }
      .hdr-brand img { width: 28px; height: 28px; }
      .hdr-brand span { font-size: 0.82rem; }
      .about { padding: 5rem 1.5rem; }
    }

    /* ═══ REDUCED MOTION ═══ */
    @media (prefers-reduced-motion: reduce) {
      .grain { display: none; }
      .hero-photo img, .ss-photo .ss-kb { animation: none !important; }
      .rv, .rv-fade { transition: none !important; clip-path: none !important; opacity: 1 !important; transform: none !important; }
      .hero h1 .w { animation: none !important; opacity: 1 !important; transform: none !important; }
      .hero-loc, .hero-rule, .hero-tag { animation: none !important; opacity: 1 !important; }
    }
  
/* Legendary Leaf, September 2026. Tabler UI and Bootstrap 5 components. */
:root {
  --text-mid: #b6b0a6;
  --text-dim: #a59e94;
  --tblr-body-bg: #080808;
  --tblr-body-color: #f0ede6;
  --tblr-border-color: #3b352a;
  --tblr-primary: #f0d060;
  --tblr-font-sans-serif: 'Inter', -apple-system, sans-serif;
  --bs-body-bg: #080808;
  --bs-body-color: #f0ede6;
  --bs-border-color: #3b352a;
}
body { font-size: 1rem; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { text-underline-offset: .25em; }
button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 5px;
}
[id] { scroll-margin-top: 90px; }
.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; flex-shrink: 0; }
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 1200; padding: .8rem 1.2rem; background: var(--gold); color: #080808; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.hdr { min-height: 80px; background: linear-gradient(#080808ed, #080808bb); border-bottom: 1px solid #ffffff12; }
.hdr-brand { opacity: 1; min-height: 44px; }
.hdr-brand:hover, .hdr-brand:focus { text-decoration: none; }
.hdr-nav { align-items: center; gap: 2rem; }
.hdr-nav a { display: inline-flex; align-items: center; min-height: 44px; color: #d2ccc1; font-size: .8rem; margin: 0; }
.hdr-nav a:hover, .hdr-nav a:focus-visible { color: var(--gold); }
.mobile-toggle { display: none; align-items: center; justify-content: center; gap: .45rem; min-height: 44px; color: var(--text); border: 1px solid #ffffff35; background: #111110; padding: .5rem .75rem; border-radius: 6px; }
.hero { min-height: 620px; max-height: 1050px; }
.hero-photo img, .ss-photo .ss-kb { animation: none !important; }
.hero-photo::after { background: linear-gradient(180deg, #08080888, #08080866 48%, #080808); }
.hero-loc { color: #e4ded3; line-height: 1.7; }
.hero h1 { text-shadow: 0 4px 40px #0008; }
.hero h1 .gld { text-shadow: none; }
.hero-scroll, .grain { display: none; }
.manifesto { min-height: 390px; }
.rv, .rv-fade { clip-path: none; opacity: 1; transform: none; }
.pill-icon { color: var(--gold); }
.pill-icon .icon { width: 28px; height: 28px; }
.pill h3 { font-size: 1.1rem; }
.pill p { font-size: .9rem; }
.ss-label, .ss-thc, .ss-tag, .coming-label, .coming-card .cc-badge, .about-label, .a-stat-lbl, .ws-label { font-size: .8rem; }
.ss-num { user-select: none; }
.ss-text { padding: clamp(2rem, 5vw, 5rem); }
.ss-lineage { font-size: 1.05rem; }
.coming-inner { max-width: 1140px; }
.coming-title { color: var(--text); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.coming-grid { background: transparent; gap: 1rem; }
.coming-card { border: 1px solid #ffffff16; border-radius: 8px; padding: 2rem; }
.coming-card .cc-lineage { font-size: .95rem; }
.coming-card .cc-badge { animation: none; letter-spacing: .12em; }
.photos { padding: 6rem 2rem; background: var(--bg); }
.photos-inner { max-width: 1140px; margin: auto; }
.photos-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.photos-heading h2 { font: 500 clamp(2rem, 4vw, 2.8rem)/1.2 var(--serif); margin: 0; }
.photos-heading p { margin: 0; color: var(--text-mid); font-size: .9rem; }
.photo-card { background: var(--bg-card); border-color: #ffffff1c; overflow: hidden; margin: 0; }
.photo-open { display: block; padding: 0; width: 100%; border: 0; background: #111110; color: var(--text); position: relative; cursor: zoom-in; }
.photo-open picture, .gal-item picture { display: block; height: 100%; }
.photo-card .photo-open { aspect-ratio: 3 / 4; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-open:focus-visible { outline-offset: -6px; z-index: 2; }
.photo-enlarge { position: absolute; bottom: 1rem; right: 1rem; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #080808d9; border: 1px solid #ffffff50; }
.photo-card figcaption { padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.photo-card figcaption strong { font: 500 1.35rem var(--serif); }
.photo-card figcaption span { font-size: .8rem; color: var(--text-mid); }
.gallery { margin-top: 2rem; gap: .75rem; }
.gal-item { padding: 0; border: 1px solid #ffffff24; border-radius: 6px; cursor: zoom-in; }
.gal-item img { filter: none; transition: transform .25s; }
.gal-item:hover img { transform: scale(1.025); }
.ft-info, .ft-info a, .ft-legal { color: var(--text-dim); }
.ft-info { font-size: .9rem; }
.ft-info a { display: inline-flex; min-height: 44px; align-items: center; text-decoration: underline; }
.ft-legal { font-size: .8rem; max-width: 650px; margin: 1.5rem auto 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: center; margin: 1rem auto; }
.footer-nav a { display: inline-flex; min-height: 44px; align-items: center; color: var(--text-mid); font-size: .85rem; }
.ws-btn { max-width: 100%; letter-spacing: .05em; font-size: .9rem; padding: 1rem 1.5rem; overflow-wrap: anywhere; }
.site-dialog { --bs-modal-bg: #111110; --bs-modal-color: #f0ede6; --bs-modal-border-color: #494030; --tblr-modal-bg: #111110; --tblr-modal-color: #f0ede6; }
.site-dialog .modal-content { color: var(--text); background: #111110; border: 1px solid #494030; border-radius: 12px; }
.site-dialog .modal-body { padding: 2.5rem; }
.site-dialog h2 { font: 500 1.8rem var(--serif); }
.site-dialog p { color: var(--text-mid); }
.site-dialog .age-logo { width: 80px; height: 80px; border-radius: 12px; margin: 0 auto 1.5rem; }
.site-dialog .btn { min-height: 48px; font-size: .95rem; }
.btn-gold { background: var(--gold); color: #080808; border: 1px solid var(--gold); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-light); color: #080808; }
.btn-outline-leaf { color: var(--text); background: transparent; border: 1px solid #716b60; }
.btn-outline-leaf:hover { color: var(--text); background: #29261f; }
.modal-backdrop { --bs-backdrop-opacity: .94; --tblr-backdrop-opacity: .94; }
.photo-dialog .modal-dialog { width: min(1140px, calc(100% - 2rem)); max-width: none; }
.photo-dialog .modal-header { padding: 1rem 1.25rem; border-bottom-color: #ffffff20; }
.photo-dialog .modal-body { padding: .75rem; text-align: center; }
.photo-dialog img { display: block; max-width: 100%; max-height: calc(100dvh - 180px); width: auto; height: auto; margin: auto; object-fit: contain; }
.close-button { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #716b60; border-radius: 50%; background: transparent; color: var(--text); }
.site-menu { background: #111110; color: var(--text); --bs-offcanvas-width: min(360px, 100vw); --tblr-offcanvas-width: min(360px, 100vw); }
.site-menu .offcanvas-title { font: 500 1.5rem var(--serif); }
.site-menu .nav-link { color: var(--text); padding: 1rem .5rem; border-bottom: 1px solid #ffffff18; font-size: 1.15rem; }
.site-menu .nav-link:hover, .site-menu .nav-link:focus-visible { color: var(--gold); }
.site-menu .menu-location { margin-top: 2rem; color: var(--text-dim); font-size: .85rem; }
.no-script { padding: 1rem; text-align: center; background: #2b2416; color: var(--text); }
@media (min-width: 901px) { .hdr { padding-inline: max(2rem, calc((100vw - 1400px)/2)); } }
@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero { min-height: 560px; }
  .ss-photo { height: min(70vw, 560px); }
  .photos { padding: 4rem 1.5rem; }
  .coming-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photos-heading { display: block; }
  .photos-heading p { margin-top: 1rem; }
}
@media (max-width: 600px) {
  .hero { min-height: 560px; height: 90svh; }
  .hero h1 { line-height: 1.05; letter-spacing: .02em; }
  .hero-loc { font-size: .8rem; letter-spacing: .18em; }
  .hero-inner { padding: 5rem 1.25rem 2rem; }
  .hdr, .hdr.stuck { padding: .6rem 1rem; min-height: 68px; }
  .hdr-brand { gap: .5rem; }
  .hdr-brand span { font-size: .9rem; }
  .mobile-toggle { font-size: .85rem; }
  .manifesto { min-height: 310px; padding: 4rem 1.5rem; }
  .coming { padding: 4rem 1.5rem; }
  .coming-grid { grid-template-columns: 1fr; }
  .coming-card { padding: 1.5rem; }
  .photo-card figcaption { padding: 1rem; flex-wrap: wrap; }
  .gallery { gap: .5rem; margin-top: 1.5rem; }
  .site-dialog .modal-body { padding: 1.75rem 1.25rem; }
  .photo-dialog .modal-body { padding: .5rem; }
  .site-dialog .modal-dialog { margin: .75rem auto; }
  .photo-dialog .modal-dialog { width: calc(100% - 1rem); }
  .photo-dialog h2 { font-size: 1.25rem; }
  .wholesale { padding: 4rem 1.25rem; }
  .a-stat { padding: 2rem 1rem; }
  .ss-num { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .hero h1 .w, .hero-loc, .hero-rule, .hero-tag { opacity: 1 !important; transform: none !important; }
}

/* Factual copy revision: three process facts and compact cultivar entries. */
.pillars{grid-template-columns:repeat(3,1fr)}.coming-card{padding:1.75rem}.coming-card p:last-child{margin-bottom:0}.coming-card h3:last-child{margin-bottom:0}.coming-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.hero-loc{max-width:760px;margin-inline:auto;letter-spacing:.18em}.about-stats{grid-template-columns:1fr 1fr}.about-inner{gap:4rem}@media(max-width:900px){.coming-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.about-inner{gap:2rem}}@media(max-width:600px){.pillars,.coming-grid{grid-template-columns:1fr}.pill{display:block}.pill p{max-width:none}.hero-loc{max-width:310px;font-size:.8rem;letter-spacing:.12em}}

/* Supplied brand artwork, displayed without changing its lettering or shapes. */
:root {
  --gold: #bba680;
  --gold-light: #d7c4a1;
  --gold-dim: #a5936e;
  --tblr-primary: #bba680;
}
.gld { background: none; color: var(--gold); -webkit-text-fill-color: currentColor; }
.hdr-brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 0; flex-shrink: 0; }
.hero-inner { width: 100%; padding: 6.5rem 1.25rem 3rem; }
.hero-brand { display: block; width: min(460px, 82vw, 49svh); height: auto; margin: 0 auto 1.25rem; }
.hero-photo::after { background: linear-gradient(180deg, #080808b3, #080808b8 48%, #080808); }
.hero-rule { margin: 1.5rem auto; }
.ft-mark { width: 210px; height: 210px; opacity: 1; border-radius: 0; margin-bottom: 1.5rem; }
.ft-mark img { object-fit: contain; }
.about-photo { width: min(100%, 400px); justify-self: end; margin: 0; border: 1px solid #ffffff24; border-radius: 8px; overflow: hidden; background: var(--bg-card); }
.about-photo img { display: block; width: 100%; height: auto; }
.about-photo figcaption { padding: .85rem 1rem; color: var(--text-mid); font-size: .85rem; }
.site-dialog .age-logo { display: block; width: min(210px, 55vw); height: auto; border-radius: 0; margin: 0 auto 1.25rem; }
@media (max-width: 900px) { .about-photo { justify-self: center; width: min(100%, 440px); } }
@media (max-width: 600px) {
  .hdr-brand img { width: 38px; height: 38px; }
  .hero-inner { padding-top: 5rem; padding-bottom: 2rem; }
  .hero-brand { margin-bottom: 1rem; }
  .hero-rule { margin: 1.25rem auto; }
}
