/* ═══════════════════════════════════════════════
   මල්කා — EDITORIAL DESIGN SYSTEM
   No templates. No shortcuts. Just craft.
   ═══════════════════════════════════════════════ */

/* ─── UTILITIES ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── TOKENS ─── */
:root {
  --stone: #1B2E20;
  --bark: #3A5240;
  --clay: #C4713B;
  --saffron: #E8A838;
  --gold: #D4A34A;
  --leaf: #2D5A27;
  --leaf-muted: #4A8A42;
  --cream: #FAFAF5;
  --parch: #F0EDE6;
  --warm: #F5F3ED;
  --milk: #FFFFFF;
  --ink: #0F1A12;
  --smoke: #5E6B5A;
  --mist: rgba(27, 46, 32, .06);
  --accent: #B85C38;
  --glow: rgba(232, 168, 56, .12);

  --ff-serif: 'DM Serif Display', 'Georgia', serif;
  --ff-sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --ff-hand: 'Caveat', cursive;
  --ff-sinhala: 'Abhaya Libre', 'Noto Serif Sinhala', serif;
  --ff-sinhala-display: 'Gemunu Libre', 'Abhaya Libre', sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --nav-h: 80px;
  --container: 1280px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  background-image: radial-gradient(circle at 20% 50%, rgba(45, 90, 39, .03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 168, 56, .04) 0%, transparent 40%);
  color: var(--stone);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: -.01em;
}

/* ── Custom Scroll Indicator ── */
.scroll-track {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.scroll-track.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, .04) 30%, rgba(44, 24, 16, .04) 70%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}

.scroll-track:hover::before {
  opacity: 1;
}

.scroll-track:hover {
  width: 14px;
}

.scroll-thumb {
  position: absolute;
  right: 2px;
  width: 6px;
  min-height: 48px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--clay), var(--saffron));
  box-shadow: 0 0 8px rgba(196, 113, 59, .3), inset 0 0 0 0.5px rgba(255, 255, 255, .2);
  transition: width .25s var(--ease-out), right .25s var(--ease-out),
    box-shadow .25s, border-radius .25s;
  cursor: grab;
}

.scroll-thumb:active {
  cursor: grabbing;
}

.scroll-track:hover .scroll-thumb {
  width: 10px;
  right: 2px;
  box-shadow: 0 0 16px rgba(196, 113, 59, .45), inset 0 0 0 0.5px rgba(255, 255, 255, .25);
}

/* pulsing glow on idle */
@keyframes scrollGlow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(196, 113, 59, .25);
  }

  50% {
    box-shadow: 0 0 14px rgba(196, 113, 59, .5);
  }
}

.scroll-thumb.idle {
  animation: scrollGlow 2.5s ease-in-out infinite;
}

/* scroll % label */
.scroll-pct {
  position: absolute;
  right: 22px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--clay);
  background: var(--milk);
  border: 1px solid rgba(44, 24, 16, .08);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s var(--ease-out);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(44, 24, 16, .08);
}

.scroll-track:hover .scroll-pct,
.scroll-track.dragging .scroll-pct {
  opacity: 1;
  transform: translateX(0);
}

[data-theme="dark"] .scroll-track::before {
  background: linear-gradient(180deg, transparent 0%, rgba(253, 248, 240, .03) 30%, rgba(253, 248, 240, .03) 70%, transparent 100%);
}

[data-theme="dark"] .scroll-thumb {
  background: linear-gradient(180deg, var(--clay), var(--saffron));
  box-shadow: 0 0 8px rgba(232, 168, 56, .3), inset 0 0 0 0.5px rgba(255, 255, 255, .1);
}

[data-theme="dark"] .scroll-track:hover .scroll-thumb {
  box-shadow: 0 0 16px rgba(232, 168, 56, .5), inset 0 0 0 0.5px rgba(255, 255, 255, .15);
}

[data-theme="dark"] .scroll-pct {
  background: #1A1310;
  color: var(--saffron);
  border-color: rgba(253, 248, 240, .08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

/* Desktop-only custom cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  button {
    cursor: none;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  button,
  a,
  input,
  textarea {
    cursor: pointer;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font-family: var(--ff-sans);
  font-size: 16px;
  /* prevent iOS zoom */
}

::selection {
  background: var(--saffron);
  color: var(--stone);
}

/* ─── LOW-BANDWIDTH MODE ─── */
.save-data .hero-img-stack,
.save-data .story-visual {
  display: none;
}

.save-data .hero-grid {
  grid-template-columns: 1fr;
}

.save-data .mosaic {
  display: none;
}

.save-data #petal-canvas {
  display: none;
}

.save-data .card-media {
  aspect-ratio: 3/2;
}

.save-data .loader {
  display: none;
}

/* Image loading placeholder */
.card-media img,
.mosaic-item img,
.hero-img img,
.story-photo img,
.story-photo-accent img {
  background: var(--parch);
  transition: opacity .4s var(--ease-out);
}

/* Content-visibility for off-screen sections (paint on demand) */
.collection,
.gallery,
.voices,
.cta,
.reach,
.foot {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ─── PRELOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease-out), visibility .6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 80px rgba(232, 168, 56, .4), 0 0 160px rgba(232, 168, 56, .12);
  animation: loaderLogoFloat 2s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--saffron);
  border-bottom-color: var(--clay);
  animation: loaderSpin 2s linear infinite;
}

.loader-mark {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.loader-tagline {
  font-family: var(--ff-serif);
  font-size: 15px;
  color: rgba(253, 248, 240, .45);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, .15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  width: 0;
  height: 100%;
  background: var(--saffron);
  animation: loaderFill 1.8s var(--ease-out) forwards;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderLogoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform .15s var(--ease-out), opacity .2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: exclusion;
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--clay);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform .08s;
}

.cursor.hovering {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--saffron);
}

@media (pointer: coarse) {

  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

/* ─── PETAL CANVAS ─── */
#petal-canvas {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .4;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background .5s, box-shadow .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 250, 245, .75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 30px rgba(27, 46, 32, .06);
  border-bottom-color: rgba(27, 46, 32, .06);
}

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

.nav-logo-wrap {
  position: relative;
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(196, 113, 59, .25);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(196, 113, 59, .4);
}

.nav-logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  opacity: .5;
  transition: opacity .3s;
}

.nav-brand:hover .nav-logo-ring {
  opacity: 1;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .02em;
}

.nav-sub {
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
  transition: color .3s;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clay), var(--saffron));
  border-radius: 2px;
  transition: width .4s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-contact {
  background: var(--stone) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  font-size: 12px !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  transition: background .3s, transform .3s, box-shadow .3s !important;
  box-shadow: 0 2px 12px rgba(27, 46, 32, .15);
}

.nav-contact::after {
  display: none !important;
}

.nav-contact:hover {
  background: var(--clay) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(196, 113, 59, .25) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--stone);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(3px, 5px);
}

.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(3px, -5px);
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.mob-menu.open {
  opacity: 1;
  visibility: visible;
}

.mob-logo-wrap {
  margin-bottom: 48px;
  text-align: center;
}

.mob-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 56px rgba(196, 113, 59, .3);
  border: 3px solid var(--saffron);
}

.mob-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mob-menu a {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 400;
  letter-spacing: .01em;
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    padding: 0 clamp(12px, 4vw, 40px);
    height: 72px;
  }

  .nav-logo-wrap {
    width: 52px;
    height: 52px;
  }

  .nav-logo-img {
    width: 46px;
    height: 46px;
  }

  .nav-brand {
    gap: 10px;
  }

  .nav-name.sinhala-display {
    font-size: 20px;
  }

  .nav-sub {
    font-size: 10px;
    letter-spacing: .12em;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(45, 90, 39, .06) 0%, rgba(232, 168, 56, .04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: .6;
  }

  100% {
    transform: translate(-3%, 5%) scale(1.1);
    opacity: 1;
  }
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  padding-right: 20px;
}

/* Hero brand badge — logo + text lockup */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
}

.hero-badge-text-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 82px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.hero-heading em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clay) 20%, var(--saffron) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--smoke);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Buttons */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--stone);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .3s, transform .2s;
  min-height: 48px;
  /* touch target */
}

.btn-fill:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

@media (pointer: coarse) {
  .btn-fill:hover {
    transform: none;
  }

  .btn-fill:active {
    background: var(--clay);
    transform: scale(.97);
  }
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .3s;
  min-height: 48px;
  /* touch target */
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}

@media (pointer: coarse) {
  .btn-wa:hover {
    transform: none;
  }

  .btn-wa:active {
    transform: scale(.97);
  }
}

.btn-wa-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--stone);
  color: var(--stone);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .3s, color .3s;
}

.btn-ghost:hover {
  background: var(--stone);
  color: var(--cream);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 600;
  display: block;
  line-height: 1.1;
}

.stat-num small {
  font-size: 18px;
  font-weight: 400;
}

.stat-label {
  font-size: 13px;
  color: var(--smoke);
  margin-top: 2px;
  display: block;
}

/* Hero images — stacked editorial */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-1 {
  width: 72%;
  height: 80%;
  right: 4%;
  bottom: 0;
  z-index: 3;
  transform: rotate(-2deg);
}

.hero-img-2 {
  width: 48%;
  height: 55%;
  left: 0;
  top: 5%;
  z-index: 2;
  transform: rotate(3deg);
  border: 3px solid var(--cream);
}

.hero-img-3 {
  width: 36%;
  height: 38%;
  right: 0;
  top: 0;
  z-index: 1;
  transform: rotate(-4deg);
  border: 3px solid var(--cream);
}

.hero-handnote {
  position: absolute;
  z-index: 5;
}

.hero-handnote-img {
  bottom: -90px;
  right: 2%;
  height: 72px;
  width: auto;
  object-fit: contain;
  transform: rotate(-3deg);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 20px;
  height: 32px;
  border: 2px solid var(--smoke);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 8px;
  background: var(--smoke);
  border-radius: 3px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: .3;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
    padding: calc(72px + 24px) 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero-img-stack {
    max-width: 300px;
  }

  .hero-handnote {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(72px + 16px) 0 32px;
  }

  .hero-badge {
    padding: 0;
    gap: 10px;
  }

  .hero-badge-text-img {
    height: 52px;
  }

  .hero-heading {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn-fill,
  .hero-actions .btn-wa {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero-right {
    margin-top: 16px;
  }

  .hero-img-stack {
    max-width: 240px;
  }

  .hero-stats {
    gap: 20px;
    padding-top: 16px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ─── MARQUEE ─── */
.marquee {
  padding: 18px 0;
  background: linear-gradient(135deg, var(--stone) 0%, #1a3825 50%, var(--stone) 100%);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.marquee-inner {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.mq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232, 168, 56, .4);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* ─── SECTION NUMBERS ─── */
.section-num {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--clay);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 12px;
}

/* ─── EDITORIAL HEADING ─── */
.editorial-heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.editorial-heading em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── HANDWRITTEN NOTES ─── */
.handnote {
  font-family: var(--ff-hand);
  font-size: 19px;
  color: var(--clay);
  display: inline-block;
}

/* ─── STORY ─── */
.story {
  padding: 80px 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
  transform: rotate(-1.5deg);
}

.story-photo img {
  width: 100%;
  display: block;
}

.story-photo-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  border: 4px solid var(--cream);
  transform: rotate(3deg);
}

.story-note {
  position: absolute;
}

.story-note-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  top: -76px;
  right: -30px;
}

.story-body {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.8;
}

.story-body p {
  margin-bottom: 16px;
}

.story-body strong {
  color: var(--stone);
}

.story-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.proof-icon {
  color: var(--leaf);
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    max-width: 340px;
    margin: 0 auto 40px;
  }

  .story-photo-accent {
    right: -10px;
    bottom: -10px;
    width: 38%;
  }

  .story-note-img {
    display: none;
  }
}

@media (max-width: 480px) {
  .story {
    padding: 40px 0;
  }

  .story-visual {
    max-width: 280px;
  }

  .story-body {
    font-size: 14px;
  }
}

/* ─── COLLECTION ─── */
.collection {
  padding: 60px 0 80px;
}

.collection-header {
  max-width: 600px;
  margin-bottom: 48px;
}

.collection-sub {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.7;
}

/* Filters */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  background: var(--parch);
  color: var(--smoke);
  transition: all .3s var(--ease-out);
  min-height: 44px;
  /* touch target */
  white-space: nowrap;
}

.filter:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.filter.active {
  background: var(--stone);
  color: var(--cream);
  border-color: var(--stone);
}

/* Product Grid — editorial mixed sizes */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-extra {
  margin-top: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-out), opacity .4s;
  opacity: 0;
}

.grid-extra.visible {
  max-height: 4000px;
  opacity: 1;
}

/* Cards */
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(27, 46, 32, .06);
  border: 1px solid rgba(27, 46, 32, .04);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 46, 32, .12), 0 0 0 1px rgba(196, 113, 59, .1);
  border-color: rgba(196, 113, 59, .15);
}

.card-lg {
  grid-column: span 1;
}

.card-link {
  display: block;
  height: 100%;
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--parch);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.card:hover .card-media img {
  transform: scale(1.05);
}

/* Glassmorphism overlay on card hover */
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 58, 45, .55) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.card:hover .card-media::after {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-best {
  background: var(--saffron);
  color: var(--stone);
}

.badge-new {
  background: var(--leaf);
  color: #fff;
}

.badge-prem {
  background: var(--stone);
  color: var(--gold);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.card-body p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 600;
}

.card-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--saffron);
  margin-left: auto;
  padding-left: 8px;
}

.card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  transition: transform .2s;
}

.card:hover .card-cta {
  transform: translateX(4px);
}

/* Card is filtered out */
.card.filtered-out {
  display: none;
}

/* Large cards get taller images on desktop */
@media (min-width: 841px) {
  .card-lg .card-media {
    aspect-ratio: 3/4;
  }
}

.load-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-load {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--stone);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background .3s, color .3s, transform .2s;
}

.btn-load:hover {
  background: var(--stone);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-load.loaded {
  display: none;
}

@media (max-width: 840px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .card-lg {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-lg {
    grid-column: span 2;
  }

  .card-media {
    aspect-ratio: 3/4;
  }
}

/* ─── PULLQUOTE ─── */
.pullquote {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--stone) 0%, #1a3825 40%, #0F1A12 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* CSS leaf decoration on pullquote */
.pullquote::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 180px;
  height: 260px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 180' fill='none' stroke='rgba(212,163,74,0.12)' stroke-width='0.8'%3E%3Cpath d='M60,10 Q20,50 30,100 Q40,150 60,170 Q80,150 90,100 Q100,50 60,10Z'/%3E%3Cpath d='M60,30 L60,150'/%3E%3Cpath d='M45,60 L60,75 L75,60'/%3E%3Cpath d='M40,90 L60,110 L80,90'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .6;
  pointer-events: none;
  transform: rotate(15deg);
}

.pullquote::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 168, 56, .06) 0%, transparent 60%);
  pointer-events: none;
}

.pq {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 60px);
  line-height: 1.2;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.pq em {
  font-style: italic;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pq-mark {
  font-size: 1.5em;
  color: var(--clay);
  opacity: .4;
  vertical-align: -.1em;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 60px 0 80px;
}

.gallery-header {
  margin-bottom: 48px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.mosaic-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #fff;
  padding: 6px 6px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(27, 46, 32, .08), 0 1px 4px rgba(0, 0, 0, .06);
  transition: transform .5s var(--ease-out), box-shadow .5s;
  /* Film-strip perforations */
  background-image:
    repeating-linear-gradient(to right, transparent 0, transparent 10px, rgba(27, 46, 32, .04) 10px, rgba(27, 46, 32, .04) 12px);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.mosaic-item:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.mosaic-item:nth-child(even) {
  transform: rotate(1.2deg);
}

.mosaic-item:nth-child(3n) {
  transform: rotate(-2deg);
}

.mosaic-item:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 16px 48px rgba(27, 46, 32, .18);
  z-index: 2;
}

.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 46, 32, .3) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.mosaic-item:hover::after {
  opacity: 1;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mi-tall {
  grid-row: span 2;
}

.mi-wide {
  grid-column: span 2;
}

@media (max-width: 840px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .mi-wide {
    grid-column: span 2;
  }

  .mi-tall {
    grid-row: span 1;
  }
}

/* ─── VOICES ─── */
.voices {
  padding: 60px 0 80px;
  background: var(--parch);
}

.voice-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 2px 20px rgba(27, 46, 32, .06);
  border: 1px solid rgba(27, 46, 32, .04);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
  position: relative;
  overflow: hidden;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--clay), var(--saffron));
  opacity: 0;
  transition: opacity .4s;
}

.voice-card:hover::before {
  opacity: 1;
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(27, 46, 32, .1);
  border-color: rgba(196, 113, 59, .1);
}

.vc-featured {
  background: var(--stone);
  color: var(--cream);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vc-featured .vc-rating {
  color: var(--saffron);
}

.vc-featured .vc-who span {
  color: rgba(255, 255, 255, .5);
}

.vc-rating {
  color: var(--saffron);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.vc-text {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.vc-featured .vc-text {
  font-size: 20px;
}

.vc-who {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-who strong {
  font-size: 14px;
}

.vc-who span {
  font-size: 13px;
  color: var(--smoke);
}

@media (max-width: 480px) {
  .vc-who strong {
    font-size: 13px;
  }

  .vc-who span {
    font-size: 12px;
  }

  .vc-rating {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* ─── CTA ─── */
.cta {
  padding: 70px 0;
}

.cta-inner {
  background: linear-gradient(135deg, #1a3a22 0%, var(--leaf) 30%, #2a6630 70%, #1a3a22 100%);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 10vw, 100px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(232, 168, 56, .1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 113, 59, .08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, .03) 50%, transparent 60%);
  animation: ctaShimmer 8s linear infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% {
    transform: translateX(-30%) translateY(-30%);
  }

  100% {
    transform: translateX(30%) translateY(30%);
  }
}

.cta-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  opacity: .85;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
}

/* ─── REACH ─── */
.reach {
  padding: 60px 0 80px;
}

.reach-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.reach-desc {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.reach-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.rd {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.rd-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 80px;
}

.rd-value {
  font-size: 15px;
}

.reach-socials {
  display: flex;
  gap: 16px;
}

.reach-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--parch);
  color: var(--stone);
  transition: background .3s, color .3s;
}

.reach-socials a:hover {
  background: var(--stone);
  color: var(--cream);
}

/* Form */
.reach-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-row {
  display: flex;
  gap: 14px;
}

.f-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(44, 24, 16, .12);
  border-radius: var(--radius);
  background: #fff;
  font-size: 15px;
  color: var(--stone);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 113, 59, .1);
}

input::placeholder,
textarea::placeholder {
  color: #b3a79c;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
}

.form-alt-contact {
  font-size: 13px;
  color: var(--smoke);
  opacity: .7;
  margin-top: 12px;
  text-align: center;
}

.form-alt-contact a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Toast Notification ── */
.malka-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--stone);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(44, 24, 16, .2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 10000;
}

.malka-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (max-width: 840px) {
  .reach-layout {
    grid-template-columns: 1fr;
  }

  .f-row {
    flex-direction: column;
  }

  .reach-details {
    gap: 12px;
  }

  .rd {
    flex-direction: column;
    gap: 2px;
  }

  .rd-label {
    min-width: auto;
  }
}

/* ─── FOOTER ─── */
.foot {
  background: var(--stone);
  color: var(--cream);
  padding: 64px 0 0;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: none;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Gradient separator line */
.foot-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--clay) 20%, var(--saffron) 50%, var(--gold) 80%, transparent 100%);
  border-radius: 2px;
}

/* Newsletter form styles */
.foot-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.foot-newsletter-text h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}

.foot-newsletter-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  max-width: 360px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  flex: 1;
  position: relative;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-right: none;
  border-radius: 100px 0 0 100px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .4s, background .4s, box-shadow .4s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--saffron);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 24px rgba(232, 168, 56, .15), inset 0 0 0 1px rgba(232, 168, 56, .1);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 0 100px 100px 0;
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s, box-shadow .3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 113, 59, .4);
}

@media (max-width: 640px) {
  .foot-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .newsletter-form {
    width: 100%;
    max-width: none;
  }
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.foot-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(232, 168, 56, .3);
}

.foot-logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(232, 168, 56, .4);
}

.foot-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.foot-name {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.foot-eng {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .6;
  display: block;
}

.foot-tagline {
  font-family: var(--ff-hand);
  font-size: 14px;
  color: var(--clay);
  opacity: .8;
  display: block;
  margin-top: 2px;
}

.foot-cols {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}

.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

@media (max-width: 640px) {
  .foot-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .foot-brand {
    gap: 16px;
  }

  .foot-cols {
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
  }

  .foot-col {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .foot-cols {
    gap: 20px;
  }

  .foot-col {
    flex: 1 1 100%;
  }
}

/* ─── LIGHTBOX ─── */
.lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.lb.open {
  opacity: 1;
  visibility: visible;
}

.lb img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  color: #fff;
  opacity: .7;
  transition: opacity .3s;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lb-close:hover {
  opacity: 1;
}

/* ─── BACK TO TOP ─── */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--cream);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
}

.btt.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover {
  background: var(--clay);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: transform .3s, box-shadow .3s;
}

.wa-btn svg {
  width: 28px;
  height: 28px;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}

.wa-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ─── SCROLL REVEAL ─── */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-up.d2 {
  transition-delay: .1s;
}

.anim-up.d3 {
  transition-delay: .2s;
}

.anim-up.d4 {
  transition-delay: .3s;
}

.anim-up.d5 {
  transition-delay: .4s;
}

.anim-fade {
  opacity: 0;
  transition: opacity .8s var(--ease-out) .15s;
}

.anim-fade.visible {
  opacity: 1;
}

.reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE FINE-TUNING ─── */
@media (max-width: 480px) {
  .editorial-heading {
    font-size: 24px;
  }

  .pq {
    font-size: 20px;
    padding: 0 8px;
  }

  .collection,
  .gallery,
  .voices {
    padding: 40px 0;
  }

  .cta {
    padding: 30px 0;
  }

  .reach {
    padding: 40px 0;
  }

  .collection-header {
    margin-bottom: 24px;
  }

  .filter-row {
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter {
    font-size: 12px;
    padding: 8px 14px;
    flex-shrink: 0;
  }

  .card-body {
    padding: 10px;
  }

  .card-body h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .card-body p {
    font-size: 11px;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .price {
    font-size: 14px;
  }

  .card-cta {
    font-size: 11px;
  }

  .card-rating {
    font-size: 10px;
    gap: 2px;
  }

  .voice-card {
    padding: 18px;
  }

  .vc-text {
    font-size: 14px;
  }

  .vc-featured .vc-text {
    font-size: 16px;
  }

  .cta-inner {
    padding: 28px 16px;
  }

  .cta-heading {
    font-size: 22px;
  }

  .cta-desc {
    font-size: 14px;
  }

  .reach-desc {
    font-size: 14px;
  }

  input,
  textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .btn-submit {
    padding: 14px;
  }

  .foot {
    padding: 32px 0 0;
  }

  .foot-logo-wrap {
    width: 72px;
    height: 72px;
  }

  .foot-logo {
    width: 64px;
    height: 64px;
  }

  .foot-name.sinhala-display {
    font-size: 18px;
  }

  .foot-eng {
    font-size: 11px;
  }

  .foot-tagline {
    font-size: 12px;
  }

  .wa-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    left: 16px;
  }

  .wa-btn svg {
    width: 24px;
    height: 24px;
  }

  .btt {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .pullquote {
    padding: 40px 0;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 26px;
  }

  .editorial-heading {
    font-size: 22px;
  }

  .nav-name.sinhala-display {
    font-size: 17px;
  }

  .nav-logo-wrap {
    width: 44px;
    height: 44px;
  }

  .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .hero-badge {
    margin-bottom: 12px;
  }

  .hero-badge-text-img {
    height: 42px;
  }

  .mob-logo {
    width: 100px;
    height: 100px;
  }

  .card-body {
    padding: 8px;
  }

  .card-body h3 {
    font-size: 13px;
  }

  .card-body p {
    font-size: 10px;
  }

  .price {
    font-size: 13px;
  }

  .grid {
    gap: 8px;
  }
}

/* ─── PRINT ─── */
/* ─── SINHALA TYPOGRAPHY ─── */
.sinhala-display {
  font-family: var(--ff-sinhala-display);
  font-weight: 700;
  letter-spacing: .04em;
}

.sinhala-hero {
  font-family: var(--ff-sinhala);
  font-weight: 800;
  letter-spacing: .06em;
}

/* Nav brand — Sinhala name treatment */
.nav-name.sinhala-display {
  font-family: var(--ff-sinhala-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .03em;
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

/* Loader — large Sinhala splash */
.loader-mark.sinhala-hero {
  font-family: var(--ff-sinhala);
  font-weight: 800;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--cream), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Footer — Sinhala brand */
.foot-name.sinhala-display {
  font-family: var(--ff-sinhala-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .03em;
}

/* ─── PRODUCT DETAIL PAGE ─── */
.pd {
  padding: calc(var(--nav-h) + 40px) 0 80px;
  min-height: 80vh;
}

.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--smoke);
  margin-bottom: 32px;
  transition: color .3s;
}

.pd-back:hover {
  color: var(--clay);
}

.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.pd-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.pd-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--parch);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.pd-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.pd-img-wrap .card-badge {
  top: 20px;
  left: 20px;
  font-size: 12px;
  padding: 6px 16px;
}

.pd-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 8px;
}

.pd-name {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.pd-desc {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pd-details {
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 20px 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-detail-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.pd-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 100px;
  flex-shrink: 0;
}

.pd-detail-value {
  font-size: 15px;
  color: var(--stone);
}

.pd-avail {
  color: var(--leaf);
  font-weight: 600;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pd-price {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--stone);
}

.pd-shipping {
  font-size: 17px;
  color: var(--clay);
}

.pd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pd-actions .btn-wa-lg {
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.pd-actions .btn-ghost {
  flex: 0 0 auto;
}

.pd-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}

.pd-promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--smoke);
}

.pd-promise-item svg {
  color: var(--leaf);
  flex-shrink: 0;
}

.pd-delivery-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--smoke);
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--parch), var(--cream));
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .3s;
}

.pd-delivery-link:hover {
  box-shadow: 0 4px 16px rgba(44, 24, 16, .1);
}

.pd-delivery-link svg {
  color: var(--clay);
  flex-shrink: 0;
}

.pd-delivery-link strong {
  color: var(--leaf);
}

.pd-delivery-link span {
  color: var(--clay);
  font-weight: 600;
}

/* Responsive — Product Detail */
@media (max-width: 840px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pd-gallery {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pd {
    padding: calc(72px + 12px) 0 40px;
  }

  .pd-back {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .pd-name {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .pd-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .pd-detail-row {
    flex-direction: column;
    gap: 2px;
  }

  .pd-detail-label {
    min-width: auto;
    font-size: 11px;
  }

  .pd-detail-value {
    font-size: 14px;
  }

  .pd-price {
    font-size: 20px;
  }

  .pd-shipping {
    font-size: 14px;
  }

  .pd-actions {
    flex-direction: column;
    gap: 10px;
  }

  .pd-actions .btn-wa-lg,
  .pd-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .pd-gallery {
    max-width: 100%;
  }

  .pd-promise-item {
    font-size: 13px;
  }
}


/* ─── SEARCH BAR ─── */
.search-bar {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  border: 1.5px solid rgba(44, 24, 16, .1);
  padding: 0 20px;
  height: 52px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: border-color .3s, box-shadow .3s;
}

.search-bar:focus-within {
  border-color: var(--clay);
  box-shadow: 0 4px 20px rgba(196, 113, 59, .12);
}

.search-icon {
  color: var(--smoke);
  flex-shrink: 0;
  margin-right: 12px;
}

.search-bar input {
  border: none;
  outline: none;
  background: none;
  flex: 1;
  font-size: 15px;
  color: var(--stone);
  padding: 0;
  height: 100%;
}

.search-bar input::placeholder {
  color: #b3a79c;
}

.search-clear {
  font-size: 22px;
  color: var(--smoke);
  padding: 4px 8px;
  display: none;
  transition: color .2s;
  cursor: pointer;
}

.search-clear.visible {
  display: block;
}

.search-clear:hover {
  color: var(--clay);
}

.search-no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--smoke);
  font-size: 16px;
  display: none;
}

.search-no-results.visible {
  display: block;
}

/* ─── CONTROLS ROW (filters + sort) ─── */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.controls-row .filter-row {
  margin-bottom: 0;
}

.sort-wrap {
  flex-shrink: 0;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 40px 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  font-family: var(--ff-sans);
  border: 1.5px solid rgba(44, 24, 16, .12);
  background: #fff url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B5D52' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center;
  color: var(--smoke);
  cursor: pointer;
  min-height: 44px;
  transition: border-color .3s;
}

.sort-select:hover,
.sort-select:focus {
  border-color: var(--clay);
  outline: none;
}

/* ─── PRICE RANGE SLIDER ─── */
.price-slider-wrap {
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--parch);
  border-radius: var(--radius-lg);
}

.price-slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--smoke);
  margin-bottom: 12px;
}

.price-slider-values {
  color: var(--stone);
  font-size: 14px;
}

.price-slider {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}

.price-slider-track {
  position: absolute;
  height: 4px;
  border-radius: 2px;
  background: var(--clay);
  z-index: 1;
  pointer-events: none;
}

.price-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.price-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(44, 24, 16, .08);
  border-radius: 2px;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
  pointer-events: all;
  margin-top: -9px;
  position: relative;
  z-index: 5;
}

.price-slider input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
  pointer-events: all;
}

.price-slider input[type="range"]::-moz-range-track {
  height: 4px;
  background: rgba(44, 24, 16, .08);
  border-radius: 2px;
  border: none;
}

/* ─── WISHLIST ─── */
.wishlist-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parch);
  color: var(--stone);
  transition: background .3s, color .3s, transform .2s;
  margin-left: 8px;
  flex-shrink: 0;
}

.wishlist-nav-btn:hover {
  background: var(--stone);
  color: var(--cream);
  transform: scale(1.08);
}

.wishlist-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--clay);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s, transform .3s var(--ease-spring);
}

.wishlist-count.visible {
  opacity: 1;
  transform: scale(1);
}

.card-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), color .3s, background .3s;
}

.card-wishlist-btn:hover {
  transform: scale(1.15);
}

.card-wishlist-btn.active {
  color: #e74c3c;
  background: rgba(255, 255, 255, .95);
}

.card-wishlist-btn.active svg {
  fill: #e74c3c;
}

.card-wishlist-btn svg {
  width: 18px;
  height: 18px;
  transition: fill .3s;
}

/* Wishlist Drawer */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  z-index: 10001;
  background: var(--cream);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
  transition: right .4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.wishlist-drawer.open {
  right: 0;
}

.wishlist-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--mist);
}

.wishlist-drawer-header h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
}

.wishlist-drawer-close {
  font-size: 28px;
  color: var(--smoke);
  padding: 4px;
  cursor: pointer;
  transition: color .2s;
}

.wishlist-drawer-close:hover {
  color: var(--clay);
}

.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.wishlist-empty {
  text-align: center;
  color: var(--smoke);
  font-size: 14px;
  padding: 40px 20px;
}

.wishlist-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
  align-items: center;
}

.wishlist-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.wishlist-item-info {
  flex: 1;
}

.wishlist-item-name {
  font-family: var(--ff-serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}

.wishlist-item-price {
  font-size: 13px;
  color: var(--clay);
  font-weight: 600;
}

.wishlist-item-remove {
  color: var(--smoke);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}

.wishlist-item-remove:hover {
  color: #e74c3c;
}

.wishlist-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.wishlist-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ─── RECENTLY VIEWED ─── */
.recently-viewed {
  padding: 40px 0 60px;
  background: var(--parch);
}

.rv-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--stone);
}

.rv-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--clay) transparent;
}

.rv-scroll::-webkit-scrollbar {
  height: 4px;
}

.rv-scroll::-webkit-scrollbar-thumb {
  background: var(--clay);
  border-radius: 2px;
}

.rv-card {
  flex: 0 0 180px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
}

.rv-card:hover {
  transform: translateY(-3px);
}

.rv-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.rv-card-info {
  padding: 10px 12px;
}

.rv-card-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.rv-card-price {
  font-size: 12px;
  color: var(--clay);
  font-weight: 600;
}

/* ─── COOKIE CONSENT ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--stone);
  color: var(--cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
}

.cookie-inner p {
  font-size: 13px;
  flex: 1;
  line-height: 1.5;
  opacity: .85;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--clay);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s;
}

.cookie-accept:hover {
  background: var(--saffron);
}

.cookie-dismiss {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}

.cookie-dismiss:hover {
  border-color: #fff;
  color: #fff;
}

.cookie-manage-btn {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}

.cookie-manage-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 10001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  width: min(520px, 92vw);
  max-height: 85vh;
  background: var(--cream);
  color: var(--stone);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--mist);
}

.cookie-modal-header h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--stone);
  transition: background .2s;
}

.cookie-modal-close:hover {
  background: rgba(44, 24, 16, .12);
}

.cookie-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--smoke);
  margin: 0 0 16px;
}

.cookie-category {
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-cat-header strong {
  font-size: 14px;
  font-weight: 600;
}

.cookie-cat-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--leaf);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.cookie-cat-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--smoke);
  margin: 6px 0 0;
  padding-left: 0;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #ccc;
  border-radius: 24px;
  transition: background .3s;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
}

.cookie-toggle input:checked+.cookie-slider {
  background: var(--leaf);
}

.cookie-toggle input:checked+.cookie-slider::before {
  transform: translateX(18px);
}

.cookie-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--mist);
}

.cookie-save-prefs {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--stone);
  background: transparent;
  color: var(--stone);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.cookie-save-prefs:hover {
  background: var(--stone);
  color: var(--cream);
}

.cookie-accept-all {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--clay);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.cookie-accept-all:hover {
  background: var(--saffron);
}

/* ─── STOCK URGENCY ─── */
.stock-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #fff3f0;
  color: #c0392b;
  font-size: 13px;
  font-weight: 700;
  animation: stockPulse 2s ease-in-out infinite;
}

.stock-urgency::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e74c3c;
  animation: stockDot 1.5s ease-in-out infinite;
}

@keyframes stockPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

@keyframes stockDot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }
}

/* ─── IMAGE GALLERY THUMBS (product pages) ─── */
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s, transform .2s;
  flex-shrink: 0;
}

.pd-thumb:hover {
  transform: scale(1.05);
}

.pd-thumb.active {
  border-color: var(--clay);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── RELATED PRODUCTS ─── */
.related-section {
  padding: 48px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--mist);
}

.related-title {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--stone);
}

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

.related-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: transform .3s;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.related-card-info {
  padding: 12px;
}

.related-card-name {
  font-family: var(--ff-serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.related-card-price {
  font-size: 13px;
  color: var(--clay);
  font-weight: 600;
}

@media (max-width: 840px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pd-thumbs {
    gap: 6px;
  }

  .pd-thumb {
    width: 56px;
    height: 56px;
  }
}

/* ─── AUTO NEW BADGE ─── */
.badge-auto-new {
  background: linear-gradient(135deg, var(--leaf), #2ecc71);
  color: #fff;
}

/* ─── 404 PAGE ─── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  text-align: center;
}

.page-404-inner {
  max-width: 560px;
  margin: 0 auto;
}

.page-404-icon {
  font-size: 80px;
  margin-bottom: 16px;
  display: block;
}

.page-404 h1 {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-404 p {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-404-suggestions {
  margin-top: 48px;
}

.page-404-suggestions h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ─── RESPONSIVE CONTROLS ─── */
@media (max-width: 840px) {
  .wishlist-drawer {
    width: 320px;
  }
}

@media (max-width: 640px) {
  .controls-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-wrap {
    width: 100%;
  }

  .sort-select {
    width: 100%;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px;
  }

  .cookie-inner p {
    font-size: 12px;
  }

  .cookie-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-modal {
    width: 95vw;
    max-height: 80vh;
  }

  .cookie-modal-header {
    padding: 16px 18px;
  }

  .cookie-modal-body {
    padding: 16px 18px;
  }

  .cookie-modal-footer {
    padding: 14px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-modal-footer button {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .search-bar {
    height: 46px;
    padding: 0 14px;
  }

  .search-bar input {
    font-size: 14px;
  }

  .price-slider-wrap {
    padding: 12px 14px;
  }

  .rv-card {
    flex: 0 0 140px;
  }

  .wishlist-nav-btn {
    width: 36px;
    height: 36px;
    margin-left: 4px;
  }

  .wishlist-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .dark-toggle {
    width: 36px;
    height: 36px;
    margin-left: 4px;
  }

  .nav-search-btn {
    width: 36px;
    height: 36px;
  }
}

/* ═══════ DARK MODE ═══════ */
[data-theme="dark"] {
  --stone: #E8E4DB;
  --bark: #BFB8AD;
  --cream: #0A0F0B;
  --parch: #111A14;
  --warm: #0E1510;
  --milk: #080D09;
  --ink: #F0EDE6;
  --smoke: #7A9A78;
  --mist: rgba(212, 163, 74, .06);
}

[data-theme="dark"] body {
  background: #0A0F0B;
  background-image: radial-gradient(circle at 20% 50%, rgba(45, 90, 39, .06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 163, 74, .04) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(45, 90, 39, .03) 0%, transparent 60%);
  color: #E8E4DB;
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(13, 20, 16, .85);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
  border-bottom-color: rgba(232, 228, 219, .06);
}

[data-theme="dark"] .mob-menu {
  background: #1A1310;
}

[data-theme="dark"] .card,
[data-theme="dark"] .voice-card {
  background: #111A14;
  border-color: rgba(45, 90, 39, .12);
}

[data-theme="dark"] .card:hover {
  border-color: rgba(212, 163, 74, .2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 0 1px rgba(212, 163, 74, .08), 0 0 40px rgba(45, 90, 39, .06);
}

[data-theme="dark"] .vc-featured {
  background: #1B2E20;
  border-color: rgba(212, 163, 74, .15);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea {
  background: #221C17;
  border-color: rgba(253, 248, 240, .1);
  color: #F5EDE0;
}

[data-theme="dark"] .search-bar {
  background: #221C17;
  border-color: rgba(253, 248, 240, .08);
}

[data-theme="dark"] .filter {
  background: #221C17;
  color: #A89888;
}

[data-theme="dark"] .filter.active {
  background: #F5EDE0;
  color: #1A1310;
  border-color: #F5EDE0;
}

[data-theme="dark"] .sort-select {
  background-color: #221C17;
  border-color: rgba(253, 248, 240, .1);
  color: #A89888;
}

[data-theme="dark"] .price-slider-wrap {
  background: #221C17;
}

[data-theme="dark"] .card-media {
  background: #2C1810;
}

[data-theme="dark"] .nav-contact {
  background: #F5EDE0 !important;
  color: #1A1310 !important;
}

[data-theme="dark"] .nav-contact:hover {
  background: var(--clay) !important;
  color: #fff !important;
}

[data-theme="dark"] .btn-fill {
  background: #F5EDE0;
  color: #1A1310;
}

[data-theme="dark"] .btn-fill:hover {
  background: var(--clay);
  color: #fff;
}

[data-theme="dark"] .btn-ghost {
  border-color: #F5EDE0;
  color: #F5EDE0;
}

[data-theme="dark"] .btn-ghost:hover {
  background: #F5EDE0;
  color: #1A1310;
}

[data-theme="dark"] .btn-load {
  border-color: #F5EDE0;
  color: #F5EDE0;
}

[data-theme="dark"] .btn-load:hover {
  background: #F5EDE0;
  color: #1A1310;
}

[data-theme="dark"] .card-wishlist-btn {
  background: rgba(34, 28, 23, .85);
  color: #A89888;
}

[data-theme="dark"] .card-wishlist-btn.active {
  color: #e74c3c;
  background: rgba(34, 28, 23, .95);
}

[data-theme="dark"] .lb {
  background: rgba(0, 0, 0, .96);
}

[data-theme="dark"] .wishlist-drawer {
  background: #1A1310;
}

[data-theme="dark"] .wishlist-item {
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .cookie-inner {
  background: #2C1810;
}

[data-theme="dark"] .cookie-modal {
  background: #1A1310;
  color: #FDF8F0;
}

[data-theme="dark"] .cookie-modal-header {
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .cookie-modal-body {
  color: #FDF8F0;
}

[data-theme="dark"] .cookie-modal-desc {
  color: rgba(255, 255, 255, .6);
}

[data-theme="dark"] .cookie-cat-desc {
  color: rgba(255, 255, 255, .5);
}

[data-theme="dark"] .cookie-category {
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .cookie-modal-footer {
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .cookie-modal-close {
  background: rgba(255, 255, 255, .1);
  color: #FDF8F0;
}

[data-theme="dark"] .cookie-save-prefs {
  border-color: #FDF8F0;
  color: #FDF8F0;
}

[data-theme="dark"] .cookie-save-prefs:hover {
  background: #FDF8F0;
  color: #1A1310;
}

[data-theme="dark"] .hero-img {
  border-color: #1A1310;
}

[data-theme="dark"] .story-photo-accent {
  border-color: #1A1310;
}

[data-theme="dark"] .rv-card {
  background: #221C17;
}

[data-theme="dark"] .foot {
  background: #060A07;
}

[data-theme="dark"] .foot-top::after {
  background: linear-gradient(90deg, transparent 0%, rgba(45, 90, 39, .4) 20%, var(--saffron) 50%, rgba(45, 90, 39, .4) 80%, transparent 100%);
}

[data-theme="dark"] .mosaic-item {
  background: #111A14;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3), 0 0 0 1px rgba(45, 90, 39, .08);
}

[data-theme="dark"] .newsletter-form input[type="email"] {
  border-color: rgba(45, 90, 39, .25);
  background: rgba(45, 90, 39, .08);
}

[data-theme="dark"] .newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 163, 74, .12), inset 0 0 0 1px rgba(212, 163, 74, .08);
}

[data-theme="dark"] .nav-name.sinhala-display {
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="dark"] .nav-toggle span {
  background: #F5EDE0;
}

[data-theme="dark"] .wishlist-nav-btn {
  background: #221C17;
  color: #F5EDE0;
}

[data-theme="dark"] ::selection {
  background: var(--saffron);
  color: #1A1310;
}

[data-theme="dark"] .related-card {
  background: #221C17;
}

/* Dark mode toggle button */
.dark-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parch);
  color: var(--stone);
  margin-left: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .3s, color .3s, transform .3s var(--ease-spring);
  position: relative;
}

.dark-toggle:hover {
  transform: scale(1.1);
  background: var(--stone);
  color: var(--cream);
}

.dt-sun,
.dt-moon {
  position: absolute;
  transition: opacity .3s, transform .4s var(--ease-spring);
}

.dt-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(.5);
}

[data-theme="dark"] .dark-toggle {
  background: #221C17;
  color: #F5EDE0;
}

[data-theme="dark"] .dark-toggle:hover {
  background: #F5EDE0;
  color: #1A1310;
}

[data-theme="dark"] .dt-sun {
  opacity: 0;
  transform: rotate(90deg) scale(.5);
}

[data-theme="dark"] .dt-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* ═══════ MICRO-ANIMATIONS ═══════ */

/* Heart bounce on wishlist click */
@keyframes heartBounce {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.35);
  }

  30% {
    transform: scale(.9);
  }

  45% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(.95);
  }

  75% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.card-wishlist-btn.bounce {
  animation: heartBounce .6s var(--ease-spring);
}

/* Card shimmer on hover */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .08) 45%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .08) 55%, transparent 60%);
  transform: translateX(-100%);
  z-index: 4;
  pointer-events: none;
  transition: none;
}

.card {
  position: relative;
}

.card:hover::after {
  transform: translateX(100%);
  transition: transform .8s ease;
}

/* Button press effect */
.btn-fill:active,
.btn-wa:active,
.btn-ghost:active,
.btn-load:active {
  transform: scale(.96) !important;
  transition-duration: .1s !important;
}

/* Floating hero images subtle animation */
@keyframes heroFloat1 {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-8px);
  }
}

@keyframes heroFloat2 {

  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-6px);
  }
}

@keyframes heroFloat3 {

  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-10px);
  }
}

.hero-img-1 {
  animation: heroFloat1 6s ease-in-out infinite;
}

.hero-img-2 {
  animation: heroFloat2 7s ease-in-out infinite 1s;
}

.hero-img-3 {
  animation: heroFloat3 5s ease-in-out infinite .5s;
}

/* Nav link hover glow */
.nav-links a:hover {
  color: var(--clay);
}

/* Smooth stat counter pulse */
@keyframes statPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.stat-num[data-count] {
  animation: statPulse 3s ease-in-out infinite;
  animation-delay: 3s;
}


/* ═══════ SIZE COMPARISON (product pages) ═══════ */
.size-compare {
  margin-top: 24px;
  padding: 20px;
  background: var(--parch);
  border-radius: var(--radius-lg);
}

.size-compare-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}

.size-compare-visual {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  justify-content: center;
  padding: 16px 0;
}

.size-ref,
.size-plant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.size-bar {
  width: 40px;
  border-radius: 20px 20px 4px 4px;
  background: var(--mist);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: height .6s var(--ease-spring);
}

.size-plant .size-bar {
  background: linear-gradient(to top, var(--leaf), var(--leaf-muted));
}

.size-bar-label {
  position: absolute;
  top: -22px;
  font-size: 11px;
  font-weight: 700;
  color: var(--stone);
  white-space: nowrap;
}

.size-ref-name,
.size-plant-name {
  font-size: 11px;
  color: var(--smoke);
  font-weight: 500;
  text-align: center;
  max-width: 60px;
}

.size-ref-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

[data-theme="dark"] .size-compare {
  background: #221C17;
}

[data-theme="dark"] .size-bar {
  background: rgba(253, 248, 240, .08);
}

/* ═══════ AS SEEN IN ═══════ */
.seen-in {
  padding: 48px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.seen-in-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 28px;
}

.seen-in-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
  opacity: .45;
  transition: opacity .4s;
}

.seen-in-logos:hover {
  opacity: .7;
}

.seen-in-logo {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  transition: opacity .3s;
}

.seen-in-logo:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .seen-in {
    padding: 32px 0;
  }

  .seen-in-logos {
    gap: 16px;
  }

  .seen-in-logo {
    width: 90px;
  }
}

/* ═══════════════════════════════════════════════════════
   INNER PAGES — EDITORIAL CRAFT SYSTEM
   Asymmetric layouts. Organic motion. Zero templates.
   ═══════════════════════════════════════════════════════ */

/* ── Reading Progress Bar ── */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 10000;
  pointer-events: none;
}

.read-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: none;
}

/* ── Shared Inner Page ── */
.inner-page {
  padding: calc(var(--nav-h) + 24px) 0 0;
  min-height: 100vh;
  overflow: hidden;
}

@media (max-width: 840px) {
  .inner-page {
    padding: calc(72px + 16px) 0 0;
  }

  .inner-hero-full {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .inner-hero-full {
    min-height: 32vh;
    padding-bottom: 32px;
  }
}

/* ── Breadcrumb ── */
.inner-breadcrumb {
  font-size: 12px;
  color: var(--smoke);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

.inner-breadcrumb a {
  color: var(--clay);
  font-weight: 700;
  transition: color .3s;
}

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

/* ── Editorial Hero (full-bleed) ── */
.inner-hero-full {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(48px, 8vw, 96px);
  margin-bottom: 0;
  overflow: hidden;
}

.inner-hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(44, 24, 16, .65) 100%);
  z-index: 1;
}

.inner-hero-full .container {
  position: relative;
  z-index: 2;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.85);
}

/* ── Heading System ── */
.ip-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}

.ip-eyebrow--center {
  text-align: center;
}

.ip-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.ip-heading em {
  font-style: italic;
  color: var(--clay);
  font-weight: 300;
}

.ip-heading-sm {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.ip-heading-sm em {
  font-style: italic;
  color: var(--clay);
}

.ip-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--smoke);
  max-width: 560px;
}

.ip-sub--light {
  color: rgba(253, 248, 240, .7);
}

.ip-sub--center {
  margin: 0 auto;
  text-align: center;
}

/* ── Decorative Line ── */
.ip-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--clay), var(--saffron));
  margin: 24px 0;
  border: none;
}

.ip-line--center {
  margin: 24px auto;
}

/* ── Split Hero (Creative & Immersive) ── */
.ip-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(75vh - var(--nav-h));
  padding: clamp(64px, 10vw, 120px) 0;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

/* Ambient glow blobs */
.ip-split-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(circle, rgba(135, 171, 125, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.ip-split-hero::after {
  content: '';
  position: absolute;
  bottom: 0%;
  right: 5%;
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(circle, rgba(196, 113, 59, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatAmbient 10s ease-in-out infinite alternate;
}

@keyframes floatAmbient {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-40px) scale(1.05);
  }
}

/* New: Glass Content Wrapping for the text side */
.ip-hero-content {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(27, 46, 32, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  position: relative;
}

/* Re-style for Dark Mode */
[data-theme="dark"] .ip-hero-content {
  background: rgba(27, 46, 32, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ip-split-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatLevitate 6s ease-in-out infinite;
}

@keyframes floatLevitate {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.ip-ornament {
  font-size: clamp(140px, 20vw, 320px);
  line-height: 1;
  opacity: .12;
  font-family: var(--ff-serif);
  font-weight: 300;
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.ip-ornament--lg {
  font-size: clamp(240px, 32vw, 540px);
}

/* Premium Shimmer Text Effect */
.shimmer-text {
  background: linear-gradient(-45deg,
      var(--stone) 30%,
      var(--saffron) 50%,
      var(--stone) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

[data-theme="dark"] .shimmer-text {
  background: linear-gradient(-45deg,
      var(--cream) 30%,
      var(--gold) 50%,
      var(--cream) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Glass Utility Classes */
.ip-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.05);
  padding: 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

[data-theme="dark"] .ip-glass {
  background: rgba(253, 248, 240, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ip-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27, 46, 32, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .ip-glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}


/* ── Section Spacer ── */
.ip-section {
  padding: clamp(48px, 8vw, 100px) 0;
  position: relative;
}

.ip-section--cream {
  background: var(--cream);
}

.ip-section--parch {
  background: var(--parch);
}

.ip-section--stone {
  background: var(--stone);
  color: var(--cream);
}

.ip-section--stone .ip-sub {
  color: rgba(253, 248, 240, .6);
}

.ip-section--stone .ip-eyebrow {
  color: var(--saffron);
}

.ip-section--leaf {
  background: linear-gradient(135deg, #2a5c28, var(--leaf), #4a8a42);
  color: #fff;
}

.ip-section--leaf .ip-sub {
  color: rgba(255, 255, 255, .75);
}

.ip-section--leaf .ip-eyebrow {
  color: rgba(255, 255, 255, .6);
}

.ip-section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ── Scroll Reveal Animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(.92);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed,
[data-reveal="scale"].revealed,
[data-reveal="fade"].revealed {
  opacity: 1;
  transform: none;
}

[data-stagger-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

[data-stagger-child].revealed {
  opacity: 1;
  transform: none;
}

/* ── Text Reveal ── */
.tr-ready .tr-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}

.tr-visible .tr-char {
  opacity: 1;
  transform: none;
}

.wr-ready .wr-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.wr-ready .wr-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .5s var(--ease-spring);
}

.wr-visible .wr-inner {
  transform: none;
}

/* ── Image Reveal ── */
[data-img-reveal] {
  position: relative;
  overflow: hidden;
}

[data-img-reveal]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  z-index: 2;
  transform-origin: right;
  transition: transform .9s var(--ease-out);
}

[data-img-reveal].img-revealed::after {
  transform: scaleX(0);
}

/* ── Bento Grid (unique layout) ── */
.ip-bento {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

.ip-bento-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ip-bento-item--6 {
  grid-column: span 6;
}

.ip-bento-item--4 {
  grid-column: span 4;
}

.ip-bento-item--8 {
  grid-column: span 8;
}

.ip-bento-item--12 {
  grid-column: span 12;
}

.ip-bento-item--3 {
  grid-column: span 3;
}

/* ── Glass Card ── */
.ip-glass {
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}

.ip-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(44, 24, 16, .1);
}

/* ── Floating Card ── */
.ip-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}

.ip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(44, 24, 16, .1);
}

.ip-card-body {
  padding: clamp(20px, 3vw, 32px);
}

.ip-card-body h3 {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
}

.ip-card-body p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

/* ── Accent Number ── */
.ip-num {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--clay);
  line-height: 1;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 8px;
}

.ip-num--sm {
  font-size: clamp(36px, 4vw, 52px);
}

/* ── Pull Quote ── */
.ip-quote {
  position: relative;
  padding: 40px 0 40px 32px;
  margin: 48px 0;
  border-left: 3px solid var(--clay);
}

.ip-quote p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--bark);
}

.ip-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--smoke);
  letter-spacing: .04em;
}

/* ── Badge / Tag ── */
.ip-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ip-tag--clay {
  background: var(--clay);
  color: #fff;
}

.ip-tag--leaf {
  background: var(--leaf);
  color: #fff;
}

.ip-tag--parch {
  background: var(--parch);
  color: var(--stone);
}

.ip-tag--outline {
  border: 1.5px solid var(--clay);
  color: var(--clay);
  background: transparent;
}

/* ── CTA Block ── */
.ip-cta-block {
  text-align: center;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.ip-cta-block--stone {
  background: var(--stone);
  color: var(--cream);
}

.ip-cta-block--clay {
  background: var(--clay);
  color: #fff;
}

.ip-cta-block--leaf {
  background: linear-gradient(135deg, #2a5c28, var(--leaf));
  color: #fff;
}

.ip-cta-block p {
  margin-bottom: 24px;
  opacity: .8;
  font-size: 15px;
}

/* ── WhatsApp Button (inner pages) ── */
.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}

.btn-wa-lg:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
}

.btn-wa-lg svg {
  width: 20px;
  height: 20px;
}

/* ── Link Arrow ── */
.ip-link {
  font-weight: 600;
  color: var(--clay);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease-out);
}

.ip-link:hover {
  gap: 12px;
}

.ip-link--light {
  color: var(--saffron);
}

/* ── Horizontal Rule / Ornament ── */
.ip-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mist), transparent);
  margin: clamp(40px, 6vw, 80px) 0;
}

/* ═══════ CARE GUIDE — Bento Layout ═══════ */
.care-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 64px;
}

.care-bento-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 2px 8px rgba(44, 24, 16, .04);
  border: 1px solid rgba(44, 24, 16, .05);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}

.care-bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(44, 24, 16, .08);
  border-color: transparent;
}

/* top accent line */
.care-bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}

.care-bento-item:hover::before {
  transform: scaleX(1);
}

/* step number */
.care-bento-num {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: rgba(44, 24, 16, .06);
  position: absolute;
  bottom: 16px;
  right: 24px;
  pointer-events: none;
  transition: color .4s;
}

.care-bento-item:hover .care-bento-num {
  color: rgba(196, 113, 59, .12);
}

.care-bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--parch), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--clay);
  transition: transform .4s var(--ease-spring);
}

.care-bento-item:hover .care-bento-icon {
  transform: rotate(-8deg) scale(1.1);
}

.care-bento-item h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.25;
}

.care-bento-item p {
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.75;
}

/* ── Item 1: Featured (col 1-7, full height feel) ── */
.care-bento-item:nth-child(1) {
  grid-column: 1 / 8;
  background: linear-gradient(135deg, var(--stone) 0%, #3E2A1D 50%, var(--bark) 100%);
  border-color: transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.care-bento-item:nth-child(1) h3 {
  color: var(--cream);
  font-size: clamp(24px, 3vw, 32px);
}

.care-bento-item:nth-child(1) p {
  color: rgba(253, 248, 240, .7);
  font-size: 15px;
}

.care-bento-item:nth-child(1) .care-bento-icon {
  background: rgba(253, 248, 240, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
}

.care-bento-item:nth-child(1) .care-bento-num {
  font-size: clamp(80px, 12vw, 140px);
  color: rgba(253, 248, 240, .04);
  top: 16px;
  right: 24px;
  bottom: auto;
}

.care-bento-item:nth-child(1):hover .care-bento-num {
  color: rgba(232, 168, 56, .08);
}

.care-bento-item:nth-child(1)::before {
  display: none;
}

.care-bento-item:nth-child(1):hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(44, 24, 16, .2);
}

.care-bento-item:nth-child(1) .care-more-btn {
  color: rgba(253, 248, 240, .5);
}

.care-bento-item:nth-child(1) .care-more-btn:hover,
.care-bento-item:nth-child(1) .care-more-btn[aria-expanded="true"] {
  color: var(--saffron);
}

.care-bento-item:nth-child(1) .care-more-body p {
  color: rgba(253, 248, 240, .7);
}

/* ── Item 2 (col 8-12) ── */
.care-bento-item:nth-child(2) {
  grid-column: 8 / 13;
}

/* ── Item 3 (col 1-5, compact) ── */
.care-bento-item:nth-child(3) {
  grid-column: 1 / 5;
}

/* ── Item 4: Wide horizontal (col 5-12) ── */
.care-bento-item:nth-child(4) {
  grid-column: 5 / 13;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
}

.care-bento-item:nth-child(4) .care-bento-icon {
  grid-row: 1 / 4;
  align-self: center;
  width: 64px;
  height: 64px;
}

.care-bento-item:nth-child(4) h3 {
  grid-column: 2;
  align-self: end;
}

.care-bento-item:nth-child(4) p {
  grid-column: 2;
}

.care-bento-item:nth-child(4) .care-more {
  grid-column: 2;
}

.care-bento-item:nth-child(4) .care-bento-num {
  font-size: clamp(56px, 8vw, 96px);
}

/* ── Item 5 (col 1-7) ── */
.care-bento-item:nth-child(5) {
  grid-column: 1 / 8;
}

/* ── Item 6 (col 8-12) ── */
.care-bento-item:nth-child(6) {
  grid-column: 8 / 13;
}

/* unique accent colors per item */
.care-bento-item:nth-child(1)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(196, 113, 59, .15) 0%, transparent 60%);
  pointer-events: none;
}

.care-bento-item:nth-child(2)::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(232, 168, 56, .06);
  pointer-events: none;
}

.care-bento-item:nth-child(5)::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(61, 107, 53, .06);
  pointer-events: none;
}

@media (max-width: 840px) {
  .care-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-bento-item:nth-child(1) {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .care-bento-item:nth-child(2) {
    grid-column: auto;
  }

  .care-bento-item:nth-child(3) {
    grid-column: auto;
  }

  .care-bento-item:nth-child(4) {
    grid-column: 1 / -1;
  }

  .care-bento-item:nth-child(5) {
    grid-column: auto;
  }

  .care-bento-item:nth-child(6) {
    grid-column: auto;
  }
}

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

  .care-bento-item:nth-child(n) {
    grid-column: auto;
  }

  .care-bento-item:nth-child(4) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .care-bento-item:nth-child(4) .care-bento-icon {
    grid-row: auto;
  }

  .care-bento-item:nth-child(4) h3 {
    grid-column: 1;
  }

  .care-bento-item:nth-child(4) p {
    grid-column: 1;
  }

  .care-bento-item:nth-child(4) .care-more {
    grid-column: 1;
  }
}

.care-plant-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--mist);
}

.care-plant-section:last-of-type {
  border-bottom: none;
}

.care-plant-section h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 300;
  margin-bottom: 20px;
}

.care-plant-section h2 em {
  color: var(--clay);
  font-style: italic;
}

.care-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.care-tips li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--smoke);
}

.care-tips li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-muted));
  flex-shrink: 0;
  margin-top: 8px;
  transform: rotate(45deg);
}

.care-tips li strong {
  color: var(--stone);
}

/* ── Taxonomy label ── */
.care-taxon {
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 14px;
  font-family: var(--ff-body);
  letter-spacing: .02em;
}

/* ── Read-more toggle ── */
.care-more {
  margin-top: 14px;
}

.care-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  padding: 0;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .3s;
}

.care-more-btn:hover {
  color: var(--saffron);
}

.care-more-btn[aria-expanded="true"] {
  color: var(--saffron);
}

.care-more-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease-out), opacity .4s, margin .3s;
  margin-top: 0;
}

.care-more-body.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 12px;
}

.care-more-body p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--smoke);
  opacity: .85;
}

.care-more-body sup {
  font-size: 10px;
  color: var(--clay);
}

/* dark variant for monsoon section */
.care-more--dark .care-more-btn {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.care-more--dark .care-more-btn:hover,
.care-more--dark .care-more-btn[aria-expanded="true"] {
  color: rgba(255, 255, 255, .8);
}

/* bento items: keep read-more compact */
.care-bento-item .care-more {
  margin-top: 10px;
}

.care-bento-item .care-more-body p {
  font-size: 12.5px;
  line-height: 1.7;
}

/* monsoon grid */
.care-monsoon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .care-monsoon-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════ FAQ ═══════ */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq-sidebar-title {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--smoke);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-nav-link {
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--smoke);
  transition: all .3s;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
}

.faq-nav-link:hover {
  background: var(--parch);
  color: var(--stone);
}

.faq-nav-link.active {
  background: var(--stone);
  color: var(--cream);
}

.faq-main {
  max-width: 720px;
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group-title {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mist);
}

.faq-item {
  border-bottom: 1px solid var(--mist);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .3s;
  width: 100%;
  text-align: left;
}

.faq-q:hover {
  color: var(--clay);
}

.faq-q-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--parch);
  font-size: 18px;
  color: var(--smoke);
  transition: all .4s var(--ease-spring);
}

.faq-item.open .faq-q {
  color: var(--clay);
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--clay);
  color: #fff;
  border-radius: 50%;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}

.faq-a-inner {
  padding: 0 0 24px;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.85;
}

.faq-a-inner a {
  color: var(--clay);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

@media (max-width: 840px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .faq-sidebar-title {
    width: 100%;
  }

  .faq-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    background: var(--parch);
  }

  .faq-nav-link.active {
    background: var(--stone);
    color: var(--cream);
  }
}

/* ═══════ ABOUT ═══════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  margin-bottom: 0;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44, 24, 16, .12);
  position: relative;
}

.about-story-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.about-story-img:hover img {
  transform: scale(1.04);
}

.about-story-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-story-text h2 em {
  color: var(--clay);
  font-style: italic;
}

.about-story-text p {
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: clamp(32px, 5vw, 40px) 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .value-card {
  background: rgba(253, 248, 240, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(135, 171, 125, 0.15) 0%, transparent 70%);
  z-index: -1;
  transition: transform .5s var(--ease-out);
}

.value-card:hover::after {
  transform: translateX(-50%) scale(1.4);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 46, 32, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .value-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  transition: transform .4s var(--ease-spring);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
}

.value-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.value-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

.about-team-sub {
  text-align: center;
  color: var(--smoke);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 40px) 24px;
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}

[data-theme="dark"] .team-card {
  background: rgba(253, 248, 240, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 46, 32, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .team-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--parch), var(--cream));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  transition: transform .4s var(--ease-spring);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
}

.team-avatar-placeholder {
  line-height: 1;
}

.team-card h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

.workshop-banner {
  background: var(--parch);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(44, 24, 16, .04);
}

.workshop-banner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 16px;
}

.workshop-banner>p {
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-details {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.workshop-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.workshop-detail strong {
  font-size: 14px;
  color: var(--stone);
}

.workshop-detail span,
.workshop-detail a {
  font-size: 14px;
  color: var(--smoke);
}

.workshop-detail a {
  color: var(--clay);
  font-weight: 600;
}

@media (max-width: 840px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-img {
    max-width: 360px;
    margin: 0 auto;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ip-split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0;
  }

  .ip-split-visual {
    display: none;
  }
}

@media (max-width: 480px) {

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .ip-heading {
    font-size: 28px;
  }

  .ip-heading-sm {
    font-size: 22px;
  }

  .ip-sub {
    font-size: 14px;
  }

  .inner-page {
    padding: calc(72px + 16px) 0 0;
  }

  .workshop-details {
    gap: 20px;
  }

  .about-story-text h2 {
    font-size: 24px;
  }

  .about-story-text p {
    font-size: 14px;
  }

  .value-card,
  .team-card {
    padding: 24px 16px;
  }

  .value-card h3,
  .team-card h3 {
    font-size: 18px;
  }

  .value-card p,
  .team-card p {
    font-size: 13px;
  }

  .team-avatar {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}

/* ═══════/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  gap: 24px;
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}

[data-theme="dark"] .blog-card {
  background: rgba(253, 248, 240, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 46, 32, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .blog-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.blog-card--featured {
  grid-row: span 2;
}

.blog-card--horizontal {
  flex-direction: row;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.blog-card--featured .blog-card-img {
  aspect-ratio: auto;
  flex-grow: 1;
}

.blog-card--horizontal .blog-card-img {
  width: 40%;
  aspect-ratio: auto;
}

/* Glass overlay on blog image hover */
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 58, 45, .4) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.blog-card:hover .blog-card-img::after {
  opacity: 1;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}

.blog-tag--leaf {
  background: rgba(45, 90, 39, 0.85);
}

.blog-tag--clay {
  background: rgba(196, 113, 59, 0.85);
}

.blog-tag--stone {
  background: rgba(27, 46, 32, 0.85);
}

.blog-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.blog-card--horizontal .blog-card-body {
  width: 60%;
  padding: 24px 32px;
}

.blog-date {
  font-size: 12px;
  color: var(--smoke);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.blog-card h3 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.blog-card--featured h3 {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 16px;
}

.blog-card p {
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .3s var(--ease-out);
}

.blog-card:hover .blog-read-more {
  transform: translateX(6px);
}

.blog-coming {
  text-align: center;
  padding: clamp(48px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--parch);
  border: 1px solid rgba(44, 24, 16, .04);
}

.blog-coming-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}

.blog-coming h3 {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  margin-bottom: 12px;
}

.blog-coming p {
  color: var(--smoke);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-card--featured {
    grid-row: span 1;
  }

  .blog-card--horizontal {
    flex-direction: column;
  }

  .blog-card--horizontal .blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
  }
}

/* ═══════ GIFT GUIDE ═══════ */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.gift-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 40px);
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

[data-theme="dark"] .gift-card {
  background: rgba(253, 248, 240, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(196, 113, 59, 0.15) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.5s, transform 0.8s var(--ease-out);
}

.gift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(27, 46, 32, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .gift-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.gift-card:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

.gift-card-icon {
  font-size: 42px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform .4s var(--ease-spring);
}

.gift-card:hover .gift-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.gift-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.gift-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.gift-price-range {
  font-size: 13px;
  font-weight: 700;
  color: var(--stone);
  letter-spacing: .04em;
  margin-bottom: 16px;
  border-top: 1px solid rgba(44, 24, 16, .06);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

[data-theme="dark"] .gift-price-range {
  color: var(--saffron);
  border-color: rgba(255, 255, 255, 0.06);
}

.gift-suggestions {
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.6;
  background: rgba(44, 24, 16, .03);
  padding: 14px;
  border-radius: var(--radius);
}

[data-theme="dark"] .gift-suggestions {
  background: rgba(255, 255, 255, 0.04);
}

.gift-suggestions strong {
  display: block;
  margin-bottom: 4px;
  color: var(--stone);
}

[data-theme="dark"] .gift-suggestions strong {
  color: var(--cream);
}

.gift-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 6vw, 64px);
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.gift-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mist), transparent);
}

.gift-step {
  position: relative;
}

.gift-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(44, 24, 16, .15);
  transition: transform .4s var(--ease-spring), background .4s;
}

.gift-step:hover .gift-step-num {
  transform: scale(1.1);
  background: var(--clay);
}

.gift-step h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.gift-step p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.65;
}

.gift-wrapping-inner {
  background: var(--parch);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  border: 1px solid rgba(44, 24, 16, .04);
}

.gift-wrapping-inner h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.gift-wrapping-inner p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

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

  .gift-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gift-steps::before {
    display: none;
  }
}

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

/* ═══════ DELIVERY ═══════ */
.delivery-free-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background: linear-gradient(135deg, #2a5c28, var(--leaf), #4a8a42);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.delivery-free-banner::after {
  content: '🌿';
  position: absolute;
  right: 8%;
  top: 50%;
  font-size: 80px;
  opacity: .1;
  transform: translateY(-50%) rotate(15deg);
  pointer-events: none;
}

.delivery-free-icon {
  font-size: 44px;
}

.delivery-free-banner strong {
  font-size: clamp(18px, 2.5vw, 24px);
  display: block;
  margin-bottom: 4px;
}

.delivery-free-banner p {
  opacity: .8;
  font-size: 14px;
  margin: 0;
}

.delivery-table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  border: 1px solid rgba(44, 24, 16, .04);
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.delivery-table th {
  background: var(--stone);
  color: var(--cream);
  padding: 18px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.delivery-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--mist);
  transition: background .3s;
}

.delivery-table tbody tr:hover td {
  background: rgba(196, 113, 59, .03);
}

.delivery-table tr:last-child td {
  border-bottom: none;
}

.delivery-price {
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--clay);
  font-size: 17px;
  white-space: nowrap;
}

.delivery-price.delivery-free {
  color: var(--leaf);
  font-weight: 700;
}

.delivery-pickup-row td {
  background: rgba(61, 107, 53, .04);
}

.delivery-pickup-row:hover td {
  background: rgba(61, 107, 53, .07) !important;
}

.delivery-note {
  font-size: 13px;
  color: var(--smoke);
  margin-top: 12px;
  font-style: italic;
}

.delivery-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.delivery-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  border: 1px solid rgba(44, 24, 16, .04);
  text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s;
}

.delivery-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44, 24, 16, .08);
}

.delivery-info-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.delivery-info-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.delivery-info-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.payment-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03);
  border: 1px solid rgba(44, 24, 16, .04);
  text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44, 24, 16, .08);
  border-color: transparent;
}

.payment-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}

.payment-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.payment-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
}

.delivery-cta {
  text-align: center;
  margin-top: 24px;
}

.delivery-cta p {
  color: var(--smoke);
  font-size: 16px;
  margin-bottom: 24px;
}

.delivery-cta-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.delivery-cta-link {
  font-weight: 700;
  color: var(--clay);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease-out);
}

.delivery-cta-link:hover {
  gap: 12px;
}

@media (max-width: 840px) {
  .delivery-info-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .delivery-info-grid {
    grid-template-columns: 1fr;
  }

  .delivery-table th,
  .delivery-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .delivery-price {
    font-size: 15px;
  }

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

  .delivery-free-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }

  .delivery-free-banner::after {
    display: none;
  }

  .delivery-free-icon {
    font-size: 32px;
  }

  .delivery-free-banner strong {
    font-size: 18px;
  }
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--parch);
  border: 1px solid rgba(44, 24, 16, .04);
  margin-top: 48px;
}

.faq-cta p {
  margin-bottom: 24px;
  color: var(--smoke);
  font-size: 16px;
}

/* ═══════ DARK MODE — Inner Pages ═══════ */
[data-theme="dark"] .ip-glass {
  background: rgba(34, 28, 23, .7);
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .ip-card,
[data-theme="dark"] .care-bento-item:not(:first-child),
[data-theme="dark"] .blog-card,
[data-theme="dark"] .gift-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .delivery-info-card,
[data-theme="dark"] .payment-card {
  background: #221C17;
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .faq-cta,
[data-theme="dark"] .blog-coming,
[data-theme="dark"] .workshop-banner,
[data-theme="dark"] .gift-wrapping-inner {
  background: #221C17;
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .delivery-table {
  background: #221C17;
}

[data-theme="dark"] .delivery-table th {
  background: #0E0B08;
}

[data-theme="dark"] .delivery-table td {
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .delivery-table-wrap {
  border-color: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .care-bento-icon {
  background: linear-gradient(135deg, #1A1510, #221C17);
}

[data-theme="dark"] .care-bento-item:nth-child(1) {
  background: linear-gradient(135deg, #0E0B08 0%, #1A1310 50%, #221C17 100%);
}

[data-theme="dark"] .care-bento-item:nth-child(1) .care-bento-icon {
  background: rgba(253, 248, 240, .06);
}

[data-theme="dark"] .faq-q-icon {
  background: #1A1510;
}

[data-theme="dark"] .faq-nav-link {
  color: rgba(253, 248, 240, .6);
}

[data-theme="dark"] .faq-nav-link:hover {
  background: #1A1510;
  color: var(--cream);
}

[data-theme="dark"] .faq-nav-link.active {
  background: var(--clay);
  color: #fff;
}

[data-theme="dark"] .gift-suggestions {
  background: rgba(253, 248, 240, .04);
}

[data-theme="dark"] .delivery-pickup-row td {
  background: rgba(61, 107, 53, .08);
}

[data-theme="dark"] .ip-quote {
  border-color: rgba(196, 113, 59, .3);
}

[data-theme="dark"] [data-img-reveal]::after {
  background: #1A1510;
}

[data-theme="dark"] .gift-card::before {
  opacity: 0;
}

[data-theme="dark"] .gift-card:hover::before {
  opacity: .6;
}

[data-theme="dark"] .care-bento-item::before {
  background: linear-gradient(90deg, var(--clay), var(--saffron));
}

[data-theme="dark"] .contact-card {
  background: #1A1510;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .contact-card:hover {
  border-color: var(--clay);
}

/* ── Contact Cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--mist);
  background: #fff;
  text-decoration: none;
  color: var(--stone);
  transition: border-color .3s, box-shadow .3s, transform .25s;
}

.contact-card:hover {
  border-color: var(--clay);
  box-shadow: 0 12px 40px rgba(44, 24, 16, .08);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--parch);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clay);
}

.contact-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.contact-card-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: .03em;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .contact-card h3 {
    font-size: 18px;
  }
}

/* ── Plant Quiz ── */
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: calc(var(--nav-h, 80px) + 48px) clamp(20px, 5vw, 40px) 80px;
  min-height: 100vh;
}

.quiz-progress {
  height: 4px;
  background: var(--mist);
  border-radius: 4px;
  margin-bottom: 48px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clay), var(--saffron));
  border-radius: 4px;
  transition: width .5s var(--ease-out);
}

.quiz-step {
  display: none;
  animation: quizFadeIn .4s ease forwards;
}

.quiz-step--active {
  display: block;
}

.quiz-step--exit {
  display: block;
  animation: quizFadeOut .3s ease forwards;
  pointer-events: none;
}

@keyframes quizFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quizFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

.quiz-intro {
  text-align: center;
  padding: 60px 0;
}

.quiz-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  margin: 16px 0 20px;
}

.quiz-title em {
  font-style: italic;
  color: var(--clay);
}

.quiz-sub {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 36px;
}

.quiz-start {
  font-size: 16px;
  padding: 16px 36px;
  gap: 10px;
}

.quiz-time {
  font-size: 13px;
  color: var(--smoke);
  opacity: .6;
  margin-top: 16px;
}

.quiz-step-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 12px;
}

.quiz-question {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin-bottom: 32px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--mist);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .25s, box-shadow .25s, transform .2s, background .25s;
  font-family: inherit;
  font-size: inherit;
  color: var(--stone);
}

.quiz-option:hover {
  border-color: var(--clay);
  box-shadow: 0 6px 24px rgba(44, 24, 16, .06);
  transform: translateY(-2px);
}

.quiz-option--selected {
  border-color: var(--clay);
  background: rgba(196, 113, 59, .06);
  box-shadow: 0 6px 24px rgba(196, 113, 59, .1);
}

.quiz-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--parch);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clay);
}

.quiz-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quiz-option-text strong {
  font-size: 16px;
  font-weight: 600;
}

.quiz-option-text small {
  font-size: 13px;
  color: var(--smoke);
}

/* Quiz Result */
.quiz-result-inner {
  text-align: center;
}

.quiz-result-name {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 12px 0 32px;
}

.quiz-result-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.quiz-result-img {
  position: relative;
  overflow: hidden;
}

.quiz-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
}

.quiz-result-info {
  padding: 24px 28px 24px 0;
}

.quiz-result-why {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 16px;
}

.quiz-result-price {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 20px;
}

.quiz-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Runner-up */
.quiz-runner {
  margin-top: 28px;
}

.quiz-runner-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 12px;
}

.quiz-runner-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px 12px 12px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--mist);
  background: #fff;
  text-decoration: none;
  color: var(--stone);
  transition: border-color .3s, box-shadow .3s;
}

.quiz-runner-card:hover {
  border-color: var(--clay);
  box-shadow: 0 6px 20px rgba(44, 24, 16, .06);
}

.quiz-runner-card img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.quiz-runner-card div {
  text-align: left;
}

.quiz-runner-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.quiz-runner-card span {
  font-size: 13px;
  color: var(--clay);
  font-weight: 600;
}

.quiz-retake {
  margin-top: 32px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .quiz-result-card {
    grid-template-columns: 1fr;
  }

  .quiz-result-info {
    padding: 20px;
  }

  .quiz-option {
    padding: 16px 18px;
    gap: 14px;
  }
}

/* ── Quiz Homepage CTA Banner ── */
.quiz-cta {
  padding: clamp(60px, 10vw, 120px) 0;
}

.quiz-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--parch);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}

.quiz-cta-content {
  position: relative;
  z-index: 1;
}

.quiz-cta-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.quiz-cta-desc {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}

.quiz-cta-btn {
  font-size: 16px;
  padding: 16px 32px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
}

.quiz-cta-visual {
  position: relative;
  min-height: 280px;
}

.quiz-cta-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.quiz-cta-card {
  position: absolute;
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(44, 24, 16, .12);
  border: 3px solid #fff;
  transition: transform .4s var(--ease-out);
}

.quiz-cta-card.qcc-1 {
  top: 0;
  left: 10%;
  transform: rotate(-6deg);
  z-index: 3;
}

.quiz-cta-card.qcc-2 {
  top: 30px;
  left: 38%;
  transform: rotate(3deg);
  z-index: 2;
}

.quiz-cta-card.qcc-3 {
  top: 60px;
  left: 60%;
  transform: rotate(-2deg);
  z-index: 1;
}

.quiz-cta-inner:hover .qcc-1 {
  transform: rotate(-3deg) translateY(-6px);
}

.quiz-cta-inner:hover .qcc-2 {
  transform: rotate(1deg) translateY(-4px);
}

.quiz-cta-inner:hover .qcc-3 {
  transform: rotate(0deg) translateY(-8px);
}

@media (max-width: 768px) {
  .quiz-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(28px, 5vw, 48px);
  }

  .quiz-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .quiz-cta-visual {
    min-height: 160px;
    overflow: hidden;
  }

  .quiz-cta-card {
    width: 100px;
    height: 130px;
  }

  .quiz-cta-card.qcc-1 {
    left: 8%;
  }

  .quiz-cta-card.qcc-2 {
    left: 35%;
  }

  .quiz-cta-card.qcc-3 {
    left: 60%;
  }

  .quiz-cta-heading {
    font-size: 24px;
  }

  .quiz-cta-desc {
    font-size: 14px;
  }
}

[data-theme="dark"] .quiz-cta-inner {
  background: #1A1510;
}

[data-theme="dark"] .quiz-cta-card {
  border-color: #2a2018;
}

/* Quiz dark mode */
[data-theme="dark"] .quiz-option {
  background: #1A1510;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .quiz-option:hover {
  border-color: var(--clay);
}

[data-theme="dark"] .quiz-option--selected {
  background: rgba(196, 113, 59, .1);
  border-color: var(--clay);
}

/* ═══════ REDUCED MOTION ═══════ */
@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;
  }

  .loader {
    display: none;
  }

  .marquee-inner {
    animation: none;
  }

  .petal-canvas {
    display: none;
  }
}

[data-theme="dark"] .quiz-result-card {
  background: #1A1510;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .quiz-runner-card {
  background: #1A1510;
  border-color: rgba(255, 255, 255, .06);
}

@media print {

  .nav,
  .wa-btn,
  .btt,
  #petal-canvas,
  .cursor,
  .cursor-dot,
  .loader,
  .cookie-banner,
  .cookie-modal,
  .cookie-overlay,
  .wishlist-drawer,
  .wishlist-overlay,
  .global-search-overlay {
    display: none;
  }

  body {
    background: #fff;
    cursor: auto;
  }
}

/* ═══════ PLANT SIZE GUIDE PAGE ═══════ */

/* Measurement cards grid */
.sz-measure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sz-measure-card {
  text-align: center;
  padding: 40px 28px 32px;
}

.sz-measure-icon {
  margin-bottom: 20px;
}

.sz-measure-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--stone);
  margin-bottom: 12px;
}

.sz-measure-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-light, #6B6560);
}

/* Why section — split layout */
.sz-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sz-why-text {
  min-width: 0;
}

.sz-why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 32px;
  min-height: 340px;
}

.sz-ruler {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sz-ruler-pot {
  flex-shrink: 0;
}

.sz-ruler-line {
  width: 3px;
  height: 180px;
  background: linear-gradient(to bottom, var(--leaf), var(--clay));
  border-radius: 2px;
  position: relative;
}

.sz-ruler-line::before,
.sz-ruler-line::after {
  content: '';
  position: absolute;
  left: -4px;
  width: 11px;
  height: 2px;
  background: var(--leaf);
}

.sz-ruler-line::before { top: 0; }
.sz-ruler-line::after { bottom: 0; background: var(--clay); }

.sz-ruler-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
}

.sz-ruler-label {
  font-family: var(--ff-hand, 'Caveat', cursive);
  font-size: 16px;
  color: var(--stone);
  white-space: nowrap;
}

.sz-ruler-label--top { color: var(--leaf); }
.sz-ruler-label--bot { color: var(--clay); }

.sz-ruler-label--mid {
  color: var(--clay);
  font-weight: 500;
}

/* Variation cards */
.sz-variation-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sz-variation-card {
  padding: 36px 28px;
  text-align: center;
}

.sz-variation-emoji {
  font-size: 36px;
  margin-bottom: 16px;
}

.sz-variation-card h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--stone);
  margin-bottom: 10px;
}

.sz-variation-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-light, #6B6560);
}

/* Size reference table */
.sz-table-wrap {
  margin-top: 40px;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sz-table thead {
  background: var(--stone);
}

.sz-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sz-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  color: var(--stone);
  line-height: 1.5;
}

.sz-table tbody tr:last-child td {
  border-bottom: none;
}

.sz-table tbody tr:hover {
  background: rgba(61, 107, 53, .03);
}

.sz-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sz-badge--sm {
  background: rgba(61, 107, 53, .1);
  color: var(--leaf);
}

.sz-badge--md {
  background: rgba(212, 163, 74, .15);
  color: var(--saffron);
}

.sz-badge--lg {
  background: rgba(200, 120, 80, .12);
  color: var(--clay);
}

.sz-badge--xl {
  background: rgba(44, 24, 16, .08);
  color: var(--stone);
}

/* Tips grid */
.sz-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sz-tip {
  padding: 32px 28px;
  position: relative;
}

.sz-tip-num {
  font-family: var(--ff-serif);
  font-size: 40px;
  color: var(--saffron);
  opacity: .2;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.sz-tip h3 {
  font-family: var(--ff-serif);
  font-size: 19px;
  color: var(--stone);
  margin-bottom: 10px;
}

.sz-tip p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-light, #6B6560);
}

/* CTA buttons */
.sz-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .3s, color .3s, transform .2s;
}

.sz-cta-btn {
  background: var(--cream);
  color: var(--stone);
}

.sz-cta-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.sz-cta-btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.sz-cta-btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

/* Dark mode overrides */
[data-theme="dark"] .sz-measure-card h3,
[data-theme="dark"] .sz-variation-card h3,
[data-theme="dark"] .sz-tip h3 {
  color: #E8E0D8;
}

[data-theme="dark"] .sz-measure-card p,
[data-theme="dark"] .sz-variation-card p,
[data-theme="dark"] .sz-tip p {
  color: rgba(232, 224, 216, .6);
}

[data-theme="dark"] .sz-table thead {
  background: #1A2A1E;
}

[data-theme="dark"] .sz-table th {
  color: var(--saffron);
}

[data-theme="dark"] .sz-table td {
  color: #E8E0D8;
  border-bottom-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .sz-table tbody tr:hover {
  background: rgba(61, 107, 53, .08);
}

[data-theme="dark"] .sz-ruler-label {
  color: #E8E0D8;
}

/* Responsive */
@media (max-width: 840px) {
  .sz-measure-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sz-why-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sz-variation-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sz-tips-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sz-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }
}

@media (min-width: 841px) and (max-width: 1024px) {
  .sz-measure-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .sz-variation-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ═══════ GARDEN CLUB / REWARDS PAGE ═══════ */

/* ── Hero ── */
.gc-hero {
  padding: 140px 0 80px;
  background: linear-gradient(170deg, var(--cream) 0%, rgba(61,107,53,.06) 100%);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .gc-hero {
  background: linear-gradient(170deg, rgba(30,22,16,1) 0%, rgba(61,107,53,.08) 100%);
}

.gc-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.gc-hero-illustrations {
  flex: 0 0 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  justify-items: center;
  align-items: center;
}

.gc-illust {
  opacity: .7;
  transition: opacity .3s, transform .3s;
}

.gc-illust:hover {
  opacity: 1;
  transform: scale(1.08) rotate(-3deg);
}

.gc-illust--pot { grid-column: 1; grid-row: 1; }
.gc-illust--shears { grid-column: 2; grid-row: 1; }
.gc-illust--glove { grid-column: 1; grid-row: 2; }
.gc-illust--can { grid-column: 2; grid-row: 2; }

.gc-hero-content {
  flex: 1;
}

.gc-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--stone);
  line-height: 1.1;
  margin: 8px 0 16px;
}

[data-theme="dark"] .gc-hero-title {
  color: var(--cream);
}

.gc-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px 32px;
  background: var(--leaf);
  color: #fff;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(61,107,53,.25);
}

.gc-join-btn:hover {
  background: #2a5b24;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,107,53,.35);
}

.gc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--leaf);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.gc-cta-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

/* ── Steps ── */
.gc-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gc-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 32px 24px;
}

.gc-step-icon {
  margin-bottom: 16px;
}

.gc-step-num {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--saffron);
  opacity: .35;
  margin-bottom: 8px;
}

.gc-step h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--stone);
  margin-bottom: 8px;
}

[data-theme="dark"] .gc-step h3 {
  color: var(--cream);
}

.gc-step p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--stone);
  opacity: .75;
}

[data-theme="dark"] .gc-step p {
  color: var(--cream);
}

.gc-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
}

/* ── Tiers ── */
.gc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.gc-tier {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.gc-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}

.gc-tier--featured {
  border: 2px solid var(--saffron);
  box-shadow: 0 8px 32px rgba(212,163,74,.15);
}

.gc-tier--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--saffron);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

.gc-tier-badge {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-tier-badge--1 svg circle:first-child { stroke: var(--leaf); }
.gc-tier-badge--2 svg circle:first-child { stroke: var(--saffron); }
.gc-tier-badge--3 svg circle:first-child { stroke: var(--clay); }

.gc-tier-level {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--saffron);
}

.gc-tier h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--stone);
  margin: 6px 0;
}

[data-theme="dark"] .gc-tier h3 {
  color: var(--cream);
}

.gc-tier-req {
  font-size: .82rem;
  color: var(--stone);
  opacity: .6;
  margin-bottom: 20px;
}

[data-theme="dark"] .gc-tier-req {
  color: var(--cream);
}

.gc-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.gc-tier-perks li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: .85rem;
  color: var(--stone);
  border-bottom: 1px solid rgba(0,0,0,.04);
  line-height: 1.5;
}

[data-theme="dark"] .gc-tier-perks li {
  color: var(--cream);
  border-color: rgba(255,255,255,.06);
}

.gc-tier-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
}

.gc-tier-perks li:last-child {
  border-bottom: none;
}

/* ── Earn grid ── */
.gc-earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gc-earn-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  transition: transform .25s;
}

.gc-earn-item:hover {
  transform: translateY(-3px);
}

.gc-earn-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.gc-earn-info h4 {
  font-family: var(--ff-serif);
  font-size: .95rem;
  color: var(--stone);
  margin-bottom: 2px;
}

[data-theme="dark"] .gc-earn-info h4 {
  color: var(--cream);
}

.gc-earn-pts {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--saffron);
}

/* ── Redeem cards ── */
.gc-redeem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gc-redeem-card {
  text-align: center;
  padding: 28px 16px;
  transition: transform .25s;
}

.gc-redeem-card:hover {
  transform: translateY(-4px);
}

.gc-redeem-pts {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
}

.gc-redeem-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--stone);
  opacity: .5;
  margin-bottom: 8px;
}

[data-theme="dark"] .gc-redeem-label {
  color: var(--cream);
}

.gc-redeem-eq {
  font-size: 1.2rem;
  color: var(--leaf);
  margin: 6px 0;
  opacity: .5;
}

.gc-redeem-val {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--stone);
}

[data-theme="dark"] .gc-redeem-val {
  color: var(--cream);
}

.gc-redeem-val small {
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .55;
}

/* ── Responsive ── */
@media (max-width: 840px) {
  .gc-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .gc-hero-illustrations {
    flex: none;
    width: 180px;
  }

  .gc-tiers {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .gc-earn-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-redeem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-step-arrow {
    display: none;
  }

  .gc-steps {
    flex-direction: column;
    align-items: center;
  }

  .gc-step {
    max-width: 320px;
  }
}

@media (min-width: 841px) and (max-width: 1024px) {
  .gc-earn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ─── GLOBAL SEARCH OVERLAY ─── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--stone);
  transition: color .3s;
}

.nav-search-btn:hover {
  color: var(--clay);
}

.global-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(253, 248, 240, .97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-h) + 16px) 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  overflow-y: auto;
}

.global-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

[data-theme="dark"] .global-search-overlay {
  background: rgba(44, 24, 16, .97);
}

.gs-inner {
  width: 100%;
  max-width: 640px;
}

.gs-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  border: 2px solid rgba(44, 24, 16, .1);
  padding: 0 20px;
  height: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  transition: border-color .3s, box-shadow .3s;
}

[data-theme="dark"] .gs-input-wrap {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.gs-input-wrap:focus-within {
  border-color: var(--clay);
  box-shadow: 0 8px 32px rgba(196, 113, 59, .15);
}

.gs-input-wrap svg {
  flex-shrink: 0;
  color: var(--smoke);
  margin-right: 14px;
}

.gs-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  color: var(--stone);
  font-family: var(--ff-sans);
  padding: 0;
  height: 100%;
}

[data-theme="dark"] .gs-input {
  color: var(--cream);
}

.gs-input::placeholder {
  color: #b3a79c;
}

.gs-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--smoke);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.gs-close:hover {
  color: var(--clay);
}

.gs-results {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: var(--stone);
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

[data-theme="dark"] .gs-result-item {
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
}

.gs-result-item:hover {
  background: var(--parch);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

[data-theme="dark"] .gs-result-item:hover {
  background: rgba(255, 255, 255, .1);
}

.gs-result-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.gs-result-info {
  flex: 1;
  min-width: 0;
}

.gs-result-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gs-result-meta {
  font-size: 13px;
  color: var(--smoke);
  margin-top: 2px;
  display: flex;
  gap: 12px;
}

.gs-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--smoke);
  font-size: 15px;
}

.gs-hint {
  text-align: center;
  padding: 40px 20px;
  color: var(--smoke);
  font-size: 14px;
  opacity: .7;
}

/* Mobile global search fixes */
@media (max-width: 480px) {
  .global-search-overlay {
    padding: calc(72px + 12px) 12px 24px;
  }

  .gs-input-wrap {
    height: 48px;
    padding: 0 14px;
  }

  .gs-input {
    font-size: 15px;
  }

  .gs-result-item {
    padding: 10px 12px;
    gap: 12px;
  }

  .gs-result-img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }

  .gs-result-name {
    font-size: 14px;
  }

  .gs-result-meta {
    font-size: 12px;
  }
}

/* Prevent horizontal overflow on mobile */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ═══════ ORGANIC WAVE DIVIDERS ═══════ */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-hero {
  color: var(--stone);
  margin-top: -2px;
}

.wave-story {
  color: var(--cream);
  background: var(--stone);
  margin-top: -1px;
}

.wave-plants {
  color: var(--cream);
  margin-top: -1px;
}

.wave-gallery {
  color: var(--cream);
  background: linear-gradient(135deg, var(--stone) 0%, #1a3825 40%, #0F1A12 100%);
  margin-top: -1px;
}

[data-theme="dark"] .wave-hero {
  color: #141E17;
}

[data-theme="dark"] .wave-story {
  color: #0D1410;
  background: #141E17;
}

[data-theme="dark"] .wave-plants {
  color: #0D1410;
}

[data-theme="dark"] .wave-gallery {
  color: #0D1410;
}

/* ═══════ DECORATIVE ELEMENTS ═══════ */

/* Dot grid patterns */
.hero-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--clay) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}

.hero-dots-1 {
  top: 15%;
  left: 3%;
  transform: rotate(-15deg);
}

.hero-dots-2 {
  bottom: 20%;
  right: 5%;
  width: 80px;
  height: 80px;
  background-size: 14px 14px;
  transform: rotate(10deg);
}

/* Leaf outline decoration */
.hero-leaf-outline {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 60px;
  height: 90px;
  color: var(--leaf);
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  animation: leafFloat 8s ease-in-out infinite;
}

@keyframes leafFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

@media (max-width: 840px) {

  .hero-dots,
  .hero-leaf-outline {
    display: none;
  }
}

/* ═══════ PARALLAX SCROLL EFFECTS ═══════ */
.parallax-layer {
  will-change: transform;
  transition: transform .1s linear;
}

/* ═══════ STAGGERED CARD REVEAL ═══════ */
/* JS adds .card-stagger to cards before reveal; without JS cards remain fully visible */
.card.card-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), box-shadow .5s, border-color .5s;
}

.card.card-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.card.card-stagger:nth-child(1) {
  transition-delay: 0s;
}

.card.card-stagger:nth-child(2) {
  transition-delay: .08s;
}

.card.card-stagger:nth-child(3) {
  transition-delay: .16s;
}

.card.card-stagger:nth-child(4) {
  transition-delay: .24s;
}

.card.card-stagger:nth-child(5) {
  transition-delay: .32s;
}

.card.card-stagger:nth-child(6) {
  transition-delay: .4s;
}

.card.card-stagger:nth-child(7) {
  transition-delay: .48s;
}

.card.card-stagger:nth-child(8) {
  transition-delay: .56s;
}

.card.card-stagger.visible:hover {
  transform: translateY(-8px);
}

/* ═══════ HORIZONTAL TESTIMONIAL CAROUSEL ═══════ */
.voice-carousel-wrap {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.voice-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 24px;
  cursor: grab;
}

.voice-carousel:active {
  cursor: grabbing;
}

.voice-carousel::-webkit-scrollbar {
  display: none;
}

.voice-carousel .voice-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  min-height: auto;
}

.voice-carousel .vc-featured {
  flex: 0 0 420px;
  grid-row: auto;
}

.voice-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.voice-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parch);
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
  border: 1.5px solid rgba(27, 46, 32, .08);
}

.voice-carousel-btn:hover {
  background: var(--stone);
  color: var(--cream);
  transform: scale(1.1);
}

.voice-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mist);
  border: 1.5px solid rgba(27, 46, 32, .15);
  transition: background .3s, transform .3s, width .3s;
  cursor: pointer;
}

.voice-dot.active {
  background: var(--clay);
  border-color: var(--clay);
  width: 24px;
  border-radius: 4px;
}

[data-theme="dark"] .voice-carousel-btn {
  background: #221C17;
  color: #F5EDE0;
  border-color: rgba(253, 248, 240, .08);
}

[data-theme="dark"] .voice-carousel-btn:hover {
  background: #F5EDE0;
  color: #1A1310;
}

[data-theme="dark"] .voice-dot {
  background: rgba(253, 248, 240, .08);
  border-color: rgba(253, 248, 240, .12);
}

[data-theme="dark"] .voice-dot.active {
  background: var(--clay);
  border-color: var(--clay);
}

@media (max-width: 840px) {
  .voice-carousel .voice-card {
    flex: 0 0 280px;
  }

  .voice-carousel .vc-featured {
    flex: 0 0 320px;
  }
}

@media (max-width: 480px) {
  .voice-carousel .voice-card {
    flex: 0 0 260px;
  }

  .voice-carousel .vc-featured {
    flex: 0 0 280px;
  }

  .voice-carousel {
    gap: 14px;
  }
}

/* ═══════ FOOTER NEWSLETTER ENHANCED ═══════ */
.foot-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-wrap: wrap;
}

.foot-newsletter-text h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}

.foot-newsletter-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  max-width: 320px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  position: relative;
  flex: 0 0 auto;
  min-width: 320px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 100px 0 0 100px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .3s, background .3s;
}

.newsletter-form input:focus {
  border-color: var(--clay);
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 0 100px 100px 0;
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 113, 59, .3);
}

.newsletter-msg {
  font-size: 13px;
  margin-top: 8px;
  transition: opacity .3s;
}

.newsletter-msg--success {
  color: #25D366;
}

.newsletter-msg--error {
  color: #e74c3c;
}

@media (max-width: 640px) {
  .foot-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input {
    border-radius: 100px;
  }

  .newsletter-form button {
    border-radius: 100px;
    width: 100%;
  }
}

/* ═══════ QUIZ CTA SECTION ═══════ */
.quiz-cta {
  padding: 60px 0;
}

.quiz-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--parch), var(--cream));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(27, 46, 32, .06);
  position: relative;
  overflow: hidden;
}

.quiz-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 90, 39, .04) 0%, transparent 60%);
  pointer-events: none;
}

.ip-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 12px;
}

.quiz-cta-heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.quiz-cta-desc {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.quiz-cta-btn {
  gap: 10px;
}

.quiz-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-cta-cards {
  position: relative;
  width: 240px;
  height: 300px;
}

.quiz-cta-card {
  position: absolute;
  width: 160px;
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  transition: transform .5s var(--ease-spring);
}

.qcc-1 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
}

.qcc-2 {
  bottom: 20px;
  left: 0;
  transform: rotate(6deg);
  z-index: 2;
  width: 140px;
  height: 180px;
}

.qcc-3 {
  bottom: 40px;
  right: 0;
  transform: rotate(-8deg);
  z-index: 1;
  width: 130px;
  height: 170px;
}

.quiz-cta-inner:hover .qcc-1 {
  transform: translateX(-50%) rotate(-1deg) scale(1.02);
}

.quiz-cta-inner:hover .qcc-2 {
  transform: rotate(3deg) translateX(-5px);
}

.quiz-cta-inner:hover .qcc-3 {
  transform: rotate(-5deg) translateX(5px);
}

@media (max-width: 840px) {
  .quiz-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quiz-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .quiz-cta-cards {
    width: 200px;
    height: 250px;
    margin: 20px auto 0;
  }

  .quiz-cta-card {
    width: 130px;
    height: 170px;
  }

  .qcc-2 {
    width: 110px;
    height: 150px;
  }

  .qcc-3 {
    width: 100px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .quiz-cta {
    padding: 30px 0;
  }

  .quiz-cta-inner {
    padding: 24px 16px;
  }

  .quiz-cta-heading {
    font-size: 22px;
  }

  .quiz-cta-desc {
    font-size: 13px;
  }

  .quiz-cta-cards {
    width: 180px;
    height: 220px;
  }
}

[data-theme="dark"] .quiz-cta-inner {
  background: linear-gradient(135deg, #141E17, #1A2A1E);
  border-color: rgba(232, 228, 219, .06);
}

/* ═══════ GLASSMORPHISM CARD HOVER ═══════ */
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .15));
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity .4s var(--ease-out), backdrop-filter .4s;
  pointer-events: none;
  z-index: 2;
}

.card:hover .card-media::after {
  opacity: 1;
  backdrop-filter: blur(2px);
}

/* ═══════ CSS BOTANICAL DECORATIONS ═══════ */

/* Leaf vine decoration for story section */
.story::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at 30% 40%, rgba(45, 90, 39, .04) 0%, transparent 70%);
  border-radius: 70% 30% 50% 50%;
  transform: rotate(-25deg);
  pointer-events: none;
  z-index: 0;
}

.story::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(ellipse at 60% 50%, rgba(212, 163, 74, .05) 0%, transparent 65%);
  border-radius: 40% 60% 30% 70%;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

/* Subtle organic blob behind pullquote */
.pullquote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45, 90, 39, .03) 0%, transparent 60%);
  border-radius: 60% 40% 55% 45%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 840px) {

  .story::before,
  .story::after {
    display: none;
  }
}

/* ═══════ ENHANCED DARK MODE — EMERALD/GOLD ═══════ */
[data-theme="dark"] .gallery {
  background: linear-gradient(180deg, #0D1410 0%, #0F1A13 50%, #0D1410 100%);
}

[data-theme="dark"] .voices {
  background: linear-gradient(135deg, #111A14 0%, #0D1410 100%);
}

[data-theme="dark"] .pullquote {
  background: linear-gradient(135deg, #111810 0%, #0A110D 100%);
}

[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0D1410 0%, #0F1A13 60%, #111E15 100%);
}

[data-theme="dark"] .card:hover {
  box-shadow: 0 12px 40px rgba(45, 90, 39, .12), 0 0 0 1px rgba(212, 163, 74, .08);
}

[data-theme="dark"] .card-badge {
  background: linear-gradient(135deg, var(--clay), var(--saffron));
  color: #fff;
}

[data-theme="dark"] .marquee span {
  color: rgba(232, 228, 219, .08);
}

[data-theme="dark"] .story-section {
  background: linear-gradient(135deg, #0F1A13 0%, #0D1410 100%);
}

[data-theme="dark"] .editorial-heading {
  background: linear-gradient(135deg, #F0EDE6, var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .mosaic-item:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4), 0 0 0 1px rgba(212, 163, 74, .1);
}

[data-theme="dark"] .quiz-cta-inner {
  border-color: rgba(45, 90, 39, .15);
  box-shadow: inset 0 1px 0 rgba(212, 163, 74, .05);
}

[data-theme="dark"] .voice-card {
  border-color: rgba(45, 90, 39, .12);
}

[data-theme="dark"] .vc-rating {
  color: var(--saffron);
}

[data-theme="dark"] .cookie-inner {
  background: linear-gradient(135deg, #1A2E1F, #1A1310);
  border: 1px solid rgba(45, 90, 39, .15);
}

/* ═══════ FOOTER GRADIENT SEPARATOR ═══════ */
.foot::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--clay), var(--saffron), var(--gold), var(--leaf));
  background-size: 200% 100%;
  animation: footerGradient 6s linear infinite;
}

@keyframes footerGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

[data-theme="dark"] .foot::before {
  background: linear-gradient(90deg, #2D5A27, var(--clay), var(--saffron), #D4A34A, #2D5A27);
  background-size: 200% 100%;
  animation: footerGradient 6s linear infinite;
}

/* ═══════ SECTION POSITION FIX ═══════ */
.story,
.collection,
.pullquote,
.gallery,
.voices {
  position: relative;
  overflow: visible;
}