/* ==========================================================================
   Fabish — static site stylesheet
   Palette pulled from the original theme: sage green, warm cream, ink black
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root{
  --cream:#FBF7EE;
  --cream-deep:#F3EEE0;
  --sage:#6E8F52;
  --sage-dark:#4F6B3A;
  --sage-pale:#E7EEDF;
  --ink:#201F1A;
  --stone:#847F70;
  --line:#E7DFCE;
  --white:#FFFFFF;

  --font-head:'Outfit', sans-serif;
  --font-body:'DM Sans', sans-serif;

  --max:1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--ink); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:2px solid var(--sage-dark); outline-offset:3px; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 24px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:.95rem;
  padding:14px 28px; border-radius:999px; border:1.5px solid var(--ink);
  background:var(--ink); color:var(--white);
  cursor:pointer; transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ background:var(--sage-dark); border-color:var(--sage-dark); }
.btn--outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--outline:hover{ background:var(--ink); color:var(--white); }
.btn--sage{ background:var(--sage); border-color:var(--sage); }
.btn--sage:hover{ background:var(--sage-dark); border-color:var(--sage-dark); }

/* ---------- Placeholder photo blocks ----------
   Swap these for real <img> tags later. Each one lists the
   recommended crop so replacement is a drop-in job. */
.ph{
  position:relative;
  background:
    linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-deep) 100%);
  border:1px dashed var(--stone);
  border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  min-height:220px;
}
.ph::before{
  content:attr(data-label);
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:500;
  color:var(--stone);
  text-align:center;
  padding:0 20px;
}
.ph--blob{ border-radius:48% 52% 60% 40% / 45% 40% 60% 55%; }

/* ---------- Announcement bar ---------- */
.announce{
  background:var(--ink); color:var(--white);
  text-align:center; font-size:.85rem; padding:10px 20px;
  letter-spacing:.02em;
}

/* ---------- Header ---------- */
.site-header{
  background:var(--cream); border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:18px; gap:24px;
}
.logo{
  font-family:var(--font-head); font-weight:700; font-size:1.5rem;
  color:var(--ink);
}
.logo span{ color:var(--sage); }
.main-nav ul{ display:flex; gap:32px; }
.main-nav a{
  font-size:.95rem; font-weight:500; color:var(--ink);
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:border-color .2s ease, color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{ border-color:var(--sage); }
.header-actions{ display:flex; align-items:center; gap:18px; }
.header-actions a, .header-actions button{
  background:none; border:none; cursor:pointer; color:var(--ink);
  font-family:var(--font-body); font-size:1.1rem; padding:4px;
}
.nav-toggle{ display:none; }

@media (max-width: 860px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:78%; max-width:320px;
    background:var(--white); box-shadow:-8px 0 24px rgba(0,0,0,.08);
    transform:translateX(100%); transition:transform .3s ease;
    padding:90px 28px; z-index:60;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:22px; }
  .nav-toggle{
    display:inline-flex; flex-direction:column; gap:5px; padding:8px;
  }
  .nav-toggle span{ width:22px; height:2px; background:var(--ink); display:block; }
}

/* ---------- Hero ---------- */
.hero{ padding:64px 0 80px; }
.hero .wrap{
  display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:center;
}
.hero-eyebrow{ color:var(--sage-dark); font-weight:700; margin-bottom:14px; }
.hero h1{ font-size:clamp(2.3rem, 4vw, 3.4rem); max-width:11ch; }
.hero p{ max-width:42ch; color:var(--stone); font-size:1.05rem; }
.hero-cta{ display:flex; gap:16px; margin-top:28px; flex-wrap:wrap; }
.hero-art{ aspect-ratio:1/1; }

@media (max-width: 860px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; aspect-ratio:4/3; }
}

/* ---------- Trust strip ---------- */
.trust{ background:var(--sage-pale); padding:28px 0; }
.trust ul{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px;
  text-align:center;
}
.trust li{
  flex:1 1 160px; font-size:.9rem; font-weight:600; color:var(--sage-dark);
}

/* ---------- Section shell ---------- */
.section{ padding:76px 0; }
.section--tight{ padding:56px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:24px; margin-bottom:36px; flex-wrap:wrap;
}
.section-head p{ color:var(--stone); max-width:46ch; margin:8px 0 0; }
.section-head h2{ font-size:clamp(1.6rem,2.6vw,2.2rem); }

/* ---------- Product / collection grid ---------- */
.grid{ display:grid; gap:28px; }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:960px){ .grid--3, .grid--4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .grid--3, .grid--4{ grid-template-columns:1fr; } }

.card{ display:flex; flex-direction:column; gap:14px; }
.card .ph{ aspect-ratio:4/5; }
.card h3{ font-size:1.05rem; margin-bottom:2px; }
.card .price{ color:var(--sage-dark); font-weight:700; }
.card .btn{ margin-top:6px; padding:11px 20px; font-size:.85rem; align-self:flex-start; }

/* Buy button slot — visually matches a product card's CTA; replace the
   comment inside with your Shopify Buy Button embed script per product. */
.buy-button-slot{
  border:1px dashed var(--line); border-radius:12px; padding:10px 14px;
  font-size:.8rem; color:var(--stone); margin-top:6px;
}

/* ---------- Feature / specification blocks ---------- */
.features{ background:var(--white); }
.feature-list{ grid-template-columns:repeat(4,1fr); }
.feature{ text-align:center; }
.feature .ph{ width:64px; height:64px; margin:0 auto 16px; border-radius:50%; min-height:0; }
.feature h4{ font-size:1rem; }
.feature p{ color:var(--stone); font-size:.92rem; }
@media (max-width:760px){ .feature-list{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Promo / deal banner ---------- */
.promo{
  background:var(--sage); color:var(--white); border-radius:28px;
  padding:64px; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.promo h2{ color:var(--white); }
.promo p{ color:rgba(255,255,255,.85); }
.promo .btn{ background:var(--white); color:var(--sage-dark); border-color:var(--white); }
.promo .btn:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.promo .ph{ background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.5); }
.promo .ph::before{ color:rgba(255,255,255,.75); }
@media (max-width:760px){ .promo{ grid-template-columns:1fr; padding:36px; border-radius:20px; } }

/* ---------- Story / video split ---------- */
.story{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.story .ph{ aspect-ratio:4/3; }
@media (max-width:860px){ .story{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.testimonials{ background:var(--cream-deep); }
.t-grid{ grid-template-columns:repeat(3,1fr); }
.t-card{
  background:var(--white); border:1px solid var(--line); border-radius:18px; padding:28px;
}
.t-card p{ font-style:italic; color:var(--ink); }
.t-name{ font-weight:700; font-style:normal; color:var(--sage-dark); }
@media (max-width:860px){ .t-grid{ grid-template-columns:1fr; } }

/* ---------- Newsletter ---------- */
.newsletter{ background:var(--ink); color:var(--white); text-align:center; }
.newsletter h2{ color:var(--white); }
.newsletter p{ color:rgba(255,255,255,.7); }
.newsletter form{
  display:flex; justify-content:center; gap:12px; margin-top:24px; flex-wrap:wrap;
}
.newsletter input[type="email"]{
  padding:14px 18px; border-radius:999px; border:1px solid rgba(255,255,255,.3);
  background:transparent; color:var(--white); min-width:280px; font-family:var(--font-body);
}
.newsletter input::placeholder{ color:rgba(255,255,255,.55); }

/* ---------- FAQ accordion ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; font-family:var(--font-head); font-weight:600; font-size:1.05rem; color:var(--ink);
}
.faq-q .icon{ font-size:1.3rem; color:var(--sage-dark); transition:transform .2s ease; }
.faq-item.is-open .faq-q .icon{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .25s ease;
  color:var(--stone);
}
.faq-item.is-open .faq-a{ padding-bottom:20px; }

/* ---------- Contact / forms ---------- */
.contact-grid{ grid-template-columns:1.1fr .9fr; align-items:start; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; font-size:.9rem; margin-bottom:6px; }
.field input, .field textarea{
  width:100%; padding:13px 16px; border:1px solid var(--line); border-radius:12px;
  background:var(--white); font-family:var(--font-body); font-size:.95rem; color:var(--ink);
}
.field textarea{ min-height:140px; resize:vertical; }
.info-card{
  background:var(--sage-pale); border-radius:20px; padding:32px;
}
.info-card h3{ font-size:1.1rem; }
.info-card p{ color:var(--ink); }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- Breadcrumb / page header ---------- */
.page-hero{
  background:var(--sage-pale); text-align:center; padding:64px 0 56px;
}
.page-hero h1{ margin-bottom:6px; }
.page-hero p{ color:var(--stone); max-width:52ch; margin:0 auto; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.75); padding:64px 0 28px; }
.footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:48px; }
.footer-grid h4{ color:var(--white); font-size:.95rem; margin-bottom:16px; }
.footer-grid ul{ display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ font-size:.9rem; transition:color .2s ease; }
.footer-grid a:hover{ color:var(--white); }
.footer-logo{ font-family:var(--font-head); font-size:1.3rem; font-weight:700; color:var(--white); margin-bottom:12px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:.82rem;
}
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .main-nav, .faq-q .icon, .faq-a{ transition:none; }
}
