/* ==========================================================================
   Nanoose Natures — Design Tokens
   Palette sampled directly from the store logo (forest green mark on cream)
   ========================================================================== */
:root {
  --forest-950: #061f11;
  --forest-900: #0a3820;
  --forest-800: #0b4a26;
  --forest-700: #0f5c31;
  --forest-600: #157a41;
  --forest-500: #2f9155;
  --forest-400: #4dab6d;
  --forest-300: #8ecda3;
  --forest-100: #e3f2e7;
  --gold-500: #c9a24b;
  --gold-400: #ddc07a;
  --gold-100: #f6ecd3;
  --cream-100: #faf8f2;
  --cream-200: #f3efe4;
  --ink-900: #14201a;
  --ink-700: #34433c;
  --ink-500: #5c6b63;
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(6, 31, 17, 0.08);
  --shadow-md: 0 10px 30px rgba(6, 31, 17, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 31, 17, 0.18);
  --shadow-gold: 0 10px 30px rgba(201, 162, 75, 0.25);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.55s;
  --dur-slow: 0.9s;

  --header-h: 84px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Jost', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream-100);
  color: var(--ink-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--forest-700); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

html { scrollbar-color: var(--forest-600) var(--cream-200); scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb { background: var(--forest-600); border-radius: 999px; border: 3px solid var(--cream-200); }
::-webkit-scrollbar-thumb:hover { background: var(--forest-800); }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.65rem); }
.section-head p { color: var(--ink-500); margin-top: 14px; font-size: 1.05rem; }

section { position: relative; padding: 110px 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-900));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(11, 74, 38, 0.35); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--forest-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 16px 40px rgba(201, 162, 75, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--forest-800);
  border: 1.5px solid var(--forest-800);
}
.btn-ghost:hover { background: var(--forest-800); color: var(--white); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.95); color: var(--forest-900); }

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ==========================================================================
   Age Gate
   ========================================================================== */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, var(--forest-800), var(--forest-950) 70%);
  transition: opacity 0.6s var(--ease-soft), visibility 0.6s;
}
#age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate__leaf-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.15;
}
.age-gate__leaf-field span {
  position: absolute;
  top: -10%;
  font-size: 2rem;
  color: var(--forest-300);
  animation: leafFall linear infinite;
}

.age-gate__card {
  position: relative;
  width: min(460px, 90%);
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 52px 40px 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: gateIn 0.7s var(--ease-out) both;
}
.age-gate__card img { width: 84px; margin-inline: auto 14px; }
.age-gate__card h2 { font-size: 1.6rem; margin: 18px 0 10px; }
.age-gate__card p { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 30px; }
.age-gate__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-gate__fine { margin-top: 22px; font-size: 0.75rem; color: var(--ink-500); }
.age-gate__deny-msg {
  display: none;
  margin-top: 18px;
  color: #a13a2f;
  font-size: 0.85rem;
  font-weight: 600;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes leafFall {
  to { transform: translateY(120vh) rotate(360deg); }
}

/* ==========================================================================
   Header
   ========================================================================== */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), height var(--dur-med) var(--ease-out);
}
header.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; transition: height var(--dur-med) var(--ease-out), width var(--dur-med) var(--ease-out); }
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem; line-height: 1.1; color: var(--white); transition: color var(--dur-med); }
.brand-name small { display: block; font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; font-weight: 500; color: var(--gold-400); text-transform: uppercase; }

nav.main-nav ul { display: flex; align-items: center; gap: 38px; }
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast);
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--dur-fast) var(--ease-out);
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 600; font-size: 0.9rem;
}
.header-call svg { flex-shrink: 0; }

header.site-header.scrolled {
  height: 68px;
  background: rgba(6, 31, 17, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}
header.site-header.scrolled .brand img { height: 42px; width: 42px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: all var(--dur-fast) var(--ease-out); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 45%, var(--forest-800) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1491424583709-acd79e5b0925?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero__mesh {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 12% 18%, rgba(77, 171, 109, 0.38), transparent 60%),
    radial-gradient(ellipse 45% 42% at 92% 8%, rgba(221, 192, 122, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 55% at 60% 105%, rgba(6, 31, 17, 0.65), transparent 65%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2%, 2%) scale(1.06); }
}

.hero__fade-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--cream-100));
  pointer-events: none;
}

.hero__leaves { position: absolute; inset: 0; pointer-events: none; }
.hero__leaves .leaf {
  position: absolute;
  opacity: 0.5;
  color: var(--forest-400);
  animation: floatLeaf 9s ease-in-out infinite;
}
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(12deg); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
  color: var(--white);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); animation: pulse 1.8s ease-in-out infinite; }

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: var(--white);
  margin: 24px 0 22px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.25s forwards;
}
.hero h1 em { color: var(--gold-400); font-style: normal; }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.55s forwards;
}

.hero__stats {
  display: flex; gap: 42px; margin-top: 64px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}
.hero__stats div strong { display: block; font-family: 'Fraunces', serif; font-size: 1.9rem; color: var(--white); }
.hero__stats div span { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; }

.hero__visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}
.hero__visual-blob {
  position: absolute;
  top: -40px; right: -20px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  filter: blur(70px);
  opacity: 0.4;
  z-index: -1;
  animation: blobFloat 10s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, 16px); }
}
.hero__visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.08);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease-out);
}
.hero__visual:hover .hero__visual-card { transform: rotate(0deg) scale(1.02); }
.hero__visual-card img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-badge {
  position: absolute;
  left: -20px; bottom: -22px;
  background: rgba(6, 31, 17, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: hoverCard 4s ease-in-out infinite;
}
.hero__visual-badge .ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--forest-950);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__visual-badge strong { display: block; color: var(--white); font-family: 'Fraunces', serif; font-size: 1.05rem; line-height: 1.2; }
.hero__visual-badge span:not(.ic) { font-size: 0.68rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold-400), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Trust marquee
   ========================================================================== */
.marquee {
  background: linear-gradient(90deg, var(--forest-900), var(--forest-800), var(--forest-900));
  overflow: hidden;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee__track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.marquee__dot { color: var(--gold-500) !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="left"].in-view { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="right"].in-view { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].in-view { transform: scale(1); }

/* stagger children via inline --d custom property */
[data-reveal] { transition-delay: var(--d, 0s); }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--cream-100); }
.about .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about__media:hover img { transform: scale(1.03); }
.about__media .float-card {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: hoverCard 4s ease-in-out infinite;
}
.about__media .float-card .ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest-100); color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
}
.about__media .float-card strong { display: block; font-size: 1.2rem; color: var(--forest-900); }
.about__media .float-card span { font-size: 0.78rem; color: var(--ink-500); }
@keyframes hoverCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about__body p { color: var(--ink-500); margin-bottom: 18px; font-size: 1.03rem; }
.about__checks { margin: 28px 0 34px; display: grid; gap: 14px; }
.about__checks li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-900); }
.about__checks li .tick {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--forest-800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* ==========================================================================
   Category showcase (informational only — not a shop)
   ========================================================================== */
.categories { background: var(--forest-950); color: var(--white); position: relative; overflow: hidden; }
.categories::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(47,145,85,0.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,162,75,0.15), transparent 40%);
}
.categories .section-head h2, .categories .section-head p { color: var(--white); }
.categories .section-head p { color: rgba(255,255,255,0.65); }
.categories .eyebrow { color: var(--gold-400); }
.categories .eyebrow::before { background: var(--gold-400); }

.cat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med), border-color var(--dur-med), box-shadow var(--dur-med);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--forest-400));
  border-radius: 0 0 4px 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
  border-color: var(--gold-500);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.cat-card .ic {
  width: 58px; height: 58px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--forest-600), var(--forest-800));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform var(--dur-med) var(--ease-out);
}
.cat-card:nth-child(3n+2) .ic { background: linear-gradient(135deg, var(--gold-500), var(--forest-700)); }
.cat-card:nth-child(3n+3) .ic { background: linear-gradient(135deg, var(--forest-400), var(--forest-900)); }
.cat-card:hover .ic { transform: rotate(-8deg) scale(1.08); }
.cat-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.cat-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.cat-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.cat-card:hover .cat-card__link { opacity: 1; transform: translateX(0); }

.categories .note {
  position: relative;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.section-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 1;
}
.section-divider svg { width: 100%; height: 80px; display: block; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--cream-100); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(4) { grid-column: span 2; }
.gallery-grid figure:nth-child(6) { grid-row: span 2; }

.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.gallery-grid figure:hover img { transform: scale(1.12); filter: saturate(1.15); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(6,31,17,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(110%);
  transition: transform var(--dur-med) var(--ease-out);
}
.gallery-grid figure:hover figcaption { transform: translateY(0); }

/* ==========================================================================
   Location
   ========================================================================== */
.location { background: var(--forest-100); position: relative; }
.location .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-200);
}
.info-row:last-of-type { border-bottom: none; }
.info-row > div { min-width: 0; }
.info-row .ic {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest-100); color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.info-row:hover .ic { transform: scale(1.1) rotate(-6deg); background: var(--forest-800); color: var(--white); }
.info-row strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 4px; }
.info-row a, .info-row span.value {
  font-size: 1.08rem; font-weight: 600; color: var(--forest-900);
  overflow-wrap: break-word; word-break: break-word;
}
.info-row a:hover { color: var(--gold-500); }

.hours-list { display: grid; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--ink-700); }
.hours-list li span:last-child { font-weight: 600; color: var(--forest-900); }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.15) contrast(1.05); transition: filter var(--dur-med); }
.map-wrap:hover iframe { filter: grayscale(0) contrast(1); }
.map-wrap .map-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-900);
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
  pointer-events: none;
}
.map-wrap .map-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #e0574a; animation: pulse 1.6s ease-in-out infinite; }
.map-wrap .map-open {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 2;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--forest-800), var(--forest-950));
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-inline: auto;
  width: min(1180px, 92%);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(201,162,75,0.25), transparent 50%);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 10px; position: relative; }
.cta-banner .actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--forest-950);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 0;
  margin-top: 100px;
}
footer.site-footer::before {
  content: 'NANOOSE NATURES';
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3rem, 13vw, 10rem);
  color: rgba(255,255,255,0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
footer.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 50px; width: 50px; border-radius: 50%; }
.footer-brand strong { color: var(--white); font-family: 'Fraunces', serif; font-size: 1.15rem; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; letter-spacing: 0.04em; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color var(--dur-fast), padding-left var(--dur-fast); }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--forest-950); transform: translateY(-4px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom .legal-note { color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Floating call button (mobile)
   ========================================================================== */
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 400;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-600), var(--forest-800));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: floatPulse 2.4s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(11,74,38,0.4), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 14px rgba(11,74,38,0), var(--shadow-lg); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero__content { max-width: 640px; }
  .hero__badge, .hero__actions, .hero__stats { justify-content: center; }
  .hero__visual { margin-top: 40px; max-width: 320px; }
  .about .grid { grid-template-columns: 1fr; }
  .about__media img { height: 360px; }
  .location .grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid figure { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  nav.main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--forest-950); flex-direction: column; padding: 110px 36px 40px;
    transform: translateX(100%); transition: transform var(--dur-med) var(--ease-out); }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .nav-toggle { display: flex; }
  .header-call span { display: none; }
  .header-buy { padding: 10px 12px; }
  .header-buy span { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; }
  .hero__stats { gap: 28px; }
  .location-card { padding: 32px 26px; }
  .age-gate__card { padding: 40px 26px 34px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.05rem; }
  .brand img { height: 40px; width: 40px; }
  header.site-header.scrolled .brand img { height: 36px; width: 36px; }
  .btn { padding: 13px 24px; font-size: 0.88rem; }
  .hero__stats { gap: 20px 28px; }
  .hero__stats div strong { font-size: 1.5rem; }
  .about__media .float-card { left: 0; right: 0; bottom: -24px; padding: 16px 18px; }
  .location-card { padding: 26px 20px; }
  .age-gate__card { padding: 32px 20px 28px; }
  .cta-banner { padding: 34px 20px; }
  .hero__visual { max-width: 240px; }
  .hero__visual-blob { width: 220px; height: 220px; top: -20px; right: -10px; }
  .hero__visual-badge { left: 0; right: 0; margin-inline: auto; width: max-content; bottom: -18px; padding: 10px 16px; }
  .marquee__track span { font-size: 0.72rem; }
  .marquee__track { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
