
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F2EDE4;
    --dark: #1C1410;
    --brown: #3D2510;
    --rust: #A8442A;
    --rust-light: #C25A3A;
    --gold: #C49A5A;
    --green: #3D5240;
    --text-muted: #6B5B4E;
    --border: rgba(60,35,15,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease, height 0.3s cubic-bezier(0.16,1,0.3,1);
  }

  nav.scrolled:hover {
    height: 74px;
  }

  nav.scrolled {
    background: rgba(252,249,244,0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 3px;
  }

  .nav-logo-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .nav-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    line-height: 1;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: relative;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.5s ease;
    display: block;
    padding-bottom: 4px;
  }

  .nav-links a:hover { color: #fff; }

  nav.scrolled .nav-links a { color: var(--dark); }
  nav.scrolled .nav-links a:hover { color: var(--rust); }

  nav.scrolled .nav-logo {
    color: var(--dark);
  }

  nav.scrolled .nav-logo-sub {
    color: var(--dark);
  }

  nav.scrolled .nav-logo-name {
    color: var(--dark);
  }

  .nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--rust);
    border-radius: 2px;
    transition: left 0.25s cubic-bezier(0.4,0,0.2,1), width 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    opacity: 0;
    pointer-events: none;
  }

  .btn-waitlist {
    background: var(--rust);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    border-radius: 8px;
  }

  .btn-waitlist:hover { background: var(--rust-light); }

  /* HERO */
  .hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    filter: brightness(0.55);
    transform: scale(1.15) translateY(0px);
    will-change: transform;
    overflow: hidden;
  }

  .hero-placeholder,
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 24px;
    
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(75px, 11.5vw, 138px);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .hero-content p {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.55;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .hero-brew-note {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
  }

  .hero-form {
    display: flex;
    gap: 10px;
    max-width: 368px;
    margin: 0 auto 14px;
  }

  .hero-form input {
    flex: 1;
    padding: 9px 16px;
    border: none;
    background: rgba(255,255,255,0.92);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: var(--dark);
    outline: none;
    border-radius: 8px;
  }

  .hero-form input::placeholder { color: #aaa; }

  .hero-form button {
    background: var(--rust);
    color: #fff;
    border: none;
    padding: 9px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
    letter-spacing: 0.02em;
    border-radius: 8px;
  }

  .hero-form button:hover {
    background: var(--rust-light);
    transform: scale(1.07);
    opacity: 0.9;
  }

  .hero-content .hero-note {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
  }

  /* SECTIONS */
  section { padding: 100px 48px; }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    text-align: center;
    color: var(--dark);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
  }

  #why .section-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 60px;
    font-weight: 600;
    font-style: normal;
  }

  /* WHY WARDA */
  #why {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1472px;
    margin: 0 auto;
    padding: 0;
  }

  .why-card {
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    position: relative;
    cursor: default;
  }

  .why-card:hover {
    z-index: 10;
    box-shadow: 0 28px 64px rgba(0,0,0,0.2);
  }

  .why-card:hover .why-card-img {
    transform: scale(1.07);
  }

  .why-card-body { transition: background 0.4s; }

  .why-card:hover .why-card-body {
    background: #fdf9f5;
  }

  .why-card h3 { transition: color 0.3s; }

  .why-card:hover h3 {
    color: var(--rust);
  }

  .why-card-img-wrap {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
  }

  .why-card-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }



  .why-card-body { padding: 32px 32px 40px; transition: background 0.4s; }

  .why-card h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
  }

  .why-card p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* PRODUCTS */
  #products { padding: 80px 48px; }

  .product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1472px;
    margin: 0 auto;
  }

  .product-img-wrap {
    background: #EDE8DC;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 500;
    margin-bottom: 16px;
  }

  .product-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--dark);
  }

  .product-title span { color: var(--gold); }

  .product-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 20px 0 28px;
  }

  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--dark);
  }

  .product-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8442A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
  }

  /* INGREDIENT IMMERSION */
  #ingredients { padding: 80px 48px 100px; }

  .ingredient-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1472px;
    margin: 0 auto;
  }

  .ingredient-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--dark);
  }

  .ingredient-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .ingredient-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  /* HERITAGE BANNER */
  .heritage-banner {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .heritage-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/heritage-bg.png');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.45) sepia(0.3);
  }

  .heritage-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .heritage-content-inner {
    max-width: 700px;
  }

  .heritage-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .heritage-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
  }

  .btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 10px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
  }

  /* PERFECT BREW */
  #brew { padding: 100px 48px; }

  .brew-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: -50px;
    margin-bottom: 64px;
  }

  .brew-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1472px;
    margin: 0 auto;
  }

  .brew-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .brew-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 28px;
  }

  .brew-tab {
    background: none;
    border: none;
    padding: 10px 0;
    margin-right: 32px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
  }

  .brew-tab.active { color: var(--rust); }

  .brew-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0; right: 0;
    height: 2px;
    background: var(--rust);
  }

  .brew-panel { display: none; }
  .brew-panel.active { display: block; }

  .brew-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--dark);
  }

  .brew-panel > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .brew-tips {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .brew-tips li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
  }

  .brew-tips li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--green);
    padding: 80px 48px;
    text-align: center;
  }

  .testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: 40px;
  }

  .testimonial-slider {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
  }

  .testimonial-slide {
    display: none;
    background: rgba(255,255,255,0.1);
    padding: 40px 48px;
    border-radius: 4px;
  }

  .testimonial-slide.active { display: block; }

  .testimonial-slide blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    letter-spacing: 0.05em;
  }

  .testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .testimonial-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
  }

  .testimonial-btn:hover { background: rgba(255,255,255,0.15); }

  .testimonial-dots { display: flex; gap: 6px; }

  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
  }

  .testimonial-dot.active { background: #fff; }

  /* FOOTER */
  footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .footer-ig {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-ig:hover { color: var(--rust); }
  .footer-ig svg { width: 18px; height: 18px; }

  /* SCROLL REVEALS */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }

  /* CARD STAGGER */
  .why-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  }

  .why-card.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .why-card.card-visible:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
  }

  .why-card:nth-child(1):not(.card-visible) { transition-delay: 0s; }
  .why-card:nth-child(2):not(.card-visible) { transition-delay: 0.15s; }
  .why-card:nth-child(3):not(.card-visible) { transition-delay: 0.3s; }

  /* HAMBURGER — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    order: 3;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* RESPONSIVE — 900px */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .btn-waitlist { display: none; }

    nav.nav-open .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: rgba(28,20,16,0.97);
      padding: 8px 24px 24px;
      gap: 0;
      z-index: 99;
    }
    nav.nav-open .nav-links li { width: 100%; list-style: none; }
    nav.nav-open .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    section { padding: 64px 24px; }

    /* Hero */
    .hero-content p { font-size: 18px; }
    .hero-brew-note { font-size: 15px; }
    .hero-form { flex-direction: column; max-width: 360px; margin-left: auto; margin-right: auto; }
    .hero-form input, .hero-form button { width: 100%; border-radius: 6px; }

    /* Why Warda */
    #why .section-title { font-size: 40px; }
    .why-grid { grid-template-columns: 1fr; max-width: 460px; }
    .why-card-img { height: 280px; }
    .why-card-body { padding: 20px 20px 28px; }
    .why-card h3 { font-size: 22px; }

    /* Products */
    .product-row { grid-template-columns: 1fr; gap: 40px; }
    .product-title { font-size: clamp(32px, 8vw, 48px); }

    /* Ingredient */
    .ingredient-row { grid-template-columns: 1fr; gap: 40px; }

    /* Heritage */
    .heritage-banner { height: auto; min-height: 380px; padding: 80px 0; }
    .heritage-content { padding: 0 24px; max-width: 100%; }
    .heritage-content-inner { max-width: 100%; }

    /* Brew */
    .brew-layout { grid-template-columns: 1fr; gap: 40px; }
    .brew-tab { margin-right: 16px; font-size: 13px; }
    .brew-panel h3 { font-size: 24px; }

    /* Testimonials */
    .testimonials { padding: 64px 24px; }
    .testimonial-slide blockquote { padding: 24px; font-size: 18px; }
    .testimonials h2 { font-size: 32px; }

    /* Footer */
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  }

  /* RESPONSIVE — 480px (small phones) */
  @media (max-width: 480px) {
    #why .section-title { font-size: 30px; }
    .why-card-img { height: 220px; }
    .hero-form { max-width: 100%; }
  }

  /* REDUCED MOTION */
  @media (prefers-reduced-motion: reduce) {
    .hero-bg { transform: none !important; transition: none; }
    .why-card { transition: none !important; }
    .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  }
