/* ==========================================================================
   Lemon Myrtle Shop Australia, Pure Oz Botanicals
   Golden-hour botanical design: Marcellus display + Figtree body
   ========================================================================== */

:root {
  --myrtle: #1e3320;
  --myrtle-dark: #142415;
  --myrtle-ink: #0e1a0f;
  --leaf: #4f7042;
  --leaf-soft: #7d9a6c;
  --citral: #c99a2e;
  --citral-bright: #e2b84f;
  --citral-pale: #f2dfae;
  --cream: #f7f2e6;
  --parchment: #fcf9f1;
  --bark: #6b4a26;
  --ink-on-light: #26301f;
  --muted-on-light: #5d6650;
  --muted-on-dark: #c5cdb4;
  --font-display: "Marcellus", serif;
  --font-body: "Figtree", sans-serif;
  --shadow-card: 0 18px 40px -18px rgba(30, 51, 32, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* clip (not hidden) so the off-canvas cart drawer and the decorative overhangs
   never create a horizontal scrollbar, while position:sticky keeps working. */
html, body { overflow-x: clip; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-on-light);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }

a { color: inherit; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* Paper grain on light sections */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.4 0 0 0 0 0.28 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; }

/* --- Section label + heading pattern ------------------------------------ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--citral);
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--citral);
}
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 0.6rem 0 0.9rem;
  color: var(--myrtle);
}
.on-dark .section-head h2, .section-head.on-dark h2 { color: var(--cream); }
.section-head p { max-width: 56ch; color: var(--muted-on-light); }
.on-dark .section-head p, .section-head.on-dark p { color: var(--muted-on-dark); }

/* Gold double rule divider */
.double-rule {
  height: 7px;
  width: 96px;
  margin-top: 1.4rem;
  border-top: 1px solid var(--citral);
  border-bottom: 1px solid var(--citral);
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn-gold {
  background: var(--citral);
  color: var(--myrtle-ink);
  box-shadow: 4px 4px 0 rgba(20, 36, 21, 0.85);
}
.btn-gold:hover { background: var(--citral-bright); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(20, 36, 21, 0.85); }
.btn-gold:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(20, 36, 21, 0.85); }
.btn-outline {
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: var(--cream); color: var(--myrtle); }
.btn-outline-dark {
  border-color: var(--myrtle);
  color: var(--myrtle);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--myrtle); color: var(--cream); }
.btn:focus-visible, a:focus-visible {
  outline: 3px solid var(--citral-bright);
  outline-offset: 3px;
}

/* --- Announcement bar ----------------------------------------------------- */
.announce {
  background: var(--myrtle-ink);
  color: var(--citral-pale);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}
.announce strong { color: var(--citral-bright); font-weight: 700; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 249, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30, 51, 32, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--myrtle);
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--citral);
}
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-on-light);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover { color: var(--citral); border-bottom-color: var(--citral); }
.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--myrtle);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--citral); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--myrtle);
  color: var(--myrtle);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

/* --- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(14, 26, 15, 0.82) 0%, rgba(14, 26, 15, 0.55) 38%, rgba(14, 26, 15, 0.08) 68%, rgba(14, 26, 15, 0) 100%);
}
.hero-inner { padding: 6rem 0 7rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--citral-bright);
  animation: rise 0.9s var(--ease-out) both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--citral-bright);
}
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.8rem);
  max-width: 13ch;
  margin: 1.1rem 0 1.3rem;
  text-shadow: 0 2px 30px rgba(14, 26, 15, 0.45);
  animation: rise 0.9s 0.12s var(--ease-out) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--citral-bright);
}
.hero-sub {
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(247, 242, 230, 0.92);
  animation: rise 0.9s 0.24s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  animation: rise 0.9s 0.36s var(--ease-out) both;
}
.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--citral-pale);
  animation: rise 0.9s 0.48s var(--ease-out) both;
}
.hero-ticks span::before {
  content: "✦";
  color: var(--citral-bright);
  margin-right: 0.5rem;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Story split ----------------------------------------------------------- */
.story { padding: 6.5rem 0; background: var(--parchment); }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story-media { position: relative; }
.story-media .photo-main {
  border-radius: 0 90px 0 90px;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.story-media .photo-inset {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 0 50% 50%;
  border: 6px solid var(--parchment);
  box-shadow: var(--shadow-card);
}
.story-media .est-badge {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--myrtle);
  color: var(--citral-pale);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px dashed var(--citral);
  outline: 5px solid var(--myrtle);
  rotate: -8deg;
}
.est-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--citral-bright);
}
.story-copy p { margin-bottom: 1.1rem; color: var(--muted-on-light); }
.story-copy p strong { color: var(--ink-on-light); }
.story-points {
  list-style: none;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}
.story-points li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-weight: 600;
}
.story-points li::before {
  content: "❧";
  color: var(--citral);
  font-size: 1.05rem;
}

/* --- Citral stats band ------------------------------------------------------ */
.stats {
  background:
    linear-gradient(rgba(20, 36, 21, 0.92), rgba(14, 26, 15, 0.95)),
    url("../assets/leaves-layered.jpg") center / cover fixed;
  color: var(--cream);
  padding: 5.5rem 0;
  text-align: center;
}
.stats .kicker { color: var(--citral-bright); justify-content: center; }
.stats .kicker::before { background: var(--citral-bright); }
.stats h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  max-width: 26ch;
  margin: 0.7rem auto 0.9rem;
}
.stats > .container > p { max-width: 62ch; margin-inline: auto; color: var(--muted-on-dark); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--citral-bright);
  line-height: 1;
}
.stat .num sub, .stat .num sup { font-size: 0.45em; }
.stat .lbl {
  margin-top: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* --- Products --------------------------------------------------------------- */
.products { padding: 6.5rem 0; background: var(--cream); }
.products .section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.product-card {
  position: relative;
  background: var(--parchment);
  border: 1px solid rgba(30, 51, 32, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
/* corner-tick frame */
.product-card::before, .product-card::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--citral);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  pointer-events: none;
}
.product-card::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.product-card::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card:hover::before, .product-card:hover::after { width: 44px; height: 44px; }
.product-card .thumb {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  /* height:auto is essential: the width/height attributes on the <img> would
     otherwise force a 400px-tall box and crop the square product shots. */
  height: auto;
}
.product-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.product-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--citral);
}
.product-body h3 { font-size: 1.18rem; color: var(--myrtle); }
.product-variants { font-size: 0.8rem; color: var(--muted-on-light); }
.product-price {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(107, 74, 38, 0.35);
}
.product-price .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bark);
}
.product-price .price small { font-size: 0.68rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-light); }
.product-price a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--myrtle);
  border-bottom: 2px solid var(--citral);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.product-price a:hover { color: var(--citral); }
.bestseller {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--myrtle);
  color: var(--citral-bright);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

/* --- Why lemon myrtle -------------------------------------------------------- */
.why { padding: 6.5rem 0; background: var(--myrtle-dark); color: var(--cream); position: relative; overflow: hidden; }
.why .bg-leaf {
  position: absolute;
  right: -6%;
  top: 0;
  height: 100%;
  width: 44%;
  object-fit: cover;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 45%);
  mask-image: linear-gradient(to right, transparent, #000 45%);
}
.why .container { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.why-card {
  border: 1px solid rgba(226, 184, 79, 0.28);
  padding: 1.7rem 1.6rem;
  background: rgba(14, 26, 15, 0.55);
  transition: border-color 0.25s, background-color 0.25s, transform 0.3s var(--ease-out);
}
.why-card:hover { border-color: var(--citral-bright); background: rgba(14, 26, 15, 0.8); transform: translateY(-4px); }
.why-card .glyph {
  font-size: 1.6rem;
  color: var(--citral-bright);
  margin-bottom: 0.8rem;
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--cream); }
.why-card p { font-size: 0.92rem; color: var(--muted-on-dark); }

/* --- Testimonials -------------------------------------------------------------- */
.reviews { padding: 6.5rem 0; background: var(--parchment); }
.reviews .section-head { text-align: center; margin-bottom: 3rem; }
.reviews .kicker { justify-content: center; }
.reviews .kicker::after { content: ""; width: 34px; height: 1px; background: var(--citral); }
.reviews .section-head p { margin-inline: auto; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: var(--cream);
  border: 1px solid rgba(30, 51, 32, 0.12);
  padding: 2rem 1.8rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--citral);
  opacity: 0.55;
}
.review-stars { color: var(--citral); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 0.8rem; }
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--muted-on-light);
  font-style: italic;
  flex: 1;
}
.review-card cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--myrtle);
}
.review-card cite::before { content: ""; }

/* --- Blog ------------------------------------------------------------------------ */
.blog { padding: 6.5rem 0; background: var(--cream); }
.blog .section-head { margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card {
  background: var(--parchment);
  border: 1px solid rgba(30, 51, 32, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.blog-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--citral);
  margin-bottom: 0.5rem;
}
.blog-body h3 { font-size: 1.25rem; color: var(--myrtle); margin-bottom: 0.5rem; }
.blog-body p { font-size: 0.92rem; color: var(--muted-on-light); flex: 1; }
.blog-body .readmore {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--myrtle);
  border-bottom: 2px solid var(--citral);
  align-self: start;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.blog-body .readmore:hover { color: var(--citral); }

/* --- Contact band ------------------------------------------------------------------ */
.contact {
  position: relative;
  padding: 6.5rem 0;
  background:
    linear-gradient(rgba(20, 36, 21, 0.88), rgba(14, 26, 15, 0.93)),
    url("../assets/leaves-summer-green.jpg") center / cover;
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--cream); margin: 0.6rem 0 1rem; }
.contact-info p { color: var(--muted-on-dark); max-width: 46ch; }
.contact-lines { list-style: none; margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-lines a { color: var(--cream); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.contact-lines a:hover { color: var(--citral-bright); }
.contact-lines li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}
.contact-lines .ico { color: var(--citral-bright); }
.contact-form {
  background: var(--parchment);
  color: var(--ink-on-light);
  padding: 2.4rem 2.2rem;
  box-shadow: 10px 10px 0 rgba(226, 184, 79, 0.35);
}
.contact-form h3 { font-size: 1.5rem; color: var(--myrtle); margin-bottom: 0.4rem; }
.contact-form > p { font-size: 0.9rem; color: var(--muted-on-light); margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--myrtle);
  margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-on-light);
  background: #fff;
  border: 1px solid rgba(30, 51, 32, 0.25);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--citral);
  box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.25);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn { width: 100%; justify-content: center; }

/* --- Footer -------------------------------------------------------------------------- */
.site-footer { background: var(--myrtle-ink); color: var(--muted-on-dark); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(226, 184, 79, 0.18);
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.footer-brand img { width: 54px; height: 54px; }
.footer-brand .brand-name { color: var(--cream); }
.footer-col p { font-size: 0.92rem; max-width: 40ch; }
.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--citral-bright);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--citral-bright); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem 0;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--muted-on-dark); }

/* --- Shop dropdown nav ------------------------------------------------------------------ */
.nav-drop { position: relative; }
.nav-drop > a::after { content: " ▾"; font-size: 0.7em; }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  min-width: 210px;
  background: var(--parchment);
  border: 1px solid rgba(30, 51, 32, 0.16);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  display: none;
  z-index: 70;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.nav-drop-menu a:hover { background: var(--cream); border-bottom: none; }

/* --- Cart -------------------------------------------------------------------------------- */
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid rgba(30, 51, 32, 0.3);
  color: var(--myrtle);
  padding: 0.5rem 0.6rem 0.35rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cart-btn:hover { border-color: var(--citral); color: var(--citral); }
.cart-btn:focus-visible { outline: 3px solid var(--citral-bright); outline-offset: 2px; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-content: center;
  background: rgba(30, 51, 32, 0.35);
  color: var(--parchment);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}
.cart-count.has-items { background: var(--citral); color: var(--myrtle-ink); }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 15, 0.55);
  z-index: 90;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 94vw);
  background: var(--parchment);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: -18px 0 50px rgba(14, 26, 15, 0.3);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid rgba(30, 51, 32, 0.14);
}
.cart-head h3 { font-size: 1.5rem; color: var(--myrtle); }
.cart-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--myrtle);
  cursor: pointer;
  padding: 0.4rem;
}
.cart-close:hover { color: var(--citral); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.cart-empty { text-align: center; color: var(--muted-on-light); padding: 3rem 0; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(107, 74, 38, 0.3);
}
.cart-item-info { display: grid; gap: 0.15rem; }
.cart-item-info strong { font-size: 0.92rem; color: var(--myrtle); }
.cart-item-variant { font-size: 0.78rem; color: var(--muted-on-light); }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--bark); }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid rgba(30, 51, 32, 0.3);
  background: none;
  color: var(--myrtle);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.qty-btn:hover { background: var(--myrtle); color: var(--cream); }
.qty { min-width: 20px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.cart-remove {
  background: none;
  border: none;
  color: var(--muted-on-light);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.3rem;
  margin-left: 0.3rem;
}
.cart-remove:hover { color: #a03325; }
.cart-foot { padding: 1.3rem 1.6rem 1.6rem; border-top: 1px solid rgba(30, 51, 32, 0.14); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cart-subtotal strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--myrtle); }
.cart-note { font-size: 0.78rem; color: var(--muted-on-light); margin-bottom: 1rem; }
.cart-checkout { width: 100%; justify-content: center; text-align: center; }
.cart-checkout.disabled { pointer-events: none; opacity: 0.45; }
.cart-error {
  font-size: 0.82rem;
  color: #8c2f22;
  background: #f8e7e3;
  border: 1px solid #d8a99f;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.8rem;
}

/* --- Thank you ---------------------------------------------------------------------------- */
.thankyou { padding: 7rem 0; background: var(--parchment); text-align: center; }
.thankyou .seal {
  width: 92px; height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--myrtle);
  color: var(--citral-bright);
  font-size: 2.4rem;
  border: 1px dashed var(--citral);
  outline: 5px solid var(--myrtle);
}
.thankyou h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--myrtle); margin-bottom: 1rem; }
.thankyou p { max-width: 52ch; margin: 0 auto 1rem; color: var(--muted-on-light); }
.thankyou .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* Product card buy controls */
.variant-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-top: 0.4rem;
}
.variant-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-on-light);
  background: #fff;
  border: 1px solid rgba(30, 51, 32, 0.25);
  padding: 0.5rem 0.6rem;
  margin-top: 0.2rem;
}
.variant-select:focus { outline: none; border-color: var(--citral); box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.25); }
.btn-add {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--myrtle);
  color: var(--citral-pale);
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn-add:hover { background: var(--citral); color: var(--myrtle-ink); }
.btn-add:focus-visible { outline: 3px solid var(--citral-bright); outline-offset: 2px; }
.btn-add:active { transform: translateY(1px); }
.soldout-flag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: rgba(14, 26, 15, 0.85);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}
.product-card.is-soldout .thumb { filter: grayscale(0.6); opacity: 0.75; }
.checkout-note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-on-light);
}
.checkout-note::before { content: "🔒 "; }

/* --- Interior page hero ------------------------------------------------------------------ */
.page-hero {
  position: relative;
  padding: 6.5rem 0 4.5rem;
  background: var(--myrtle-dark);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.35;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 26, 15, 0.4), rgba(14, 26, 15, 0.75));
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 20ch; margin: 0.8rem 0; }
.page-hero p { max-width: 58ch; color: rgba(247, 242, 230, 0.9); }
.breadcrumbs {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--citral-bright);
}
.breadcrumbs a { color: var(--citral-pale); text-decoration: none; }
.breadcrumbs a:hover { color: var(--citral-bright); }
.breadcrumbs span::before { content: " / "; color: rgba(247, 242, 230, 0.5); }

/* --- Shop filter pills -------------------------------------------------------------------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: -1rem 0 2.6rem;
}
.filter-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--myrtle);
  border: 1px solid rgba(30, 51, 32, 0.3);
  padding: 0.55rem 1.1rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill:hover { border-color: var(--citral); color: var(--citral); }
.filter-pill.active { background: var(--myrtle); border-color: var(--myrtle); color: var(--citral-pale); }

/* --- FAQ ----------------------------------------------------------------------------------- */
.faq-section { padding: 5.5rem 0; background: var(--parchment); }
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(30, 51, 32, 0.14);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--myrtle);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--citral);
  transition: rotate 0.25s var(--ease-out);
}
.faq-item[open] summary::after { rotate: 45deg; }
.faq-item .faq-body { padding: 0 1.5rem 1.3rem; color: var(--muted-on-light); }
.faq-item:hover { border-color: var(--citral); }

/* --- Article / prose ------------------------------------------------------------------------ */
.article-wrap { padding: 4.5rem 0 6rem; background: var(--parchment); }
.prose { max-width: 720px; margin-inline: auto; }
.prose > img { margin: 0 0 2rem; box-shadow: var(--shadow-card); }
.prose h2 { font-size: 1.8rem; color: var(--myrtle); margin: 2.2rem 0 0.8rem; }
.prose p { margin-bottom: 1.1rem; color: var(--muted-on-light); }
.prose p strong { color: var(--ink-on-light); }
.prose ul { margin: 0 0 1.1rem 1.4rem; color: var(--muted-on-light); }
.prose li { margin-bottom: 0.4rem; }
.article-meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--citral);
  margin-bottom: 1.6rem;
}
.article-cta {
  margin-top: 2.6rem;
  padding: 1.8rem;
  background: var(--cream);
  border: 1px solid rgba(30, 51, 32, 0.14);
  text-align: center;
}
.article-cta p { margin-bottom: 1.1rem; }

/* --- Generic content section ------------------------------------------------------------------ */
.content-section { padding: 5.5rem 0; }
.bg-parchment { background: var(--parchment); }
.bg-cream { background: var(--cream); }

/* --- Reveal on scroll ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-ticks { animation: none; }
}

/* --- Responsive ------------------------------------------------------------------------ */
@media (max-width: 1020px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .why-grid, .review-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--parchment);
    border-bottom: 1px solid rgba(30, 51, 32, 0.14);
    padding: 0.5rem 0 1rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 6%; border-bottom: 1px solid rgba(30, 51, 32, 0.08); }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-media { margin-bottom: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
/* The desktop hero scrim runs left-to-right, which leaves narrow screens with
   text sitting over bright foliage. Mobile gets its own vertical scrim instead. */
@media (max-width: 860px) {
  .hero { min-height: clamp(520px, 78vh, 680px); }
  .hero-bg { object-position: 80% 32%; }
  .hero::after {
    background: linear-gradient(180deg, rgba(14, 26, 15, 0.62) 0%, rgba(14, 26, 15, 0.74) 40%, rgba(14, 26, 15, 0.9) 100%);
  }
  .hero h1 { text-shadow: 0 2px 16px rgba(14, 26, 15, 0.8); max-width: 100%; }
  .hero-sub { color: #f2ece0; text-shadow: 0 1px 10px rgba(14, 26, 15, 0.7); }
  .hero-eyebrow::after { display: none; }

  /* keep decorative overhangs inside the viewport */
  .story-media .photo-inset { right: 0; width: 42%; }
  .why .bg-leaf { right: 0; width: 58%; }

  /* comfortable touch targets (min ~44px) */
  .btn-add { padding: 0.85rem 1.2rem; }
  .blog-body .readmore, .product-price a { display: inline-block; padding-block: 0.55rem; }
  .footer-col ul a { display: inline-block; padding: 0.4rem 0; }
  .contact-lines a { display: inline-block; padding: 0.35rem 0; }
  .main-nav a { padding: 0.95rem 6%; }
  .breadcrumbs a { display: inline-block; padding: 0.4rem 0; }
}

@media (max-width: 560px) {
  .product-grid, .why-grid, .review-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 4rem 0 4.5rem; }
  .story-media .est-badge { left: auto; right: -10px; top: -30px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .story-media .est-badge { right: 0; width: 92px; height: 92px; }
  .hero-ticks { gap: 0.9rem 1.2rem; font-size: 0.72rem; }
  .announce { font-size: 0.62rem; letter-spacing: 0.1em; }
  .product-price { flex-wrap: wrap; gap: 0.6rem; }
  .filter-row { gap: 0.5rem; }
  .filter-pill { font-size: 0.66rem; padding: 0.5rem 0.85rem; }
}
