*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C9A84C;
      --gold-light: #E8D4A0;
      --gold-pale: #F7F0DC;
      --olive-dark: #2A3520;
      --olive-mid: #4A5E38;
      --olive-light: #7A8C6A;
      --cream: #FAF6EE;
      --warm-white: #FFFDF7;
      --text-dark: #1A1A14;
      --text-mid: #4A4A3A;
      --text-muted: #8A8A7A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 4rem;
      background: rgba(255,253,247,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-placeholder {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--olive-mid), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--olive-dark);
      letter-spacing: 0.05em;
    }

    .brand-tagline {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-top: -2px;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
      text-decoration: none;
      font-weight: 400;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--olive-dark);
      color: var(--gold-light) !important;
      padding: 0.6rem 1.4rem !important;
      border-radius: 2px;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 3rem 6rem 4rem;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 2px;
      padding: 0.4rem 1rem;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--olive-mid);
      font-weight: 500;
      margin-bottom: 2rem;
      width: fit-content;
      animation: fadeInUp 0.8s ease both;
    }

    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--olive-dark);
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease 0.1s both;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 420px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      animation: fadeInUp 0.8s ease 0.3s both;
    }

    .btn-primary {
      background: var(--olive-dark);
      color: var(--gold-light);
      padding: 1rem 2.2rem;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      font-weight: 500;
      font-family: 'Jost', sans-serif;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--olive-mid);
      transform: translateY(-2px);
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      transition: color 0.3s;
    }

    .btn-secondary:hover { color: var(--gold); }

    .btn-secondary-arrow {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid currentColor;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      transition: background 0.3s, color 0.3s;
    }

    .btn-secondary:hover .btn-secondary-arrow {
      background: var(--gold);
      color: white;
      border-color: var(--gold);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,168,76,0.2);
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--olive-dark);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ─── HERO RIGHT (Visual) ─── */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold-pale);
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 70%, rgba(74,94,56,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 50%);
    }

    .olive-illustration {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }

    .hero-bottle-card {
      position: relative;
      z-index: 2;
      background: rgba(255,253,247,0.9);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 4px;
      padding: 3rem 2.5rem;
      text-align: center;
      backdrop-filter: blur(4px);
      box-shadow: 0 40px 80px rgba(42,53,32,0.15);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }

    .bottle-emoji { font-size: 5rem; display: block; margin-bottom: 1rem; }

    .bottle-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--olive-dark);
      margin-bottom: 0.3rem;
    }

    .bottle-origin {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .bottle-rating {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-top: 1rem;
      color: var(--gold);
      font-size: 0.9rem;
    }

    /* ─── LEAF DECORATIONS (SVG Background) ─── */
    .deco-leaves {
      position: absolute;
      opacity: 0.08;
      pointer-events: none;
    }

    /* ─── ORIGIN STRIP ─── */
    .origin-strip {
      background: var(--olive-dark);
      color: var(--gold-light);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      overflow: hidden;
    }

    .origin-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-shrink: 0;
    }

    .origin-icon { font-size: 1.1rem; }

    .origin-text {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .origin-sep {
      width: 1px;
      height: 20px;
      background: rgba(201,168,76,0.3);
    }

    /* ─── FEATURES ─── */
    .section {
      padding: 7rem 4rem;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--olive-dark);
      line-height: 1.2;
      max-width: 600px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      margin-top: 4rem;
      background: rgba(201,168,76,0.15);
    }

    .feature-card {
      background: var(--warm-white);
      padding: 3rem 2.5rem;
      transition: background 0.3s;
    }

    .feature-card:hover { background: var(--gold-pale); }

    .feature-icon {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--olive-dark);
      margin-bottom: 0.8rem;
    }

    .feature-desc {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--text-mid);
      font-weight: 300;
    }

    /* ─── TERROIR SECTION ─── */
    .terroir {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 70vh;
    }

    .terroir-visual {
      background: var(--olive-dark);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem;
      overflow: hidden;
    }

    .terroir-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 10%, rgba(74,94,56,0.3) 0%, transparent 50%);
    }

    .terroir-map {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .map-emoji { font-size: 8rem; opacity: 0.9; }

    .terroir-regions {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    .region-badge {
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.4rem 0.9rem;
      border-radius: 2px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .terroir-content {
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--cream);
    }

    .terroir-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      font-style: italic;
      color: var(--olive-dark);
      line-height: 1.5;
      margin: 1.5rem 0 2rem;
      padding-left: 1.5rem;
      border-left: 2px solid var(--gold);
    }

    .terroir-desc {
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--text-mid);
      font-weight: 300;
    }

    /* ─── PRODUCTS ─── */
    .products {
      background: var(--cream);
      padding: 7rem 4rem;
    }

    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .product-card {
      background: var(--warm-white);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(42,53,32,0.12);
    }

    .product-card.featured {
      border-color: var(--gold);
      position: relative;
    }

    .product-badge {
      position: absolute;
      top: 1rem; right: 1rem;
      background: var(--gold);
      color: var(--olive-dark);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      font-weight: 500;
      border-radius: 2px;
    }

    .product-visual {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold-pale);
      font-size: 4.5rem;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--olive-dark);
      margin-bottom: 0.4rem;
    }

    .product-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.2rem;
      font-weight: 300;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--olive-dark);
    }

    .product-price span {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
    }

    .add-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--olive-dark);
      color: var(--gold-light);
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.2s;
    }

    .add-btn:hover {
      background: var(--gold);
      color: var(--olive-dark);
      transform: scale(1.1);
    }

    /* ─── PROCESS ─── */
    .process {
      padding: 7rem 4rem;
      background: var(--warm-white);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 4rem;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .process-step {
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }

    .step-num {
      width: 4rem; height: 4rem;
      border-radius: 50%;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.4);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--gold);
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
      background: var(--warm-white);
    }

    .step-icon { font-size: 1.4rem; margin-bottom: 0.8rem; display: block; }

    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--olive-dark);
      margin-bottom: 0.6rem;
    }

    .step-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials {
      background: var(--olive-dark);
      padding: 7rem 4rem;
      color: var(--gold-pale);
    }

    .testimonials .section-title {
      color: var(--gold-pale);
    }

    .testimonials .section-label { color: var(--gold); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .testimonial-card {
      border: 1px solid rgba(201,168,76,0.2);
      padding: 2.5rem;
      border-radius: 2px;
      background: rgba(255,253,247,0.04);
      transition: border-color 0.3s;
    }

    .testimonial-card:hover { border-color: rgba(201,168,76,0.5); }

    .testimonial-stars {
      color: var(--gold);
      font-size: 0.85rem;
      margin-bottom: 1.2rem;
      letter-spacing: 3px;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--olive-light);
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: var(--gold-pale);
      border-top: 1px solid rgba(201,168,76,0.3);
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding: 6rem 4rem;
      text-align: center;
    }

    .cta-banner .section-title {
      margin: 0 auto 1.5rem;
      text-align: center;
    }

    .cta-banner p {
      font-size: 1rem;
      color: var(--text-mid);
      max-width: 500px;
      margin: 0 auto 2.5rem;
      font-weight: 300;
      line-height: 1.8;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--text-dark);
      color: rgba(255,253,247,0.5);
      padding: 4rem 4rem 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 2rem;
    }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.8;
      margin-top: 1rem;
      font-weight: 300;
    }

    .footer-col h4 {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col a {
      font-size: 0.88rem;
      color: rgba(255,253,247,0.5);
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 300;
    }

    .footer-col a:hover { color: var(--gold-light); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
    }

    .footer-bottom a {
      color: rgba(255,253,247,0.3);
      text-decoration: none;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav { padding: 1.25rem 2rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-right { min-height: 50vh; }
      .hero-left { padding: 4rem 2rem; }
      .terroir { grid-template-columns: 1fr; }
      .features-grid,
      .products-grid,
      .testimonials-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .section { padding: 4rem 2rem; }
    }