  :root{
    --cream:#f8f3ea;
    --cream-2:#f1e9d8;
    --brown-dark:#3d2f24;
    --brown:#6b5644;
    --terracotta:#c1653b;
    --terracotta-dark:#a34f2a;
    --sage:#7c8b6f;
    --sage-light:#a9b79a;
    --gold:#b98b45;
    --line:#e2d6bf;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Jost', sans-serif;
    color:var(--brown-dark);
    background:var(--cream);
    line-height:1.6;
    font-weight:300;
  }
  h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
    color:var(--brown-dark);
    letter-spacing:0.3px;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1140px; margin:0 auto; padding:0 24px;}

  /* SCROLL REVEAL */
  .reveal{opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease;}
  .reveal.revealed{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1; transform:none; transition:none;}
  }
  section{padding:90px 0;}
  .eyebrow{
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    color:var(--terracotta-dark);
    font-weight:500;
    margin-bottom:14px;
    display:block;
  }

  /* HEADER */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(248,243,234,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 24px; max-width:1140px; margin:0 auto;
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    font-family:'Cormorant Garamond', serif;
    font-size:26px; font-weight:700;
    color:var(--brown-dark);
  }
  .logo span{color:var(--terracotta); margin:0 3px;}
  .brand-mark{flex-shrink:0; display:block;}
  .brand-mark circle, .brand-mark line{vector-effect:non-scaling-stroke;}
  .nav-links{
    display:flex; gap:34px; list-style:none;
    font-size:14px; letter-spacing:0.5px; text-transform:uppercase;
  }
  .nav-links a{ position:relative; padding-bottom:4px; transition:color .2s;}
  .nav-links a:hover{color:var(--terracotta-dark);}
  .nav-cta{
    background:var(--brown-dark); color:var(--cream);
    padding:10px 22px; border-radius:30px; font-size:13px;
    letter-spacing:0.5px; text-transform:uppercase;
    transition:background .2s;
  }
  .nav-cta:hover{background:var(--terracotta-dark);}
  .menu-toggle{display:none; font-size:26px; background:none; border:none; cursor:pointer; color:var(--brown-dark);}

  /* HERO */
  .hero{
    position:relative;
    padding:110px 0 100px;
    background:
      radial-gradient(circle at 85% 20%, rgba(193,101,59,0.12), transparent 45%),
      radial-gradient(circle at 10% 80%, rgba(124,139,111,0.15), transparent 45%),
      var(--cream-2);
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:stretch;
  }
  .hero h1{
    font-size:56px; line-height:1.08; margin-bottom:22px;
  }
  .hero h1 em{font-style:italic; color:var(--terracotta-dark);}
  .hero p{font-size:17px; color:var(--brown); max-width:460px; margin-bottom:34px;}
  .btn-row{display:flex; gap:16px; flex-wrap:wrap;}
  .btn{
    display:inline-block; padding:15px 32px; border-radius:32px;
    font-size:13px; letter-spacing:1px; text-transform:uppercase; font-weight:500;
    transition:all .25s;
  }
  .btn-primary{background:var(--terracotta); color:#fff;}
  .btn-primary:hover{background:var(--terracotta-dark); transform:translateY(-2px);}
  .btn-outline{border:1.5px solid var(--brown-dark); color:var(--brown-dark);}
  .btn-outline:hover{background:var(--brown-dark); color:var(--cream);}

  .hero-visual{
    position:relative; border-radius:14px;
    overflow:hidden; min-height:420px;
    box-shadow:0 30px 60px -20px rgba(61,47,36,0.35);
  }
  .hero-visual img{width:100%; height:100%; object-fit:cover; display:block;}

  .trust-strip{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    background:var(--cream);
  }
  .trust-strip .wrap{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px;
    padding:26px 24px; font-size:13px; letter-spacing:1px; text-transform:uppercase;
    color:var(--brown); text-align:center;
  }
  .trust-strip span{font-weight:500;}

  /* SECTION HEADS */
  .section-head{max-width:600px; margin:0 auto 56px; text-align:center;}
  .section-head h2{font-size:38px; margin-bottom:14px;}
  .section-head p{color:var(--brown); font-size:15.5px;}

  /* PRODUCTS */
  .products{background:var(--cream);}
  .product-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:32px;
  }
  .product-card{
    background:var(--cream-2); border-radius:18px; overflow:hidden;
    border:1px solid var(--line); transition:transform .25s, box-shadow .25s;
    display:block; cursor:pointer;
  }
  .product-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px -20px rgba(61,47,36,0.25);}
  .product-media{
    height:200px; display:flex; align-items:center; justify-content:center;
    background:radial-gradient(circle at 50% 38%, #fffdf8 0%, #f2e9d6 65%, #e7dabd 100%);
    position:relative;
  }
  .product-media svg{
    width:96px; height:116px;
    filter:drop-shadow(0 12px 16px rgba(61,47,36,0.18));
  }
  .ic-soap{color:var(--gold);}
  .ic-beard{color:var(--brown);}
  .ic-rollon{color:var(--terracotta-dark);}
  .ic-salts{color:var(--sage);}
  .ic-oils{color:#a8763f;}
  .ic-candle{color:var(--terracotta);}
  .ic-toner{color:#6f8f6a;}
  .ic-salve{color:#8a5a3b;}
  .product-media.photo{padding:0; background:#dfe3d6;}
  .product-media.photo svg{width:100%; height:100%; filter:none;}
  .product-media.photo img{width:100%; height:100%; object-fit:cover; display:block;}
  .product-media.photo.contain{background:#2b1d14;}
  .product-media.photo.contain img{object-fit:contain; padding:0;}
  .product-media.photo.white{background:#ffffff; overflow:hidden;}
  .product-media.photo.white img{object-fit:contain; object-position:center; padding:0; transform:scale(1.3);}
  .product-media.photo.mint{background:#c3d6ae;}
  .product-media.photo.mint img{object-fit:contain; object-position:center; padding:0;}
  .product-media.photo.dark{background:#14121c; overflow:hidden;}
  .product-media.photo.dark img{object-fit:contain; object-position:center; padding:0; transform:scale(1.35);}
  .product-media.photo.lavender{background:#cccedd; overflow:hidden;}
  .product-media.photo.lavender img{object-fit:contain; object-position:center; padding:0; transform:scale(1.22);}
  .product-media.photo.woodgray{background:#b2b8b9;}
  .product-media.photo.woodgray img{object-fit:cover; object-position:center 35%;}
  .product-media.photo.marble{background:#dcdbe0;}
  .product-media.photo.marble img{object-fit:cover; object-position:center 60%;}
  .bundle-collage{
    padding:0; background:#dfe3d6; display:grid; overflow:hidden;
    grid-template-columns:1.3fr 1fr; grid-template-rows:1fr 1fr; gap:4px;
  }
  .bundle-collage img{width:100%; height:100%; object-fit:cover; display:block;}
  .bundle-collage img:nth-child(1){grid-row:1 / 3; grid-column:1;}
  .bundle-collage img:nth-child(2){grid-row:1; grid-column:2;}
  .bundle-collage img:nth-child(3){grid-row:2; grid-column:2;}
  .product-body{padding:24px 26px 28px;}
  .product-body h3{font-size:22px; margin-bottom:8px;}
  .product-body p{font-size:14.5px; color:var(--brown); margin-bottom:14px;}
  .product-tag{
    display:inline-block; font-size:11.5px; letter-spacing:1px; text-transform:uppercase;
    color:var(--terracotta-dark); font-weight:500;
  }

  /* WHY NATURAL */
  .why{
    background:var(--brown-dark); color:var(--cream);
  }
  .why .section-head h2, .why .section-head p{color:var(--cream);}
  .why .section-head p{color:#d9cfc2;}
  .why-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:30px;
  }
  .why-item{text-align:center; padding:0 10px;}
  .why-icon{
    width:72px; height:72px; border-radius:50%;
    background:rgba(185,139,69,0.14); border:1px solid rgba(185,139,69,0.4);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px; color:var(--gold);
  }
  .why-icon svg{width:46px; height:46px; display:block;}
  .why-item h4{color:var(--cream); font-size:19px; margin-bottom:8px;}
  .why-item p{font-size:14px; color:#cfc4b5;}

  /* FAQ */
  .faq{background:var(--cream);}
  .faq-list{max-width:760px; margin:0 auto;}
  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    width:100%; display:flex; align-items:center; justify-content:space-between;
    gap:20px; padding:22px 4px; background:none; border:none; cursor:pointer;
    text-align:left; font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--brown-dark);
  }
  .faq-toggle{
    flex-shrink:0; width:28px; height:28px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--terracotta-dark);
    transition:transform 0.25s ease;
  }
  .faq-item.open .faq-toggle{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height 0.3s ease, opacity 0.25s ease; opacity:0;
  }
  .faq-a p{padding:0 4px 22px; font-size:15px; color:var(--brown); line-height:1.65; max-width:640px;}
  .faq-item.open .faq-a{max-height:220px; opacity:1;}

  /* BEHIND THE SCENES */
  .bts-section{padding:70px 0 90px;}
  .bts-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
  }
  .bts-item{
    position:relative; display:block; aspect-ratio:1/1; border-radius:14px;
    overflow:hidden; background:var(--cream-2);
  }
  .bts-item img{width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease;}
  .bts-item:hover img{transform:scale(1.06);}
  .bts-overlay{
    position:absolute; inset:0; background:rgba(61,47,36,0.6);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
    color:var(--cream); opacity:0; transition:opacity 0.25s ease;
  }
  .bts-overlay span{font-size:13.5px; letter-spacing:0.5px;}
  .bts-item:hover .bts-overlay{opacity:1;}
  .bts-cta{text-align:center; margin-top:44px;}
  .bts-cta .btn{display:inline-block;}

  /* STORY */
  .story{background:var(--cream-2);}
  .story-grid{
    display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:center;
  }
  .story-visual{
    aspect-ratio:4/5; border-radius:20px;
    overflow:hidden;
    box-shadow:0 30px 50px -25px rgba(61,47,36,0.35);
  }
  .story-visual img{width:100%; height:100%; object-fit:cover; display:block;}
  .story-text .eyebrow{margin-bottom:12px;}
  .story-text h2{font-size:36px; margin-bottom:20px;}
  .story-text p{color:var(--brown); margin-bottom:16px; font-size:15.5px;}

  /* TESTIMONIALS */
  .testimonials{background:var(--cream);}
  .t-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
  .t-card{
    background:var(--cream-2); border-radius:16px; padding:30px 26px;
    border:1px solid var(--line);
  }
  .t-stars{color:var(--gold); margin-bottom:14px; letter-spacing:2px;}
  .t-card p{font-size:14.5px; color:var(--brown); margin-bottom:18px; font-style:italic;}
  .t-name{font-weight:500; font-size:14px; color:var(--brown-dark);}

  /* NEWSLETTER */
  .newsletter{
    background:var(--sage); color:#fff; text-align:center;
  }
  .newsletter h2{color:#fff; font-size:34px; margin-bottom:12px;}
  .newsletter p{color:#eef0e9; margin-bottom:30px; font-size:15px;}
  .nl-form{
    display:flex; justify-content:center; gap:12px; max-width:460px; margin:0 auto; flex-wrap:wrap;
  }
  .nl-form input[type=email]{
    flex:1; min-width:220px; padding:15px 20px; border-radius:30px; border:none;
    font-size:14px; font-family:'Jost',sans-serif;
  }
  .nl-form button{
    background:var(--brown-dark); color:#fff; border:none; padding:15px 30px;
    border-radius:30px; font-size:13px; letter-spacing:1px; text-transform:uppercase;
    cursor:pointer; transition:background .2s;
  }
  .nl-form button:hover{background:var(--terracotta-dark);}

  /* CONTACT */
  .contact{background:var(--cream-2);}
  .contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px;}
  .contact-info h2{font-size:34px; margin-bottom:18px;}
  .contact-info p{color:var(--brown); margin-bottom:26px; font-size:15px;}
  .info-row{display:flex; gap:14px; margin-bottom:18px; font-size:14.5px;}
  .info-row .ic{color:var(--terracotta-dark); font-weight:600;}
  .form-card{
    background:var(--cream); border-radius:18px; padding:36px;
    border:1px solid var(--line);
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
  .form-card input, .form-card textarea{
    width:100%; padding:13px 16px; border-radius:10px; border:1px solid var(--line);
    font-family:'Jost',sans-serif; font-size:14px; background:#fff; color:var(--brown-dark);
  }
  .form-card textarea{margin-bottom:18px; min-height:110px; resize:vertical;}
  .form-card label{font-size:12.5px; letter-spacing:0.5px; text-transform:uppercase; color:var(--brown); margin-bottom:6px; display:block;}
  .form-card .btn-primary{border:none; cursor:pointer; width:100%;}
  .form-note{font-size:12.5px; color:var(--brown); opacity:0.75; margin-top:10px; text-align:center;}

  /* FOOTER */
  footer{background:var(--brown-dark); color:#d9cfc2; padding:60px 0 30px;}
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px;
  }
  .footer-logo{margin-bottom:18px;}
  .footer-logo-img{width:220px; max-width:100%; height:auto; border-radius:8px; display:block;}
  .footer-grid p{font-size:14px; max-width:280px;}
  .footer-col h4{color:#fff; font-size:15px; margin-bottom:16px; font-weight:500;}
  .footer-col ul{list-style:none;}
  .footer-col li{margin-bottom:10px; font-size:13.5px;}
  .footer-col a:hover{color:#fff;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12); padding-top:24px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-size:12.5px; color:#b5a998;
  }

  /* BREADCRUMB (product detail pages) */
  .breadcrumb{font-size:13px; color:var(--brown); display:inline-block; margin:28px 0 0;}
  .breadcrumb a{color:var(--terracotta-dark);}
  .breadcrumb a:hover{text-decoration:underline;}

  /* PRODUCT DETAIL */
  .product-hero{padding:36px 0 90px;}
  .product-detail-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; margin-top:24px;
  }
  .product-media.detail{height:480px; border-radius:18px; box-shadow:0 30px 50px -25px rgba(61,47,36,0.3);}
  .product-detail-info .product-tag{margin-bottom:14px;}
  .product-detail-info h1{font-size:42px; margin-bottom:16px;}
  .detail-desc{color:var(--brown); font-size:15.5px; margin-bottom:28px; max-width:520px;}
  .price-row{
    font-family:'Cormorant Garamond', serif; font-size:38px; font-weight:600;
    color:var(--terracotta-dark); margin-bottom:6px;
  }
  .price-note{font-size:13px; color:var(--brown); margin-bottom:24px;}
  .size-label{
    text-transform:uppercase; letter-spacing:1px; font-size:12.5px;
    color:var(--brown); font-weight:500; margin-bottom:12px; display:block;
  }
  .size-options{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px;}
  .size-btn{
    padding:13px 22px; border-radius:30px; border:1.5px solid var(--line);
    background:#fff; font-size:14px; cursor:pointer; transition:all .2s;
    font-family:'Jost',sans-serif; color:var(--brown-dark);
  }
  .size-btn:hover{border-color:var(--terracotta);}
  .size-btn.active{background:var(--brown-dark); color:var(--cream); border-color:var(--brown-dark);}
  .detail-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px;}
  .detail-meta{
    padding:24px; background:var(--cream-2); border-radius:14px;
    border:1px solid var(--line); margin-bottom:20px;
  }
  .detail-meta h4{font-size:15.5px; margin-bottom:8px;}
  .detail-meta p{font-size:14px; color:var(--brown); margin:0;}
  .detail-meta + .detail-meta{margin-top:-4px;}
  .detail-warning{
    background:#fbeee6; border:1px solid var(--terracotta);
  }
  .detail-warning h4{color:var(--terracotta-dark);}
  .detail-warning p{color:var(--terracotta-dark);}

  /* RESPONSIVE */
  @media(max-width:900px){
    .hero-grid, .story-grid, .contact-grid{grid-template-columns:1fr;}
    .hero-visual{order:-1; max-width:340px; aspect-ratio:1/1; min-height:0; margin:0 auto;}
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr); row-gap:36px;}
    .t-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .hero h1{font-size:42px;}
    .product-detail-grid{grid-template-columns:1fr;}
    .product-media.detail{height:360px;}
    .bts-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media(max-width:640px){
    .nav-links{
      position:fixed; top:66px; left:0; right:0; background:var(--cream);
      flex-direction:column; padding:20px 24px; gap:0; border-bottom:1px solid var(--line);
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links li{width:100%; padding:14px 0; border-bottom:1px solid var(--line);}
    .menu-toggle{display:block;}
    .nav-cta{display:none;}
    .product-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;}
    section{padding:60px 0;}
    .hero{padding:70px 0 60px;}
    .product-detail-info h1{font-size:32px;}
  }
