    :root {
      --forest: #1e3d2f;
      --forest-mid: #2d5442;
      --forest-light: #3a6b54;
      --sage: #7aaa8a;
      --cream: #f5ede0;
      --cream-light: #faf5ed;
      --cream-mid: #ede4d3;
      --ochre: #b87333;
      --gold: #c8922a;
      --text-dark: #1a1a14;
      --text-mid: #3d3d30;
      --text-muted: #7a7a65;
      --border: rgba(30, 61, 47, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream-light);
      color: var(--text-dark);
      overflow-x: hidden;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    body.loaded {
      opacity: 1;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 4rem;
      background: rgba(245, 237, 224, 0.93);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 80px;
      width: auto;
      display: block;
    }

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

    .nav-links a {
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--forest) !important;
      color: var(--cream) !important;
      padding: 0.6rem 1.5rem;
      border-radius: 100px;
    }

    #home {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 7rem 3.5rem 5rem 5rem;
      background: var(--cream-light);
      position: relative;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--forest);
      margin-bottom: 2rem;
    }

    .eyebrow-line {
      width: 32px;
      height: 1px;
      background: var(--forest);
    }

    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 4.5vw, 5.5rem);
      font-weight: 600;
      line-height: 1.05;
      color: var(--forest);
      letter-spacing: -0.01em;
      margin-bottom: 1.75rem;
    }

    .hero-h1 em {
      font-style: italic;
      font-weight: 400;
      color: var(--ochre);
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .hero-desc {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 2.5rem;
    }

    .badges-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.4rem 0.9rem;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--forest);
      background: rgba(30, 61, 47, 0.05);
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--forest);
      color: var(--cream);
      border: none;
      padding: 0.95rem 2rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.22s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--forest-light);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--forest);
      border: 1.5px solid var(--forest);
      padding: 0.95rem 2rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.22s;
      display: inline-block;
    }

    .btn-outline:hover {
      background: var(--forest);
      color: var(--cream);
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #3a6b54 0%, #2d5442 45%, #1e3d2f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-visual {
      text-align: center;
    }

    .hero-big-icon {
      font-size: 8rem;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
      animation: gentleBob 4s ease-in-out infinite;
    }

    @keyframes gentleBob {

      0%,
      100% {
        transform: translateY(0) rotate(-2deg);
      }

      50% {
        transform: translateY(-12px) rotate(2deg);
      }
    }

    .hero-tagline-visual {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      color: rgba(245, 237, 224, 0.55);
      margin-top: 1.5rem;
      letter-spacing: 0.05em;
    }

    .hero-float-card {
      position: absolute;
      bottom: 2.5rem;
      left: -1.5rem;
      background: var(--cream-light);
      border-radius: 18px;
      padding: 1.25rem 1.5rem;
      width: 210px;
      box-shadow: 0 20px 50px rgba(30, 61, 47, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.8);
      animation: floatDesktop 4s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-7px);
      }
    }

    @keyframes floatDesktop {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-7px);
      }
    }

    .float-label {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .float-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--forest);
    }

    .float-price {
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--ochre);
      margin-top: 0.4rem;
    }

    .float-stars {
      color: var(--gold);
      font-size: 0.75rem;
      margin-top: 0.2rem;
    }

    .ticker {
      background: var(--forest);
      color: var(--cream);
      padding: 0.7rem 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-inner {
      display: inline-flex;
      gap: 2.5rem;
      animation: ticker 24s linear infinite;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .ticker-item {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .tdot {
      color: var(--gold);
    }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1rem;
    }

    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3vw, 3.4rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--forest);
      letter-spacing: -0.01em;
    }

    .section-h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--ochre);
    }

    #about {
      padding: 7rem 5rem;
      background: var(--cream);
    }

    .about-story-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-bottom: 5rem;
    }

    .about-body {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.85;
      margin: 1.5rem 0;
    }

    .about-pills {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .about-pill {
      background: var(--forest);
      color: var(--cream);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 0.5rem 1.1rem;
      border-radius: 100px;
    }

    .about-right {
      position: relative;
    }

    .about-img-wrap {
      border-radius: 24px;
      overflow: hidden;
      height: 480px;
      background: linear-gradient(145deg, #3a6b54, #2d5442, #1e3d2f);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
    }

    .about-callout {
      position: absolute;
      bottom: -1.5rem;
      left: -2rem;
      background: var(--ochre);
      color: white;
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      width: 180px;
      box-shadow: 0 16px 40px rgba(184, 115, 51, 0.3);
    }

    .callout-big {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
    }

    .callout-sub {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-top: 0.3rem;
    }

    /* Founder section */
    .founder-section {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 4rem;
      align-items: center;
      background: white;
      border-radius: 28px;
      padding: 3.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(30, 61, 47, 0.06);
    }

    .founder-photo-wrap {
      position: relative;
    }

    .founder-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      border-radius: 20px;
      display: block;
    }

    .founder-badge {
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      background: var(--forest);
      color: var(--cream);
      border-radius: 14px;
      padding: 0.875rem 1.1rem;
      text-align: center;
      box-shadow: 0 10px 28px rgba(30, 61, 47, 0.25);
    }

    .founder-badge-title {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.2rem;
    }

    .founder-badge-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--cream);
    }

    .founder-story-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1rem;
    }

    .founder-story-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.15;
      color: var(--forest);
      margin-bottom: 1.5rem;
    }

    .founder-story-h em {
      font-style: italic;
      color: var(--ochre);
    }

    .founder-story-pull {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: var(--text-muted);
      line-height: 1.6;
      border-left: 3px solid var(--ochre);
      padding-left: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .founder-story-p {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .founder-sig {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--forest);
      margin-top: 1.5rem;
    }

    #products {
      padding: 7rem 5rem;
      background: var(--cream-light);
    }

    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }

    .collection {
      margin-bottom: 3.5rem;
    }

    .collection-header {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .collection-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1.5px solid var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    .collection-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--forest);
    }

    .collection-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.88rem;
      font-style: italic;
      color: var(--text-muted);
      margin-left: 4.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .collection-subtitle::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .collection-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      margin-left: 0.75rem;
      vertical-align: middle;
    }

    .tag-maple {
      background: rgba(200, 146, 42, 0.12);
      color: var(--gold);
      border: 1px solid rgba(200, 146, 42, 0.25);
    }

    .tag-honey {
      background: rgba(184, 115, 51, 0.1);
      color: var(--ochre);
      border: 1px solid rgba(184, 115, 51, 0.2);
    }

    .tag-monk {
      background: rgba(30, 61, 47, 0.07);
      color: var(--forest);
      border: 1px solid rgba(30, 61, 47, 0.15);
    }

    .products-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .product-card {
      background: white;
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: all 0.25s;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(30, 61, 47, 0.1);
      border-color: rgba(30, 61, 47, 0.2);
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.3;
      margin-bottom: 0.3rem;
    }

    .product-weight {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .product-price-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--forest);
      white-space: nowrap;
    }

    .add-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--forest);
      color: white;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .add-btn:hover {
      background: var(--forest-light);
      transform: scale(1.1);
    }

    #why {
      padding: 7rem 5rem;
      background: var(--forest);
      color: var(--cream);
    }

    #why .section-h2 {
      color: var(--cream);
    }

    #why .section-label {
      color: var(--sage);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .why-card {
      border: 1px solid rgba(245, 237, 224, 0.1);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      transition: all 0.3s;
    }

    .why-card:hover {
      border-color: rgba(122, 170, 138, 0.3);
      background: rgba(245, 237, 224, 0.04);
    }

    .why-icon {
      font-size: 1.8rem;
      margin-bottom: 1.25rem;
    }

    .why-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }

    .why-desc {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(245, 237, 224, 0.58);
      line-height: 1.75;
    }

    #compare {
      padding: 7rem 5rem;
      background: var(--cream);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 3rem;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(30, 61, 47, 0.08);
    }

    .compare-table th {
      padding: 1.2rem 1.5rem;
      text-align: left;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--forest);
      color: var(--cream);
    }

    .compare-table th.yc {
      background: var(--ochre);
    }

    .compare-table td {
      padding: 1.1rem 1.5rem;
      font-size: 0.88rem;
      color: var(--text-mid);
      border-bottom: 1px solid var(--border);
      background: white;
    }

    .compare-table td:first-child {
      font-weight: 500;
      color: var(--text-dark);
    }

    .compare-table td.yc {
      background: rgba(184, 115, 51, 0.05);
      font-weight: 500;
      color: var(--forest);
    }

    .ck {
      color: #2d8a4e;
    }

    .cx {
      color: #c0392b;
    }

    .cp {
      color: var(--ochre);
    }

    #buy {
      padding: 7rem 5rem;
      background: var(--cream-light);
    }

    .buy-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 5rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .order-form-wrap {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(30, 61, 47, 0.07);
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 0.4rem;
    }

    .form-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .form-input,
    .form-select {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      font-family: 'Jost', sans-serif;
      font-size: 0.92rem;
      color: var(--text-dark);
      background: var(--cream-light);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-input:focus,
    .form-select:focus {
      border-color: var(--forest);
      background: white;
    }

    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e3d2f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .qty-control {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--cream-light);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: var(--forest);
    }

    .qty-btn:hover {
      border-color: var(--forest);
      background: var(--forest);
      color: white;
    }

    .qty-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--forest);
      min-width: 28px;
      text-align: center;
    }

    .order-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      border-top: 1px solid var(--border);
      margin-top: 1.5rem;
    }

    .total-label {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .total-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--forest);
    }

    .submit-btn {
      width: 100%;
      background: var(--forest);
      color: var(--cream);
      border: none;
      padding: 1.1rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.22s;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      background: var(--forest-light);
      transform: translateY(-1px);
    }

    .delivery-note {
      text-align: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 1rem;
    }

    .order-info-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--forest);
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    .order-info-title em {
      font-style: italic;
      color: var(--ochre);
    }

    .info-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .info-icon {
      width: 44px;
      height: 44px;
      background: rgba(30, 61, 47, 0.07);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .info-text-title {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--text-dark);
      margin-bottom: 0.2rem;
    }

    .info-text-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .contact-card {
      background: var(--forest);
      color: var(--cream);
      border-radius: 20px;
      padding: 2rem;
      margin-top: 1.5rem;
    }

    .contact-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      color: rgba(245, 237, 224, 0.55);
      margin-bottom: 1.25rem;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      margin-bottom: 0.75rem;
    }

    .contact-method-icon {
      width: 38px;
      height: 38px;
      background: rgba(245, 237, 224, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .contact-method-text {
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--cream);
    }

    .contact-method-sub {
      font-size: 0.72rem;
      color: rgba(245, 237, 224, 0.45);
    }

    .insta-btn {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: white;
      border-radius: 14px;
      padding: 0.875rem 1.25rem;
      text-decoration: none;
      margin-top: 1.25rem;
      transition: all 0.2s;
    }

    .insta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(131, 58, 180, 0.35);
    }

    .insta-btn-main {
      font-weight: 500;
      font-size: 0.9rem;
    }

    .insta-btn-sub {
      font-size: 0.72rem;
      opacity: 0.8;
    }

    #love {
      padding: 7rem 5rem;
      background: var(--forest);
    }

    #love .section-h2 {
      color: var(--cream);
    }

    #love .section-label {
      color: var(--sage);
    }

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

    .review-card {
      background: rgba(245, 237, 224, 0.06);
      border: 1px solid rgba(245, 237, 224, 0.1);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.3s;
      margin-right: 1.5rem; /* Replaces gap for perfect loop */
    }

    .review-card:hover {
      background: rgba(245, 237, 224, 0.09);
    }

    .review-stars {
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(245, 237, 224, 0.82);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .reviewer-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      color: white;
      flex-shrink: 0;
    }

    .av1 {
      background: #2d8a4e;
    }

    .av2 {
      background: #c8922a;
    }

    .av3 {
      background: #5a3a7a;
    }

    .av4 {
      background: #b87333;
    }

    .av5 {
      background: #3a6b54;
    }

    .av6 {
      background: #8b4a6b;
    }

    .av7 {
      background: #a87344;
    }

    .av8 {
      background: #4a6b8a;
    }

    .reviewer-name {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--cream);
    }

    .reviewer-loc {
      font-size: 0.72rem;
      color: rgba(245, 237, 224, 0.4);
    }

    .reviews-carousel {
      position: relative;
      margin-top: 3rem;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    }

    .reviews-track {
      display: flex;
      width: fit-content;
      animation: reviewsMarquee 70s linear infinite;
      will-change: transform;
    }

    .reviews-track>.review-card {
      flex: 0 0 360px;
      min-width: 0;
    }

    @media (hover: hover) {
      .reviews-carousel:hover .reviews-track,
      .reviews-carousel:focus-within .reviews-track {
        animation-play-state: paused;
      }
    }

    @keyframes reviewsMarquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reviews-track {
        animation: none;
        transform: translateX(-50%);
      }
    }

    footer {
      background: var(--text-dark);
      color: rgba(245, 237, 224, 0.5);
      padding: 4rem 5rem 2.5rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 2rem;
    }

    .footer-logo-img {
      height: 90px;
      width: auto;
      display: block;
      margin-bottom: 1rem;
      filter: brightness(0) invert(1);
    }

    .footer-brand-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .footer-col-title {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 1.25rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      text-decoration: none;
      font-size: 0.85rem;
      color: rgba(245, 237, 224, 0.45);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.78rem;
    }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: rgba(245, 237, 224, 0.3);
    }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: var(--cream-light);
      border-radius: 24px;
      padding: 3rem;
      max-width: 420px;
      width: 90%;
      text-align: center;
      animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes modalPop {
      from {
        transform: scale(0.8);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .modal-icon {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 0.75rem;
    }

    .modal-body {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .modal-close {
      background: var(--forest);
      color: var(--cream);
      border: none;
      padding: 0.875rem 2.5rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
    }

    .modal-close:hover {
      background: var(--forest-light);
    }

    @media(max-width:768px) {

      /* NAV */
      nav {
        padding: 0.85rem 1.25rem;
      }

      .nav-logo-img {
        height: 48px;
      }

      .nav-links {
        display: none;
      }

      /* HERO */
      #home {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-left {
        padding: 5.5rem 1.5rem 2.5rem;
        text-align: center;
        align-items: center;
        order: 2;
      }

      .hero-right {
        height: 70vw;
        min-height: 280px;
        max-height: 420px;
        min-height: 0;
        order: 1;
      }

      .hero-eyebrow {
        justify-content: center;
        font-size: 0.65rem;
      }

      .hero-h1 {
        font-size: 2.4rem;
        text-align: center;
      }

      .hero-tagline {
        text-align: center;
      }

      .hero-desc {
        text-align: center;
        font-size: 0.9rem;
        max-width: 100%;
      }

      .badges-row {
        justify-content: center;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-float-card {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 185px;
        padding: 0.875rem 1rem;
        animation: floatMobile 4s ease-in-out infinite;
      }

      @keyframes floatMobile {

        0%,
        100% {
          transform: translateX(-50%) translateY(0);
        }

        50% {
          transform: translateX(-50%) translateY(-5px);
        }
      }

      .float-title {
        font-size: 0.85rem;
      }

      .float-price {
        font-size: 0.95rem;
      }

      /* TICKER */
      .ticker-item {
        font-size: 0.62rem;
      }

      /* ABOUT / FOUNDER */
      #about {
        padding: 3rem 1.25rem;
      }

      .section-h2 {
        font-size: 2.1rem;
        letter-spacing: -0.02em;
      }

      .founder-section {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        padding: 1.75rem 1.25rem !important;
      }

      .founder-photo {
        width: 100% !important;
        height: 380px !important;
        object-fit: cover !important;
        object-position: top center !important;
        border-radius: 16px !important;
        aspect-ratio: auto !important;
      }

      .founder-badge {
        right: 0.75rem;
        bottom: 0.75rem;
      }

      .founder-story-h {
        font-size: 1.4rem;
      }

      .founder-story-pull {
        font-size: 1rem;
        padding-left: 1rem;
      }

      .founder-story-p {
        font-size: 0.86rem;
      }

      .founder-sig {
        font-size: 1.15rem;
      }

      .about-pills {
        gap: 0.5rem;
      }

      .about-pill {
        font-size: 0.68rem;
        padding: 0.35rem 0.75rem;
      }

      .granola-strip {
        height: 200px;
        margin-top: 2rem;
      }

      .granola-strip-overlay {
        padding: 1.25rem 1.5rem;
      }

      .granola-strip-quote {
        font-size: 1rem;
      }

      /* PRODUCTS */
      #products {
        padding: 3rem 1.25rem;
      }

      .products-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }

      .products-header .btn-outline {
        width: 100%;
        text-align: center;
      }

      .collection-header {
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      .collection-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        flex-shrink: 0;
      }

      .collection-title {
        font-size: 1.2rem;
      }

      .collection-tag {
        margin-left: 0;
        margin-top: 0.25rem;
      }

      .collection-subtitle {
        margin-left: 0;
        font-size: 0.8rem;
      }

      .products-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        max-width: 100% !important;
      }

      .product-card {
        padding: 1.1rem 1.25rem;
      }

      .product-name {
        font-size: 0.9rem;
      }

      .product-price {
        font-size: 1.15rem;
      }

      .add-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }

      /* WHY YAVA */
      #why {
        padding: 3rem 1.25rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
      }

      .why-card {
        padding: 1.25rem 1.1rem;
      }

      .why-title {
        font-size: 1rem;
      }

      .why-desc {
        font-size: 0.82rem;
      }

      /* ORDER / BUY */
      #buy {
        padding: 3rem 1.25rem;
      }

      .buy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
      }

      .order-photo-strip {
        height: 130px;
        margin-bottom: 1.25rem;
      }

      .order-photo-caption-text {
        font-size: 1.1rem;
      }

      .order-photo-caption {
        padding: 1rem 1.25rem;
      }

      .order-form-wrap {
        padding: 1.5rem 1.1rem;
      }

      .form-title {
        font-size: 1.2rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-input,
      .form-select {
        font-size: 0.86rem;
        padding: 0.75rem 0.875rem;
      }

      .qty-num {
        font-size: 1.3rem;
      }

      .total-price {
        font-size: 1.5rem;
      }

      .submit-btn {
        font-size: 0.82rem;
        padding: 0.95rem;
      }

      .order-info-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }

      .contact-card {
        padding: 1.25rem 1.1rem;
      }

      .info-item {
        gap: 0.6rem;
        margin-bottom: 1.1rem;
        padding-bottom: 1.1rem;
      }

      .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
      }

      .info-text-title {
        font-size: 0.85rem;
      }

      .info-text-desc {
        font-size: 0.78rem;
      }

      /* REVIEWS */
      #love {
        padding: 3rem 1.25rem;
      }


      .review-text {
        font-size: 0.92rem;
      }

      .reviews-carousel {
        margin-top: 2rem;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
      }

      .reviews-track {
        animation-duration: 80s;
      }

      .reviews-track>.review-card {
        flex: 0 0 320px; /* Use fixed width on mobile for predictability */
        margin-right: 1rem;
        padding: 1.5rem;
      }

      /* FOOTER */
      footer {
        padding: 2.5rem 1.25rem 1.5rem;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 1.75rem;
      }

      .footer-logo-img {
        height: 56px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
      }

      .footer-copy,
      .footer-tagline {
        font-size: 0.72rem;
      }

      /* MODAL */
      .modal {
        padding: 1.75rem 1.25rem;
        margin: 1rem;
      }

      .modal-title {
        font-size: 1.4rem;
      }

      /* HAMBURGER */
      .hamburger {
        display: flex;
      }
    }

    /* Very small phones */
    @media(max-width:380px) {
      .hero-h1 {
        font-size: 2rem;
      }

      .section-h2 {
        font-size: 1.65rem;
      }

      .hero-right {
        height: 65vw;
      }

      .badges-row {
        gap: 0.5rem;
      }

      .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
      }
    }

    /* Extra small phones */
    @media(max-width:380px) {
      .hero-h1 {
        font-size: 2.2rem;
      }

      .section-h2 {
        font-size: 1.75rem;
      }

      .compare-table th,
      .compare-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.7rem;
      }
    }

    /* ── HAMBURGER & MOBILE MENU ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 201;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--forest);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: flex;
      position: fixed;
      inset: 0;
      z-index: 199;
      background: rgba(245, 237, 224, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.25rem;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-20px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--forest);
      text-decoration: none;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--ochre);
    }

    .mobile-menu-cta {
      background: var(--forest) !important;
      color: var(--cream) !important;
      padding: 0.875rem 2.5rem;
      border-radius: 100px;
      font-size: 1rem !important;
      font-family: 'Jost', sans-serif !important;
      font-weight: 500 !important;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-mid);
      cursor: pointer;
      padding: 0.5rem;
    }

    @media(max-width:768px) {
      .hamburger {
        display: flex;
      }
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .hero-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
          rgba(245, 237, 224, 0.12) 0%,
          transparent 25%),
        linear-gradient(to top,
          rgba(30, 61, 47, 0.35) 0%,
          transparent 40%);
    }

    .granola-strip {
      position: relative;
      margin-top: 4rem;
      border-radius: 24px;
      overflow: hidden;
      height: 380px;
    }

    .granola-strip-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
    }

    .granola-strip-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(30, 61, 47, 0.75) 0%, rgba(30, 61, 47, 0.2) 60%, transparent 100%);
      display: flex;
      align-items: center;
      padding: 3rem 3.5rem;
    }

    .granola-strip-text {
      max-width: 480px;
    }

    .granola-strip-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 500;
      color: rgba(245, 237, 224, 0.95);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .granola-strip-attr {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245, 237, 224, 0.6);
    }

    @media(max-width:768px) {
      .granola-strip {
        height: 260px;
        margin-top: 2.5rem;
      }

      .granola-strip-overlay {
        padding: 1.5rem;
      }

      .granola-strip-quote {
        font-size: 1.1rem;
      }
    }

    .vegan-asterisk {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.03em;
      margin-top: 0.5rem;
    }

    .tag-vegan {
      background: rgba(45, 138, 78, 0.1);
      color: #2d8a4e;
      border: 1px solid rgba(45, 138, 78, 0.25);
    }

    /* Why Yava background photo */
    .why-bg-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .why-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .why-bg-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20, 45, 30, 0.88);
    }

    /* Order section photo strip */
    .order-photo-strip {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 200px;
      margin-bottom: 2.5rem;
    }

    .order-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 55%;
      display: block;
    }

    .order-photo-caption {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(30, 61, 47, 0.72) 0%, transparent 65%);
      display: flex;
      align-items: center;
      padding: 2rem 2.5rem;
    }

    .order-photo-caption-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      font-style: italic;
      color: rgba(245, 237, 224, 0.95);
      line-height: 1.3;
    }

    @media(max-width:768px) {
      .order-photo-strip {
        height: 140px;
        margin-bottom: 1.5rem;
      }

      .order-photo-caption-text {
        font-size: 1.2rem;
      }

      .order-photo-caption {
        padding: 1.25rem 1.5rem;
      }
    }

    @media(max-width:768px) {
      .founder-video-section {
        margin-top: 2.5rem;
      }

      .founder-video-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
      }

      .play-icon {
        width: 64px;
        height: 64px;
        font-size: 1.3rem;
      }

      .play-label {
        font-size: 0.75rem;
      }
    }

    /* ── CART SYSTEM ── */
    .cart-section {
      margin-bottom: 1.5rem;
    }

    .cart-section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.875rem;
    }

    .cart-products {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .cart-row {
      background: var(--cream-light);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 1rem 1.1rem;
      transition: border-color 0.2s;
    }

    .cart-row:hover {
      border-color: rgba(30, 61, 47, 0.2);
    }

    .cart-row-top {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .cart-select {
      flex: 1;
      padding: 0.65rem 0.875rem;
      font-size: 0.85rem;
      background: white;
    }

    .cart-remove-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: none;
      border: 1.5px solid var(--border);
      color: var(--text-muted);
      font-size: 0.85rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .cart-remove-btn:hover {
      border-color: #c0392b;
      color: #c0392b;
      background: rgba(192, 57, 43, 0.05);
    }

    .cart-row-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-row-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--forest);
    }

    .add-item-btn {
      width: 100%;
      margin-top: 0.875rem;
      background: transparent;
      border: 1.5px dashed rgba(30, 61, 47, 0.3);
      border-radius: 12px;
      padding: 0.75rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--forest);
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.05em;
    }

    .add-item-btn:hover {
      border-color: var(--forest);
      background: rgba(30, 61, 47, 0.04);
    }

    .summary-box {
      background: rgba(30, 61, 47, 0.04);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      margin-bottom: 1.25rem;
      border: 1px solid var(--border);
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-mid);
      padding: 0.3rem 0;
      border-bottom: 1px solid var(--border);
    }

    .summary-row:last-child {
      border-bottom: none;
    }

    .summary-row span:last-child {
      font-weight: 500;
      color: var(--forest);
    }

    @media(max-width:768px) {
      .cart-row-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .cart-row-price {
        align-self: flex-end;
      }
    }

    /* ── NAV CART BUTTON ── */
    .nav-cart-btn {
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 1.2rem;
      transition: transform 0.2s;
    }

    .nav-cart-btn:hover {
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -2px;
      right: -4px;
      background: var(--ochre);
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 0.65rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Jost', sans-serif;
      animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes badgePop {
      from {
        transform: scale(0);
      }

      to {
        transform: scale(1);
      }
    }

    /* ── ADD TO CART BUTTON ── */
    .add-to-cart-btn {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: var(--forest);
      color: var(--cream);
      border: none;
      border-radius: 100px;
      padding: 0.5rem 0.875rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .add-to-cart-btn:hover {
      background: var(--forest-light);
      transform: translateY(-1px);
    }

    .add-to-cart-btn.added {
      background: var(--ochre);
    }

    .atc-icon {
      font-size: 1rem;
      line-height: 1;
    }

    /* ── CART BACKDROP ── */
    .cart-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 299;
      backdrop-filter: blur(3px);
    }

    .cart-backdrop.open {
      display: block;
    }

    /* ── CART DRAWER ── */
    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 420px;
      max-width: 95vw;
      background: var(--cream-light);
      z-index: 300;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -8px 0 40px rgba(30, 61, 47, 0.15);
    }

    .cart-drawer.open {
      transform: translateX(0);
    }

    .cart-drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 1.75rem 1.25rem;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }

    .cart-drawer-title {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .cart-item-count {
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    .cart-close-btn {
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .cart-close-btn:hover {
      border-color: var(--forest);
      color: var(--forest);
    }

    .cart-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 1.25rem 1.75rem;
    }

    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 3rem 0;
      text-align: center;
    }

    .cart-shop-cta {
      margin-top: 1.75rem;
      background: var(--forest);
      color: var(--cream);
      border: none;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.22s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .cart-shop-cta:hover {
      background: var(--forest-light);
      transform: translateY(-1px);
    }

    .cart-shop-cta:active {
      transform: translateY(0);
    }

    /* ── CART LINE ITEMS ── */
    .cart-line-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }

    .cart-line-item:last-child {
      border-bottom: none;
    }

    .cli-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .cli-info {
      flex: 1;
      min-width: 0;
    }

    .cli-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.3;
      margin-bottom: 0.2rem;
    }

    .cli-unit-price {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .cli-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .cli-qty-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: white;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.18s;
      color: var(--forest);
      font-weight: 500;
    }

    .cli-qty-btn:hover {
      border-color: var(--forest);
      background: var(--forest);
      color: white;
    }

    .cli-qty-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--forest);
      min-width: 22px;
      text-align: center;
    }

    .cli-line-total {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--forest);
      min-width: 56px;
      text-align: right;
    }

    .cli-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 0.85rem;
      padding: 0.25rem;
      transition: color 0.2s;
    }

    .cli-remove:hover {
      color: #c0392b;
    }

    /* ── CART FOOTER ── */
    .cart-drawer-footer {
      padding: 1.25rem 1.75rem 1.75rem;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
      background: var(--cream-light);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.1rem;
    }

    .cart-total-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--forest);
    }

    .cart-checkout-btn {
      width: 100%;
      background: var(--forest);
      color: var(--cream);
      border: none;
      padding: 1rem;
      border-radius: 100px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.22s;
    }

    .cart-checkout-btn:hover {
      background: var(--forest-light);
      transform: translateY(-1px);
    }

    /* ── CHECKOUT MODAL ── */
    .checkout-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 400;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      padding: 1rem;
    }

    .checkout-overlay.open {
      display: flex;
    }

    .checkout-modal {
      background: var(--cream-light);
      border-radius: 24px;
      width: 100%;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 2rem 2.25rem;
      animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .checkout-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
    }

    .checkout-order-summary {
      background: rgba(30, 61, 47, 0.04);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1rem 1.25rem;
      margin-bottom: 1.5rem;
    }

    .checkout-summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--text-mid);
      padding: 0.3rem 0;
      border-bottom: 1px solid var(--border);
    }

    .checkout-summary-row:last-child {
      border-bottom: none;
    }

    .checkout-summary-row span:last-child {
      font-weight: 500;
      color: var(--forest);
    }

    .checkout-fields {
      margin-bottom: 1.25rem;
    }

    .checkout-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 0;
      border-top: 1px solid var(--border);
      margin-bottom: 1rem;
    }

    @media(max-width:480px) {
      .checkout-modal {
        padding: 1.5rem 1.25rem;
        border-radius: 20px 20px 0 0;
        align-self: flex-end;
        max-height: 95vh;
      }

      .checkout-overlay {
        align-items: flex-end;
        padding: 0;
      }
    }

    .cart-continue-btn {
      width: 100%;
      background: transparent;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 0.75rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--forest);
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 0.6rem;
    }

    .cart-continue-btn:hover {
      border-color: var(--forest);
      background: rgba(30, 61, 47, 0.04);
    }

    .quick-add-divider {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 1.5rem 0 1rem;
    }

    .quick-add-divider span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .quick-add-divider::before,
    .quick-add-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .quick-add-grid {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .quick-add-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      background: white;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      transition: border-color 0.2s;
    }

    .quick-add-row:hover {
      border-color: rgba(30, 61, 47, 0.2);
    }

    .quick-add-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .quick-add-info {
      flex: 1;
      min-width: 0;
    }

    .quick-add-name {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .quick-add-price {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .quick-add-btn {
      background: var(--forest);
      color: white;
      border: none;
      border-radius: 100px;
      padding: 0.35rem 0.85rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .quick-add-btn:hover {
      background: var(--forest-light);
    }

    .quick-add-btn.in-cart {
      background: var(--ochre);
    }

    /* ── Scroll Reveal Animations ────────────────────────────── */
    .reveal {
      opacity: 0;
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }

    .reveal.reveal-up {
      transform: translateY(30px);
    }

    .reveal.reveal-down {
      transform: translateY(-30px);
    }

    .reveal.reveal-left {
      transform: translateX(-30px);
    }

    .reveal.reveal-right {
      transform: translateX(30px);
    }

    .reveal.reveal-scale {
      transform: scale(0.95);
    }

    .reveal.active {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    /* Staggering delays */
    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }

    /* Parallax subtle effect */
    .parallax-subtle {
      transition: transform 0.1s ease-out;
    }
