:root {
      --cream: #f6efe3;
      --paper: #fffaf1;
      --espresso: #2d2118;
      --coffee: #5b3f2d;
      --clay: #b96d45;
      --sand: #dfc7a6;
      --sage: #899878;
      --muted: #75685c;
      --line: rgba(45, 33, 24, 0.14);
      --shadow: 0 24px 70px rgba(45, 33, 24, 0.12);
      --radius: 28px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--espresso);
      background: var(--cream);
      line-height: 1.6;
    }

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

    .page {
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(185, 109, 69, 0.16), transparent 34rem),
        radial-gradient(circle at 90% 8%, rgba(137, 152, 120, 0.18), transparent 30rem),
        var(--cream);
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(246, 239, 227, 0.82);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
      font-size: 1.2rem;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--espresso);
      color: var(--cream);
      display: grid;
      place-items: center;
      font-family: "Playfair Display", serif;
      font-size: 1rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--muted);
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 14px 22px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 180ms ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .button.primary {
      background: var(--espresso);
      color: var(--paper);
      box-shadow: 0 12px 30px rgba(45, 33, 24, 0.18);
    }

    .button.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(45, 33, 24, 0.24);
    }

    .button.secondary {
      border-color: var(--line);
      background: rgba(255, 250, 241, 0.62);
      color: var(--espresso);
    }

    .button.secondary:hover {
      background: var(--paper);
      transform: translateY(-2px);
    }

    .hero {
      max-width: 1180px;
      margin: 0 auto;
      padding: 92px 24px 76px;
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 250, 241, 0.58);
      color: var(--coffee);
      font-size: 0.84rem;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--clay);
      box-shadow: 0 0 0 6px rgba(185, 109, 69, 0.16);
    }

    h1, h2, h3 {
      margin: 0;
      line-height: 1.04;
      letter-spacing: -0.055em;
    }

    h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 6vw, 4.2rem);
      max-width: 850px;
    }

    .hero p {
      max-width: 650px;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.32rem);
      margin: 26px 0 0;
    }

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

    .hero-card {
      position: relative;
      isolation: isolate;
      position: relative;
      min-height: 620px;
      border-radius: 46px;
      background:
        linear-gradient(145deg, rgba(255,250,241,0.85), rgba(223,199,166,0.7)),
        radial-gradient(circle at center, rgba(45,33,24,0.1), transparent 60%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.4);
      overflow: hidden;
      padding: 30px;
    }

    .coffee-cup {
      position: absolute;
      left: 50%;
      top: 48%;
      transform: translate(-50%, -50%);
      width: min(78%, 390px);
      aspect-ratio: 1 / 1.15;
      border-radius: 44% 44% 50% 50%;
      background: linear-gradient(160deg, #fffaf1 0%, #dfc7a6 100%);
      border: 3px solid rgba(45, 33, 24, 0.16);
      box-shadow: inset 0 -30px 70px rgba(45,33,24,0.12), 0 30px 70px rgba(45,33,24,0.22);
    }

    .coffee-cup::before {
      content: "";
      position: absolute;
      inset: 11% 13% auto;
      height: 34%;
      border-radius: 50%;
      background: radial-gradient(circle, #503320 0%, #2d2118 62%, #1d1510 100%);
      box-shadow: inset 0 0 0 14px rgba(255, 250, 241, 0.18);
    }

    .coffee-cup::after {
      content: "";
      position: absolute;
      right: -23%;
      top: 34%;
      width: 34%;
      height: 25%;
      border: 24px solid rgba(255,250,241,0.86);
      border-left: 0;
      border-radius: 0 999px 999px 0;
    }

    .steam {
      position: absolute;
      width: 42px;
      height: 138px;
      border-radius: 999px;
      border-left: 3px solid rgba(45, 33, 24, 0.18);
      top: 58px;
      animation: float 4s ease-in-out infinite;
    }

    .steam.one { left: 35%; }
    .steam.two { left: 49%; animation-delay: 0.7s; height: 160px; }
    .steam.three { left: 62%; animation-delay: 1.2s; }

    .minimal-cup {
      position: absolute;
      left: 50%;
      top: 52%;
      transform: translate(-50%, -50%);
      width: 320px;
      height: 230px;
      border-radius: 0 0 110px 110px;
      background: linear-gradient(145deg, rgba(255,250,241,0.96), rgba(223,199,166,0.92));
      border: 4px solid rgba(45,33,24,0.12);
      box-shadow: inset 0 -20px 40px rgba(45,33,24,0.08), 0 26px 60px rgba(45,33,24,0.18);
    }

    /*
    .minimal-cup::before {
      content: "";
      position: absolute;
      width: 94px;
      height: 94px;
      border: 14px solid rgba(255,250,241,0.95);
      border-left: 0;
      right: -62px;
      top: 58px;
      border-radius: 0 999px 999px 0;
    }
    */

    .coffee-surface {
      position: absolute;
      left: 50%;
      top: 20px;
      transform: translateX(-50%);
      width: 78%;
      height: 70px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 30%, #6b4831, #2d2118 72%);
      box-shadow: inset 0 0 0 10px rgba(255,250,241,0.16);
    }

    .hero-shadow {
      position: absolute;
      left: 50%;
      bottom: 54px;
      transform: translateX(-50%);
      width: 340px;
      height: 42px;
      border-radius: 50%;
      background: rgba(45,33,24,0.14);
      filter: blur(18px);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(8deg); opacity: 0.55; }
      50% { transform: translateY(-18px) rotate(-4deg); opacity: 0.9; }
    }

    .floating-label {
      position: absolute;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255, 250, 241, 0.82);
      border: 1px solid rgba(45, 33, 24, 0.1);
      box-shadow: 0 16px 40px rgba(45,33,24,0.11);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .floating-label span {
      display: block;
      color: var(--muted);
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0;
    }

    .floating-label.source { left: 30px; bottom: 34px; }
    .floating-label.ritual { right: 26px; top: 120px; }

    section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 86px 24px;
    }

    .section-heading {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 42px;
    }

    h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .section-heading p,
    .large-copy {
      color: var(--muted);
      font-size: 1.12rem;
      margin: 0;
    }

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

    .pillar {
      background: rgba(255, 250, 241, 0.68);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: 180ms ease;
    }

    .pillar:hover {
      transform: translateY(-4px);
      background: var(--paper);
      box-shadow: 0 18px 50px rgba(45,33,24,0.08);
    }

    .icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: var(--espresso);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      margin-bottom: 28px;
    }

    h3 {
      font-size: 1.45rem;
      margin-bottom: 12px;
    }

    .pillar p, .story p, .product-card p { color: var(--muted); margin: 0; }

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

    .story-card {
      border-radius: 38px;
      padding: 38px;
      background: var(--espresso);
      color: var(--paper);
      min-height: 470px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .story-card::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(185, 109, 69, 0.26);
      right: -150px;
      bottom: -120px;
    }

    .story-card p, .story-card .label { color: rgba(255,250,241,0.72); }

    .label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--clay);
      margin-bottom: 18px;
    }

    .origin-card {
      border-radius: 38px;
      padding: 38px;
      background: linear-gradient(145deg, rgba(137,152,120,0.25), rgba(255,250,241,0.74));
      border: 1px solid var(--line);
      min-height: 470px;
    }

    .origin-map {
      height: 240px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 55% 58%, var(--clay) 0 10px, transparent 11px),
        radial-gradient(circle at 55% 58%, rgba(185,109,69,0.18) 0 58px, transparent 59px),
        linear-gradient(135deg, rgba(45,33,24,0.1), rgba(255,250,241,0.62));
      margin-bottom: 28px;
      position: relative;
      overflow: hidden;
    }

    .origin-map::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-family: "Playfair Display", serif;
      font-size: 3.4rem;
      color: rgba(45, 33, 24, 0.18);
      letter-spacing: -0.05em;
    }

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

    .product-card {
      border-radius: 28px;
      background: rgba(255,250,241,0.74);
      border: 1px solid var(--line);
      padding: 24px;
    }

    .product-visual {
      height: 170px;
      border-radius: 22px;
      margin-bottom: 22px;
      background: linear-gradient(145deg, rgba(223,199,166,0.95), rgba(255,250,241,0.7));
      display: grid;
      place-items: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .beans-visual {
      font-size: 4.4rem;
      color: var(--espresso);
    }

    .ritual {
      border-radius: 46px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: clamp(34px, 7vw, 70px);
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(246, 239, 227, 0.72);
    }

    .step-number {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--espresso);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .step strong { display: block; margin-bottom: 3px; }
    .step span { color: var(--muted); }

    .community {
      text-align: center;
      max-width: 860px;
    }

    .community h2 { margin-bottom: 24px; }
    .community p { color: var(--muted); font-size: 1.15rem; margin: 0 auto 34px; max-width: 680px; }

    .footer {
      border-top: 1px solid var(--line);
      padding: 34px 24px;
      background: rgba(45, 33, 24, 0.04);
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 0.94rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      font-weight: 700;
      color: var(--espresso);
    }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hero, .section-heading, .story, .ritual { grid-template-columns: 1fr; }
      .hero { padding-top: 64px; }
      .hero-card { min-height: 520px; }
      .pillars, .products { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .nav-inner { padding: 14px 18px; }
      .brand span:last-child { display: none; }
      .hero, section { padding-left: 18px; padding-right: 18px; }
      .hero-card { min-height: 440px; border-radius: 34px; }
      .floating-label { font-size: 0.86rem; }
      .floating-label.ritual { right: 14px; top: 92px; }
      .floating-label.source { left: 14px; bottom: 18px; }
      .pillars, .products { grid-template-columns: 1fr; }
      .story-card, .origin-card, .ritual { border-radius: 30px; padding: 28px; }
      h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
    }
  