/* =============================================================
   Snug Scents Store — Core Stylesheet
   Designed & built by JD Web Studio
   -------------------------------------------------------------
   Structure:
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Typography
   4.  Layout helpers
   5.  Buttons
   6.  Header / navigation
   7.  Hero
   8.  Section headers
   9.  Collection cards
   10. Product cards
   11. Why choose (features)
   12. Scent explorer
   13. Colour swatches
   14. Seasonal band
   15. About
   16. Instagram
   17. Reviews
   18. FAQ accordion
   19. Contact / forms
   20. Newsletter
   21. Footer
   22. Animations & reveal
   23. Responsive
   ============================================================= */

/* 1. DESIGN TOKENS ------------------------------------------- */
:root {
  /* Brand colour palette */
  --cream:      #FDFBF7;   /* primary background */
  --linen:      #F4F1EA;   /* secondary background */
  --charcoal:   #222222;   /* primary text */
  --slate:      #4A4A4A;   /* secondary text */
  --blush:      #E8C5C8;   /* soft accent */
  --blush-soft: #F3E2E4;   /* washed blush for fills */
  --gold:       #D4AF37;   /* luxury highlight */
  --gold-deep:  #B8942B;   /* gold for text (AA contrast) */
  --brand-brown:#7A5A43;   /* warm brown from the logo */
  --brand-brown-deep:#5E4632;

  /* Functional */
  --line:       #E7E1D6;   /* hairline borders */
  --line-soft:  #EFEBE2;
  --white:      #ffffff;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script:  "Caveat", "Segoe Script", cursive;

  /* Type scale (fluid) */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.7vw, 1.95rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.4vw, 4rem);
  --step-5:  clamp(3rem, 2.2rem + 3.6vw, 5.25rem);

  /* Spacing scale (8pt based) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Radii & shadows */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(60, 44, 30, 0.06);
  --shadow:    0 12px 30px rgba(60, 44, 30, 0.09);
  --shadow-lg: 0 24px 60px rgba(60, 44, 30, 0.14);

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. RESET & BASE ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
  /* Dark inner ring keeps the focus indicator visible on both
     light backgrounds (where gold alone is low-contrast) and dark. */
  box-shadow: 0 0 0 2px var(--charcoal);
}

::selection { background: var(--blush); color: var(--charcoal); }

/* 3. TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { max-width: 66ch; }

strong { color: var(--charcoal); font-weight: 600; }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brand-brown);
  display: inline-block;
  margin-bottom: var(--space-1);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--slate);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* 4. LAYOUT HELPERS ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--space-7);
}
.section--tight { padding-block: var(--space-6); }
.section--linen { background: var(--linen); }
.section--brown { background: var(--brand-brown-deep); }

.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-5);
}
.section-head.text-center { margin-inline: auto; }
.section-head p { margin-top: var(--space-2); }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: var(--space-3) 0;
}
.text-center .gold-rule { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* 5. BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  min-height: 48px;
  line-height: 1;
  text-align: center;
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--white); }

.btn--outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }

.btn--ghost-light {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--ghost-light:hover { background: var(--white); color: var(--charcoal); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 0.7rem 1.3rem; min-height: 42px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-brown);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.75rem; color: var(--gold-deep); border-color: var(--gold); }

/* 6. HEADER / NAV ------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand span { line-height: 1; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-brown);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: var(--space-2); }

/* Etsy CTA that only appears inside the mobile drawer (avoids a duplicate on desktop) */
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* 7. HERO --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Left scrim darkens behind the (left-aligned) headline for legible
     white text; vertical gradient anchors the copy at the bottom. */
  background:
    linear-gradient(90deg, rgba(30,22,15,0.58) 0%, rgba(30,22,15,0.18) 55%, rgba(30,22,15,0) 82%),
    linear-gradient(180deg, rgba(30,22,15,0.32) 0%, rgba(30,22,15,0.12) 38%, rgba(30,22,15,0.78) 100%);
}
.hero__inner {
  padding-block: var(--space-6) var(--space-7);
  max-width: 720px;
}
.hero .eyebrow { color: var(--blush); }
.hero h1 {
  color: var(--white);
  font-size: var(--step-5);
  margin-top: var(--space-1);
  text-wrap: balance;
}
.hero p {
  margin-top: var(--space-3);
  font-size: var(--step-1);
  color: rgba(255,255,255,0.92);
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span { width: 1px; height: 34px; background: rgba(255,255,255,0.6); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* Trust strip under hero */
.trust-strip {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
}
.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-5);
  padding-block: var(--space-3);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-strip li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-strip svg { width: 16px; height: 16px; color: var(--gold); }

/* 8. SECTION HEADER (row with link) -------------------------- */
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  max-width: none;
}

/* 9. COLLECTION CARDS --------------------------------------- */
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s var(--ease);
}
.collection-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,14,9,0) 30%, rgba(20,14,9,0.78) 100%);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card__body { padding: var(--space-3); }
.collection-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.collection-card h3 { color: var(--white); font-size: var(--step-1); }
.collection-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.35rem; }
.collection-card .link-arrow { color: var(--white); margin-top: var(--space-2); }
.collection-card .link-arrow:hover { color: var(--blush); border-color: var(--blush); }

/* Solid colour collection card (no image placeholder) */
.collection-card--tint { background: var(--brand-brown); }
.collection-card--tint::after { background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%); }

/* 10. PRODUCT CARDS ----------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--linen);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__price {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(253,251,247,0.94);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.product-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.product-card__body h3 { font-size: var(--step-1); }
.product-card__body p { font-size: 0.92rem; flex: 1; }
.product-card__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: var(--linen);
  color: var(--slate);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.product-card .btn { margin-top: 0.4rem; }

/* 11. WHY CHOOSE (features) --------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.feature {
  text-align: center;
  padding: var(--space-3) var(--space-2);
}
.feature__icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brand-brown);
  box-shadow: var(--shadow-sm);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.86rem; margin-inline: auto; }

/* 12. SCENT EXPLORER ---------------------------------------- */
.scent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.scent-tab {
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all 0.25s var(--ease);
  min-height: 44px;
}
.scent-tab:hover { border-color: var(--brand-brown); color: var(--charcoal); }
.scent-tab.is-active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.scent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.scent-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.scent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--blush); }
.scent-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-brown);
  font-weight: 600;
}
.scent-card h3 { font-size: 1.35rem; margin: 0.4rem 0 0.3rem; }
.scent-card p { font-size: 0.9rem; }
.scent-card__dot {
  width: 40px; height: 3px; border-radius: 3px;
  background: var(--gold); margin-top: var(--space-2);
}
.scent-card.is-hidden { display: none; }

/* 13. COLOUR SWATCHES --------------------------------------- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-3);
  max-width: 900px;
  margin-inline: auto;
}
.swatch { text-align: center; }
.swatch__chip {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: inset 0 -8px 18px rgba(0,0,0,0.06), var(--shadow-sm);
  margin-bottom: 0.6rem;
  transition: transform 0.3s var(--ease);
}
.swatch:hover .swatch__chip { transform: scale(1.06); }
.swatch span { font-size: 0.82rem; color: var(--slate); font-weight: 500; }

.swatch-note {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 0.95rem;
}
.swatch-note a { color: var(--brand-brown); border-bottom: 1px solid var(--gold); font-weight: 600; }

/* 14. SEASONAL BAND ----------------------------------------- */
.seasonal {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 460px;
  box-shadow: var(--shadow);
}
.seasonal__media { position: relative; }
.seasonal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.seasonal__body {
  background: var(--brand-brown-deep);
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seasonal__body .eyebrow { color: var(--blush); }
.seasonal__body h2 { color: var(--white); }
.seasonal__body p { color: rgba(255,255,255,0.86); margin: var(--space-2) 0 var(--space-3); }
.seasonal__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-3); }
.seasonal__tags .chip { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

/* 15. ABOUT ------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.about-split--reverse .about-split__media { order: 2; }
.about-split__media { position: relative; }
.framed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.framed::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.7);
  pointer-events: none;
  border-radius: 4px;
}
.about-stats {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--charcoal);
  line-height: 1;
}
.about-stat span { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-brown); }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); counter-reset: step; }
.process-step { position: relative; padding-top: var(--space-3); }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--blush);
  display: block;
  margin-bottom: 0.4rem;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; }

/* 16. INSTAGRAM --------------------------------------------- */
.insta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}
.insta-item {
  position: relative;
  flex: 1 1 150px;
  max-width: 240px;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--linen);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(122,90,67,0);
  transition: background 0.3s var(--ease);
}
.insta-item:hover::after { background: rgba(122,90,67,0.18); }
.insta-item__icon {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}
.insta-item:hover .insta-item__icon { opacity: 1; }
.insta-item__icon svg { width: 30px; height: 30px; }

/* 17. REVIEWS ----------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
}
.review-card--placeholder {
  border-style: dashed;
  border-color: var(--blush);
  background: var(--blush-soft);
}
.stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: var(--space-2); }
.stars--muted { color: var(--blush); }
.review-card blockquote { font-family: var(--font-display); font-size: 1.15rem; color: var(--charcoal); font-style: italic; line-height: 1.5; }
.review-card cite { display: block; margin-top: var(--space-2); font-style: normal; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-brown); }

/* 18. FAQ ACCORDION ----------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--charcoal);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  color: var(--brand-brown);
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.faq-item__answer { padding: 0 0 var(--space-3); }
.faq-item__answer p { color: var(--slate); }

/* 19. CONTACT / FORMS --------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-6); align-items: start; }

.contact-methods { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); }
.contact-method {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-method__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--linen);
  display: grid; place-items: center;
  color: var(--brand-brown);
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-method p, .contact-method a { font-size: 0.9rem; }
.contact-method a { color: var(--brand-brown); border-bottom: 1px solid var(--gold); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field { margin-bottom: var(--space-3); }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--gold-deep); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  /* Brown border gives a clear ~5:1 focus indicator on the cream field;
     gold glow keeps it on-brand (gold alone was too low-contrast). */
  border-color: var(--brand-brown);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.28);
}
.field .help { font-size: 0.78rem; color: var(--slate); margin-top: 0.35rem; }
.form__note { font-size: 0.8rem; color: var(--slate); margin-top: var(--space-2); }
.form-status {
  margin-top: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #EAF3EA; color: #2f5d34; border: 1px solid #cfe4cf; }
.form-status.is-error { background: #FBECEC; color: #8a2b2b; border: 1px solid #f0d0d0; }

/* 20. NEWSLETTER / CTA BAND --------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0, rgba(232,197,200,0.5), transparent 55%),
    var(--brand-brown-deep);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}
.cta-band .eyebrow { color: var(--blush); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.86); margin: var(--space-2) auto var(--space-4); max-width: 50ch; }
.cta-band .hero__actions { justify-content: center; }

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: var(--space-3) auto 0;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  min-height: 48px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.16); }

/* 21. FOOTER ------------------------------------------------ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-6) var(--space-3);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand small { color: var(--blush); }
.footer-brand p { margin-top: var(--space-2); max-width: 34ch; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-2); }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,0.68); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-2); }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--gold); }
.attribution { font-weight: 500; }
.attribution a { color: var(--blush); border-bottom: 1px solid transparent; }
.attribution a:hover { border-color: var(--blush); }

/* Page hero (interior pages) -------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + var(--space-6));
  padding-bottom: var(--space-6);
  background: var(--linen);
  text-align: center;
}
.page-hero .eyebrow { color: var(--brand-brown); }
.page-hero p { margin: var(--space-2) auto 0; }
.breadcrumbs { font-size: 0.8rem; color: var(--slate); margin-bottom: var(--space-2); letter-spacing: 0.04em; }
.breadcrumbs a { color: var(--brand-brown); }
.breadcrumbs a:hover { color: var(--gold-deep); }

/* 22. ANIMATIONS -------------------------------------------- */
/* Default (no JS): everything is visible so content is never hidden.
   The hidden-then-reveal state only applies once .js is set on <html>. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* 23. RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  .nav-links,
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  /* mobile drawer */
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: var(--space-2) var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta-mobile { display: block; }
  .nav-links .btn { display: inline-flex; margin-top: var(--space-2); }

  .product-grid,
  .scent-grid,
  .reviews-grid,
  .process-steps { grid-template-columns: 1fr; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .seasonal { grid-template-columns: 1fr; }
  .seasonal__media { min-height: 260px; }

  .about-split { grid-template-columns: 1fr; gap: var(--space-4); }
  .about-split--reverse .about-split__media { order: 0; }

  .contact-layout { grid-template-columns: 1fr; gap: var(--space-4); }
  .form-row { grid-template-columns: 1fr; }

  .section-head--row { align-items: flex-start; }
}

@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn,
  .cta-band .btn { width: 100%; justify-content: center; }
  .trust-strip ul { gap: var(--space-1) var(--space-3); }
  .about-stats { gap: var(--space-3); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__scroll span { animation: none; }
}

/* Print */
@media print {
  .site-header, .hero__scroll, .nav-toggle, .cta-band, .newsletter-form { display: none !important; }
  body { color: #000; background: #fff; }
}
