/* =========================================================
   OREGON FARMACY — Brand Stylesheet
   Colors: Black #000, White #FFF, Dark Green #002B18,
           Neon Lime #A8FF00, Greys #1A1A1A/#444/#A7A7A7,
           Electric Blue #008BFF (sparing accent)
   Type: Anton (brushstroke/display), Oswald (secondary
         headlines), Inter (body)
   ========================================================= */

:root {
  --black: #000000;
  --white: #ffffff;
  --dark-green: #002b18;
  --lime: #a8ff00;
  --dark-grey: #1a1a1a;
  --med-grey: #444444;
  --light-grey: #a7a7a7;
  --blue: #008bff;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* =========================================================
   UTILITIES
   ========================================================= */

.lime {
  color: var(--lime);
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 56px 0;
}

.section-label {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--light-grey);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 40px;
}

.divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, var(--lime) 0%, transparent 100%);
  width: 140px;
  margin: 18px 0 32px;
}

/* Brush underline accent — uses real brush-stroke artwork instead of a flat bar */
.brush-underline {
  position: relative;
  display: inline-block;
}

.brush-underline::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -0.28em;
  height: 0.42em;
  background: url('../assets/img/brand/brush-line-rough.png') center / 100% 100% no-repeat;
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.95;
}

/* =========================================================
   BRUSH-STROKE SECTION DIVIDERS & TEXTURE ASSETS
   ========================================================= */

.brush-divider {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
  user-select: none;
  pointer-events: none;
}

.brush-divider--small {
  max-width: 260px;
  margin: 28px 0;
  opacity: 0.85;
}

/* Faint oversized wordmark used as background texture in section heroes */
.section-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.05;
  z-index: 0;
}

/* Hand-drawn brush frame overlay — sits on top of a card/visual */
.brush-frame {
  position: relative;
}

.brush-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: url('../assets/img/brand/frame-rounded.png') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

/* Circular brand stamps (Verified / Local Farmacy / Support Local) */
.stamp {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(168, 255, 0, 0.15));
}

.stamp--rotate-left {
  transform: rotate(-8deg);
}

.stamp--rotate-right {
  transform: rotate(7deg);
}

/* Scattered leaf texture, decorative only */
.leaf-scatter {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn--block {
  width: 100%;
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.announcement {
  background: var(--lime);
  color: var(--black);
}

.announcement .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  padding: 8px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.announcement strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav__logo img {
  height: 46px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--lime);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 4px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168, 255, 0, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Oversized brush wordmark watermark, bleeding off the right edge of the hero */
.hero__watermark {
  top: 50%;
  right: -8%;
  transform: translateY(-50%) rotate(-4deg);
  width: 720px;
  max-width: 65vw;
}

.hero__leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

.hero__leaf--1 {
  top: -60px;
  right: -60px;
  width: 380px;
}

.hero__leaf--2 {
  bottom: -80px;
  left: -100px;
  width: 320px;
  transform: rotate(35deg);
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.hero h1 .lime {
  color: var(--lime);
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--light-grey);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-grey);
}

.hero__meta strong {
  color: var(--white);
  display: block;
  font-size: 0.95rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__meta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lime);
}

/* Hero visual / image card */
.hero__visual {
  position: relative;
}

.hero__card {
  position: relative;
  border: 2px solid var(--lime);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(168, 255, 0, 0.12), rgba(0, 20, 12, 0.72)),
    url('https://images.pexels.com/photos/2731664/pexels-photo-2731664.jpeg?auto=compress&cs=tinysrgb&w=1000') center / cover no-repeat,
    #0d0d0d;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  overflow: hidden;
}

.hero__card .leaf-icon {
  width: 96px;
  height: 96px;
  color: var(--lime);
  margin-bottom: 24px;
}

.hero__card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.hero__card p {
  color: var(--light-grey);
  font-size: 0.95rem;
  max-width: 280px;
}

.hero__badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 14px 18px;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  transform: rotate(8deg);
  box-shadow: 0 0 0 6px var(--black);
}

/* =========================================================
   PILLARS / BRAND PROMISE
   ========================================================= */

.pillars {
  background: var(--dark-grey);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  color: var(--lime);
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pillar h3 .lime {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.pillar p {
  color: var(--light-grey);
  font-size: 0.95rem;
}

/* =========================================================
   MENU PREVIEW
   ========================================================= */

.menu {
  background: var(--black);
}

/* =========================================================
   LIVE MENU EMBED (POS provider slot)
   ========================================================= */

.menu-embed {
  margin-top: 48px;
  background: var(--dark-grey);
  border: 1px solid var(--med-grey);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.menu-embed::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  padding: 2px;
  background: linear-gradient(120deg, var(--lime), transparent 35%, transparent 65%, var(--lime));
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: menuEmbedGlow 6s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes menuEmbedGlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 220% 220%; }
}

.menu-embed__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}

.menu-embed__label {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.75rem;
}

.menu-embed__head h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-embed__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(168, 255, 0, 0.1);
  border: 1px solid rgba(168, 255, 0, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
}

.menu-embed__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(168, 255, 0, 0.6);
  animation: menuEmbedPulse 1.8s ease-out infinite;
}

@keyframes menuEmbedPulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 255, 0, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(168, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 255, 0, 0); }
}

.menu-embed__toggle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--med-grey);
  color: var(--light-grey);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.menu-embed__toggle:hover,
.menu-embed__toggle[aria-pressed="true"] {
  border-color: var(--lime);
  color: var(--lime);
}

.menu-embed__frame {
  background: var(--white);
  border: 2px solid var(--lime);
  border-radius: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  max-height: 640px;
  transition: max-height 0.4s ease;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.menu-embed__frame.is-expanded {
  overflow-y: visible;
}

.menu-embed__frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* NOTE: this used to invert the iframe's colors (filter: invert(1) ...) to
   fake a dark theme. That also inverted every real product photo inside the
   menu, making them look like color negatives. The white card + lime border
   above keeps the widget's real photography accurate instead. */

/* Fade-out hint at the bottom edge while collapsed */
.menu-embed__frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-embed__frame.is-expanded {
  max-height: none;
}

.menu-embed__frame.is-expanded::after {
  opacity: 0;
}

.menu-embed__expand {
  display: block;
  margin: 18px auto 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--med-grey);
  color: var(--light-grey);
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.menu-embed__expand:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* =========================================================
   PROMO BANNER
   ========================================================= */

.promo {
  background: var(--dark-green);
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  position: relative;
  overflow: hidden;
}

.promo .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 24px;
}

.promo__text {
  max-width: 560px;
}

.promo__label {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: block;
}

.promo h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo p {
  color: var(--light-grey);
}

.promo__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.promo__card {
  background: var(--black);
  border: 1px solid var(--lime);
  border-radius: 8px;
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
}

.promo__card .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
}

.promo__card .label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-top: 6px;
}

/* =========================================================
   DAILY RITUAL / WEEKLY SPECIALS
   ========================================================= */

.weekly {
  background: var(--dark-grey);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.weekly__daily {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  background: var(--black);
  border: 2px solid var(--lime);
  border-radius: 8px;
  padding: 24px 32px;
  margin: 32px 0;
}

.weekly__daily-amount {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  white-space: nowrap;
}

.weekly__daily p {
  color: var(--light-grey);
  margin: 0;
}

.weekly__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.weekly__card {
  position: relative;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.weekly__card h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--lime);
  margin-bottom: 10px;
}

.weekly__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.weekly__detail {
  color: var(--light-grey);
  font-size: 0.85rem;
}

.weekly__card--highlight {
  border-color: var(--lime);
  background:
    linear-gradient(135deg, rgba(168, 255, 0, 0.12), transparent 70%),
    var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(168, 255, 0, 0.12);
}

.weekly__card--closed {
  opacity: 0.6;
}

.weekly__card--closed.weekly__card--highlight {
  transform: none;
  box-shadow: none;
}

.weekly__today {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px 24px;
}

.faq__item + .faq__item {
  margin-top: 0;
}

.faq__item summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 18px 32px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--white);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lime);
  transition: transform 0.2s ease;
}

.faq__item[open] summary {
  color: var(--lime);
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__item p {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* =========================================================
   BADGES / TRUST MARKS
   ========================================================= */

.badges__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: var(--dark-grey);
}

.badge .leaf-icon {
  width: 32px;
  height: 32px;
  color: var(--lime);
}

.badge span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* =========================================================
   ABOUT / STORY
   ========================================================= */

.about {
  background: var(--dark-grey);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  position: relative;
  border: 2px solid var(--lime);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(160deg, rgba(168, 255, 0, 0.12), rgba(0, 20, 12, 0.68)),
    url('https://images.pexels.com/photos/34204284/pexels-photo-34204284.jpeg?auto=compress&cs=tinysrgb&w=1200') center / cover no-repeat,
    #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__visual img {
  max-width: 70%;
}

.about p {
  color: var(--light-grey);
  margin-bottom: 18px;
}

.about__quote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  border-left: 3px solid var(--lime);
  padding-left: 20px;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* =========================================================
   LOCATION / CONTACT
   ========================================================= */

.location {
  background: var(--black);
}

.location .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location__map {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, rgba(168, 255, 0, 0.04) 0 20px, transparent 20px 40px),
    var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.location__map .leaf-icon {
  width: 64px;
  height: 64px;
  color: var(--lime);
  margin-bottom: 16px;
}

.location__map span {
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
  font-size: 0.85rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-list .leaf-icon {
  width: 28px;
  height: 28px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-list p {
  color: var(--light-grey);
  font-size: 0.95rem;
}

.info-list a:hover {
  color: var(--lime);
}

/* =========================================================
   NEWSLETTER / CTA STRIP
   ========================================================= */

.cta-strip {
  background:
    linear-gradient(135deg, rgba(168, 255, 0, 0.1), transparent 60%),
    var(--dark-green);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 24px;
}

.cta-strip h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 480px;
  line-height: 1.15;
}

.cta-strip__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-strip__form input {
  background: var(--black);
  border: 1px solid var(--med-grey);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  min-width: 240px;
}

.cta-strip__form input:focus {
  outline: none;
  border-color: var(--lime);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer__grid p {
  color: var(--light-grey);
  font-size: 0.9rem;
}

.footer__grid h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--lime);
  margin-bottom: 18px;
}

.footer__grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__grid ul a {
  color: var(--light-grey);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer__grid ul a:hover {
  color: var(--lime);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--med-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.footer__social a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--med-grey);
}

.footer__bottom .legal {
  max-width: 760px;
  line-height: 1.6;
}

.footer__bottom strong {
  color: var(--lime);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .badges__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about .container,
  .location .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__age {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 18px;
  }

  .badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .promo .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   AGE GATE
   ========================================================= */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(168, 255, 0, 0.12) 0%, transparent 55%),
    rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  max-width: 460px;
  width: calc(100% - 48px);
  text-align: center;
  background: var(--dark-grey);
  border: 2px solid var(--lime);
  border-radius: 10px;
  padding: 48px 32px;
}

.age-gate__card img {
  height: 56px;
  margin: 0 auto 24px;
}

.age-gate__card h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.age-gate__card p {
  color: var(--light-grey);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.age-gate__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.age-gate__fine {
  font-size: 0.75rem;
  color: var(--med-grey);
  line-height: 1.5;
}

.age-gate__fine a {
  color: var(--light-grey);
  text-decoration: underline;
}

/* =========================================================
   REVIEWS / SOCIAL PROOF
   ========================================================= */

.reviews {
  background: var(--dark-grey);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px 28px;
}

.reviews__score .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--lime);
  line-height: 1;
}

.reviews__stars {
  color: var(--lime);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.reviews__score .meta {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-grey);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card .stars {
  color: var(--lime);
  letter-spacing: 0.1em;
}

.review-card p {
  color: var(--light-grey);
  font-size: 0.95rem;
  flex: 1;
}

.review-card .who {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--white);
}

/* =========================================================
   LOYALTY / REWARDS
   ========================================================= */

.rewards {
  background:
    linear-gradient(135deg, rgba(168, 255, 0, 0.08), transparent 60%),
    var(--black);
}

.rewards .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rewards__card {
  background: var(--dark-grey);
  border: 2px solid var(--lime);
  border-radius: 10px;
  padding: 36px;
}

.rewards__card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.rewards__tiers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.rewards__tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rewards__tiers li span:last-child {
  color: var(--lime);
}

/* =========================================================
   MAP EMBED
   ========================================================= */

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

@media (max-width: 1024px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .rewards .container {
    grid-template-columns: 1fr;
  }

  .weekly__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .reviews__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .weekly__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .weekly__daily {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .weekly__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SUBPAGE / CATEGORY HERO
   ========================================================= */

.page-hero {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168, 255, 0, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--light-grey);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb .sep {
  color: var(--lime);
  margin: 0 8px;
}

.page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  max-width: 760px;
}

.page-hero p.lead {
  font-size: 1.05rem;
  color: var(--light-grey);
  max-width: 680px;
}

/* =========================================================
   PROSE / ARTICLE CONTENT
   ========================================================= */

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin: 40px 0 16px;
  letter-spacing: 0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--light-grey);
  margin-bottom: 16px;
  font-size: 1rem;
}

.prose ul,
.prose ol {
  color: var(--light-grey);
  margin: 0 0 16px 1.2em;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--white);
}

.prose a {
  color: var(--lime);
  text-decoration: underline;
}

.article-meta {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 24px;
}

/* =========================================================
   SHOP-BY-CATEGORY CHIPS
   ========================================================= */

.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -8px 0 40px;
}

.shop-categories a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--med-grey);
  border-radius: 999px;
  padding: 10px 20px;
  transition: all 0.15s ease;
}

.shop-categories a:hover,
.shop-categories a.is-active {
  border-color: var(--lime);
  color: var(--lime);
}

/* =========================================================
   BLOG
   ========================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.post-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.post-card__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
}

.post-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.post-card p {
  color: var(--light-grey);
  font-size: 0.95rem;
  flex: 1;
}

.post-card__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BRAND FLOURISHES — brush textures, stamps, leaf scatter
   ========================================================= */

.pillars {
  position: relative;
  overflow: hidden;
}

.about__quote-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.about__quote-row .about__quote {
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.badges__head {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.rewards__card {
  position: relative;
  overflow: visible;
}

.rewards__card .stamp {
  position: absolute;
  top: -32px;
  right: -32px;
}

@media (max-width: 720px) {
  .hero__watermark {
    display: none;
  }

  .rewards__card .stamp {
    width: 84px;
    height: 84px;
    top: -20px;
    right: -16px;
  }

  .stamp {
    width: 90px;
    height: 90px;
  }
}

/* =========================================================
   EXTENDED BRAND ASSETS — subpage heroes, blog, banners
   ========================================================= */

/* Large, faint OF + leaf watermark in subpage heroes */
.page-hero {
  overflow: hidden;
}

.page-hero__mark {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 380px;
  max-width: 45%;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Secondary divider — thin solid brush line, used for rhythm/variety
   alongside the heavier brush-line-rough.png divider */
.brush-divider--solid {
  opacity: 0.5;
}

/* Wide trust-stamp banner (Lab Tested Verified / Support Local) */
.trust-banner-strip {
  padding: 32px 0 0;
  text-align: center;
}

.trust-banner {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  opacity: 0.92;
}

/* Circular brush-leaf frame for photos/visuals */
.frame-circle {
  position: relative;
}

.frame-circle::before {
  content: '';
  position: absolute;
  inset: -14px;
  background: url('../assets/img/brand/frame-circle-leaves.png') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

/* Editorial sign-off mark at the end of blog articles */
.post-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-signature img {
  width: 52px;
  height: 52px;
  opacity: 0.9;
  flex-shrink: 0;
}

.post-signature span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
}

/* Card mark — corner accent inside .hero__card */
.card-mark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* Frame-circle variant for smaller badges (e.g. 96px hero badge) */
.hero__badge.frame-circle::before {
  inset: -10px;
  background-image: url('../assets/img/brand/frame-circle-leaves.png');
}

@media (max-width: 720px) {
  .page-hero__mark {
    width: 220px;
    opacity: 0.045;
  }

  .trust-banner {
    max-width: 220px;
  }

  .post-signature img {
    width: 40px;
    height: 40px;
  }
}
