*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:         #ffffff;
      --bg-soft:    #F9F9F7;
      --accent:     #C8975A;
      --text:       #1A1A1A;
      --text-muted: #888880;
      --border:     #EBEBEB;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    /* ═══════════════════════════
       NAVBAR
    ═══════════════════════════ */
    nav {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .logo-badge {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-style: italic; font-size: 14px;
      color: var(--accent); flex-shrink: 0;
    }

    /* Desktop nav links — hidden by default (mobile first) */
    .nav-links {
      display: none;
      gap: 24px;
      list-style: none;
    }

    .nav-links a {
      font-size: 11px; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted); text-decoration: none;
      white-space: nowrap; transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-right {
      display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    }

    .cart-btn {
      background: var(--text); color: #fff; border: none;
      padding: 8px 14px;
      font-family: 'Jost', sans-serif; font-size: 11px;
      font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      cursor: pointer; border-radius: 2px; white-space: nowrap;
      transition: opacity 0.2s;
    }

    .cart-btn:hover { opacity: 0.82; }

    /* Hamburger — visible on mobile only */
    .hamburger {
      display: flex; flex-direction: column;
      justify-content: center; gap: 5px;
      width: 36px; height: 36px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }

    .hamburger span {
      display: block; height: 1.5px;
      background: var(--text); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile slide-down menu ── */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 8px 20px 20px;
      position: sticky;
      top: 64px;
      z-index: 199;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 13px; font-weight: 400;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-muted); text-decoration: none;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }

    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--text); }

    /* ═══════════════════════════
       HERO  (mobile: stacked)
    ═══════════════════════════ */
    .hero {
      background: #fff;
      padding: 44px 20px 40px;
    }

    .hero-eyebrow {
      font-size: 11px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 14px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 34px; line-height: 1.15; font-weight: 600;
      color: var(--text); margin-bottom: 16px;
    }

    .hero-title em { font-style: italic; }

    .hero-desc {
      font-size: 15px; font-weight: 300; line-height: 1.75;
      color: var(--text-muted); margin-bottom: 28px;
    }

    .hero-cta {
      display: inline-block;
      border: 1px solid var(--text); padding: 12px 28px;
      font-family: 'Jost', sans-serif; font-size: 11px;
      font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text); background: transparent;
      cursor: pointer; border-radius: 2px;
      transition: background 0.2s, color 0.2s;
    }

    .hero-cta:hover { background: var(--text); color: #fff; }

    /* Visual panel — hidden on mobile, shown on desktop via media query */
    .hero-visual-panel { display: none; }

    /* ═══════════════════════════
       INFO STRIP
    ═══════════════════════════ */
    .strip {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 11px 20px;
      display: flex; gap: 20px;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .strip::-webkit-scrollbar { display: none; }

    .strip-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
    }

    .strip-dot { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; }

    /* ═══════════════════════════
       PRODUCTS
    ═══════════════════════════ */
    .section { padding: 44px 20px; background: #fff; }

    .section-header { margin-bottom: 28px; }

    .section-label {
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent); display: block; margin-bottom: 8px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 600; color: var(--text);
    }

    /* Mobile: 1 col */
    .prod-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

    /* No border, no card shell — just image + text */
    .prod-card { cursor: pointer; }

    .prod-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--bg-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 72px;
    }

    .prod-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }

    .prod-card:hover .prod-img img { transform: scale(1.03); }

    /* Minimal text below image, no padding sides */
    .prod-body { padding: 14px 0 0; }

    .prod-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px;
    }

    .prod-footer {
      display: flex; align-items: center;
      justify-content: space-between; gap: 10px;
    }

    .prod-price { font-size: 14px; font-weight: 400; color: var(--text-muted); }

    /* Underline-only button, no box */
    .prod-btn {
      font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; border: none;
      border-bottom: 1px solid var(--text);
      padding: 2px 0; background: transparent; color: var(--text);
      cursor: pointer; transition: opacity 0.2s;
    }

    .prod-btn:hover { opacity: 0.55; }

    /* ═══════════════════════════
       STORY
    ═══════════════════════════ */
    .story {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 44px 20px;
    }

    .story-eyebrow {
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 12px;
    }

    .story-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px; line-height: 1.2; color: var(--text); margin-bottom: 14px;
    }

    .story-text {
      font-size: 14px; font-weight: 300; line-height: 1.75;
      color: var(--text-muted); margin-bottom: 36px;
    }

    .story-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }

    .stat { text-align: center; }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 34px; font-weight: 600; color: var(--text);
    }

    .stat-label {
      font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-muted); margin-top: 4px;
    }

    /* ═══════════════════════════
       FOOTER
    ═══════════════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 20px; background: #fff;
      display: flex; flex-direction: column;
      align-items: center; gap: 18px; text-align: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text);
    }

    .footer-links {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 14px 20px; list-style: none;
    }

    .footer-links a {
      font-size: 12px; color: var(--text-muted);
      text-decoration: none; transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-copy { font-size: 12px; color: var(--text-muted); }

    /* ═══════════════════════════════════════
       TABLET  ≥ 640px
    ═══════════════════════════════════════ */
    @media (min-width: 640px) {
      nav { padding: 0 36px; }

      .hero { padding: 56px 36px; }
      .hero-title { font-size: 42px; }

      .strip { padding: 12px 36px; justify-content: center; overflow-x: visible; }

      .section { padding: 56px 36px; }
      .section-title { font-size: 28px; }
      .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

      .story { padding: 56px 36px; }
      .story-title { font-size: 30px; }
      .stat-num { font-size: 38px; }

      footer {
        flex-direction: row; justify-content: space-between;
        text-align: left; padding: 28px 36px;
      }
    }

    /* ═══════════════════════════════════════
       DESKTOP  ≥ 1024px
    ═══════════════════════════════════════ */
    @media (min-width: 1024px) {
      nav { padding: 0 48px; height: 68px; }

      /* Show desktop links, hide hamburger */
      .nav-links { display: flex; }
      .hamburger { display: none; }

      /* Hero: 2 columns */
      .hero {
        display: grid; grid-template-columns: 1fr 1fr;
        padding: 0; min-height: 420px;
      }

      .hero-left {
        padding: 70px 56px;
        display: flex; flex-direction: column; justify-content: center;
        border-right: 1px solid var(--border);
      }

      .hero-title { font-size: 48px; }
      .hero-desc { max-width: 340px; }

      .hero-visual-panel {
        display: flex; align-items: center; justify-content: center;
        background: var(--bg-soft); padding: 40px;
      }

      .hero-visual {
        width: 220px; height: 220px; border-radius: 50%;
        background: #fff; border: 1px solid var(--border);
        display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 8px;
      }

      .hero-visual-icon { font-size: 64px; }

      .hero-visual-text {
        font-family: 'Playfair Display', serif;
        font-size: 12px; font-style: italic; color: var(--text-muted);
      }

      .strip { padding: 13px 48px; }

      .section { padding: 64px 48px; }
      .section-title { font-size: 30px; }
      .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

      /* Story: 2 columns */
      .story {
        display: grid; grid-template-columns: 1fr 1fr; padding: 0;
      }

      .story-left {
        padding: 64px 56px;
        border-right: 1px solid var(--border);
      }

      /* On desktop, hide inline stats from left col; show dedicated right col */
      .story-stats-inline { display: none; }

      .story-right {
        display: flex; align-items: center; justify-content: center;
        padding: 64px 56px;
      }

      .story-stats { gap: 32px; }
      .stat-num { font-size: 40px; }

      footer { padding: 36px 48px; }
    }