/* ============================================================
   CRAFTAMANIA by Pavi — Premium Indian Handcrafted Boutique
   Shared design system  ·  assets/css/style.css
============================================================ */
:root {
  --terracotta: #bf5e38;
  --terracotta-dark: #9a4526;
  --sand: #e6cfa2;
  --sand-light: #f2e2c4;
  --ivory: #fbf4e6;
  --ivory-2: #f4e7cf;
  --maroon: #6a1826;
  --maroon-light: #8a2536;
  --gold: #ac8544;
  --gold-light: #d0aa5c;
  --cocoa: #35241a;

  --bg: var(--ivory);
  --bg-alt: #f4e8d3;
  --surface: #fffbf3;
  --ink: #3a281e;
  --ink-soft: #705843;
  --heading: #571220;
  --accent: var(--terracotta);
  --accent-2: var(--maroon);
  --line: rgba(106, 24, 38, 0.14);
  --line-strong: rgba(106, 24, 38, 0.26);
  --gold-accent: var(--gold);
  --card-glass: rgba(255, 251, 243, 0.62);
  --shadow: 0 26px 60px -30px rgba(58, 40, 30, 0.5);
  --shadow-lg: 0 44px 90px -34px rgba(58, 40, 30, 0.62);
  --glow: transparent;
  --gold-foil: linear-gradient(115deg, #8c6e36, #e0be6c 24%, #b08c4a 46%, #f3e2a6 62%, #8c6e36);
  --vignette: radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,0.6), transparent 55%);
}

[data-theme="dark"] {
  --bg: #1a100a;
  --bg-alt: #22150c;
  --surface: #291a0f;
  --ink: #efe0c6;
  --ink-soft: #c3a880;
  --heading: #ecc981;
  --accent: #dd9061;
  --accent-2: #d4a94e;
  --line: rgba(212, 169, 78, 0.22);
  --line-strong: rgba(212, 169, 78, 0.4);
  --gold-accent: #d9b76c;
  --card-glass: rgba(48, 32, 20, 0.55);
  --shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.72);
  --shadow-lg: 0 46px 100px -30px rgba(0, 0, 0, 0.8);
  --glow: 0 0 40px -6px rgba(217, 183, 108, 0.28);
  --gold-foil: linear-gradient(115deg, #a07f35, #e6c477 26%, #d4a94e 48%, #f6e7ad 64%, #a07f35);
  --vignette: radial-gradient(120% 90% at 50% -10%, rgba(217,183,108,0.08), transparent 55%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
  background-image:
    var(--vignette),
    radial-gradient(circle at 10% 16%, rgba(191, 94, 56, 0.07), transparent 40%),
    radial-gradient(circle at 90% 6%, rgba(106, 24, 38, 0.06), transparent 38%),
    radial-gradient(circle at 82% 82%, rgba(172, 133, 68, 0.06), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-attachment: fixed, scroll, scroll, scroll, scroll;
}

::selection { background: var(--maroon); color: var(--ivory); }
[data-theme="dark"] ::selection { background: var(--gold-accent); color: #1a100a; }

h1, h2, h3, h4, .serif {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-weight: 600; line-height: 1.08; color: var(--heading); letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }
section { position: relative; }
.pad { padding: clamp(4rem, 8vw, 7rem) 0; }

.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 800; color: var(--accent); display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before, .eyebrow.center::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-accent)); }
.eyebrow.center::before { background: linear-gradient(90deg, var(--gold-accent), transparent); }

.section-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-top: 0.7rem; }
.section-lead { max-width: 60ch; margin-top: 1rem; color: var(--ink-soft); font-size: 1.07rem; }
.center-head { text-align: center; }
.center-head .section-lead { margin-inline: auto; }

.gold-text { background: var(--gold-foil); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 7s linear infinite; }
.ital { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600; }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.9rem; border-radius: 999px; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.02em; cursor: pointer; border: 1px solid transparent; transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s, background 0.3s, color 0.3s; will-change: transform; font-family: inherit; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--maroon), var(--terracotta-dark)); color: var(--ivory); box-shadow: 0 16px 32px -14px rgba(106, 24, 38, 0.7); }
[data-theme="dark"] .btn-primary { color: #1a100a; background: var(--gold-foil); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -14px rgba(106, 24, 38, 0.85); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--gold-accent); }
.btn-ghost:hover { background: var(--gold-accent); color: var(--surface); transform: translateY(-3px); }
[data-theme="dark"] .btn-ghost:hover { color: #1a100a; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================ NAV / CHROME */
.announce { background: linear-gradient(90deg, var(--maroon), var(--terracotta-dark), var(--maroon)); color: var(--sand-light); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; padding: 0.55rem 1rem; font-weight: 700; }
header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: color-mix(in srgb, var(--bg) 84%, transparent); border-bottom: 1px solid var(--line); transition: background 0.4s, box-shadow 0.4s; }
header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 44px; height: 44px; flex: none; color: var(--maroon); }
[data-theme="dark"] .brand-mark { color: var(--gold-accent); }
.brand-name { font-family: "Fraunces", serif; font-size: 1.34rem; color: var(--heading); line-height: 1; font-weight: 600; }
.brand-name small { display: block; font-family: "Nunito Sans"; font-size: 0.58rem; letter-spacing: 0.44em; text-transform: uppercase; color: var(--accent); margin-top: 3px; font-weight: 800; }
.nav-links { display: flex; gap: 1.45rem; align-items: center; }
.nav-links a { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; position: relative; color: var(--ink); white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold-foil); transition: width 0.35s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); transition: transform 0.3s, background 0.3s, color 0.3s; }
.icon-btn:hover { transform: translateY(-2px) rotate(-6deg); background: var(--gold-accent); color: var(--surface); }
[data-theme="dark"] .icon-btn:hover { color: #1a100a; }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }
@media (max-width: 1040px) { .nav-actions .btn-primary { display: none; } }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(20,12,7,0.55); backdrop-filter: blur(3px); }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84vw); background: var(--bg); border-left: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.3rem; transform: translateX(100%); transition: transform 0.4s cubic-bezier(.22,1,.36,1); }
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a { padding: 0.9rem 0.4rem; font-family: "Fraunces", serif; font-size: 1.2rem; color: var(--heading); border-bottom: 1px solid var(--line); }
.drawer-panel a.active { color: var(--accent); }
.drawer-close { align-self: flex-end; }

/* ============================================================ DECOR */
.mandala { position: absolute; color: var(--gold-accent); opacity: 0.16; pointer-events: none; }
.floral { position: absolute; pointer-events: none; color: var(--terracotta); opacity: 0.5; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.08)); }
[data-theme="dark"] .floral { color: var(--gold-accent); opacity: 0.42; }
.spin-slow { animation: spin 70s linear infinite; }
.float { animation: float 9s ease-in-out infinite; }
.float-2 { animation: float 12s ease-in-out infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(6deg); } }
.kolam-divider { display: block; width: 100%; height: 46px; color: var(--gold-accent); opacity: 0.85; }

/* ---------- Tiles (real photography w/ gradient fallback) ---------- */
.tile { width: 100%; height: 100%; display: grid; place-items: center; position: relative; overflow: hidden; color: rgba(255,255,255,0.9); }
.tile .label { position: absolute; bottom: 12px; left: 14px; z-index: 3; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; opacity: 0.94; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.tile .motif { width: 46%; opacity: 0.9; position: relative; z-index: 0; }
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity 0.7s ease; }
.tile-img.loaded { opacity: 1; }
[data-theme="dark"] .tile-img { filter: brightness(0.92) saturate(1.02); }
.g-clay { background: linear-gradient(150deg, #b9633c, #7f3722); }
.g-resin { background: linear-gradient(150deg, #2f6f74, #63aa9f); }
.g-pooja { background: linear-gradient(150deg, #8a2536, #bf5e38); }
.g-gift { background: linear-gradient(150deg, #9c7b33, #e0be6c); }
.g-decor { background: linear-gradient(150deg, #573a76, #9a76bd); }
.g-name { background: linear-gradient(150deg, #6a4a2e, #b3854f); }

/* ============================================================ PAGE HERO (sub pages) */
.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-top: 0.6rem; }
.page-hero .section-lead { margin: 1rem auto 0; }
.breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 1.2rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================ HERO (home) */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.45rem 1rem 0.45rem 0.55rem; border-radius: 999px; background: var(--card-glass); border: 1px solid var(--line-strong); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: var(--accent-2); backdrop-filter: blur(8px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-foil); }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); margin: 1.4rem 0 0; }
.hero h1 em { font-style: italic; font-family: "Cormorant Garamond", serif; color: var(--accent); }
.hero .sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 47ch; margin-top: 1.4rem; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; }
.hero-stats .n { font-family: "Fraunces", serif; font-size: 1.85rem; color: var(--heading); font-weight: 600; }
.hero-stats .l { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.hero-art { position: relative; aspect-ratio: 1 / 1.06; }
.hero-frame { position: absolute; inset: 0; border-radius: 40% 40% 42% 42% / 46% 46% 40% 40%; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--surface); }
.hero-mini { position: absolute; width: 40%; aspect-ratio: 1; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 5px solid var(--surface); }
.hero-mini.one { top: -4%; right: -6%; }
.hero-mini.two { bottom: -6%; left: -7%; }
.hero-chip { position: absolute; bottom: 18%; right: -10%; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 0.7rem 1rem; box-shadow: var(--shadow); display: flex; gap: 0.6rem; align-items: center; font-size: 0.8rem; font-weight: 800; color: var(--heading); }
.hero-chip .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--gold-foil); display: grid; place-items: center; color: #3a281e; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-alt); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.4rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.8rem; justify-content: center; text-align: left; }
.trust-item svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.trust-item .tt { font-family: "Fraunces", serif; font-weight: 600; color: var(--heading); font-size: 1.02rem; line-height: 1.1; }
.trust-item .ts { font-size: 0.76rem; color: var(--ink-soft); }

/* ---------- Marquee ---------- */
.marquee { border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; padding: 1rem 0; white-space: nowrap; animation: scroll 26s linear infinite; }
.marquee span { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 3rem; font-style: italic; }
.marquee span::after { content: "✦"; color: var(--gold-accent); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Brand story ---------- */
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-art { position: relative; }
.story-photo { aspect-ratio: 4/5; border-radius: 200px 200px 24px 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--surface); background: linear-gradient(160deg, #b9633c, #6a1826); display: grid; place-items: center; }
.story-badge { position: absolute; bottom: -22px; right: -18px; width: 132px; height: 132px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow); display: grid; place-items: center; text-align: center; border: 1px solid var(--line); }
.story-badge .num { font-family: "Fraunces", serif; font-size: 1.9rem; color: var(--accent); font-weight: 600; }
.story-badge .txt { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.signature { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 2.1rem; color: var(--accent-2); margin-top: 1rem; }
.story-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.story-tags span { font-size: 0.76rem; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--ink-soft); }

/* ---------- Categories (bento) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 188px; gap: 1.2rem; margin-top: 3rem; }
.cat-card { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; isolation: isolate; border: 1px solid var(--line); }
.cat-card.feature { grid-column: span 2; grid-row: span 2; }
.cat-card .tile { transition: transform 0.7s cubic-bezier(.22,1,.36,1); }
.cat-card:hover .tile { transform: scale(1.08); }
.cat-card .veil { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(29,18,10,0.88) 6%, rgba(29,18,10,0.15) 52%, transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; }
.cat-card h3 { color: #fff; font-size: 1.15rem; }
.cat-card.feature h3 { font-size: 1.9rem; }
.cat-card .count { color: var(--sand-light); font-size: 0.76rem; letter-spacing: 0.06em; }
.cat-card .feat-tag { display: inline-block; width: fit-content; margin-bottom: 0.6rem; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--gold-foil); color: #3a281e; }
.cat-card .arrow { position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; transform: translateY(-6px); opacity: 0; transition: 0.4s; }
.cat-card:hover .arrow { transform: translateY(0); opacity: 1; }

/* ---------- Why choose (split) ---------- */
.why { background: var(--bg-alt); }
.why-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.why-aside { position: sticky; top: 100px; }
.why-emblem { width: 90px; height: 90px; color: var(--gold-accent); margin-bottom: 1.4rem; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.why-card { background: var(--card-glass); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem 1.6rem; transition: transform 0.4s, box-shadow 0.4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(140deg, var(--maroon), var(--terracotta)); color: var(--sand-light); margin-bottom: 1.1rem; box-shadow: 0 12px 24px -12px rgba(106,24,38,0.6); }
[data-theme="dark"] .why-ic { background: var(--gold-foil); color: #1a100a; box-shadow: var(--glow); }
.why-ic svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 1.14rem; }
.why-card p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 0.35rem; }

/* ---------- Materials ---------- */
.mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.mat-card { text-align: center; padding: 2rem 1.4rem; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); transition: transform 0.4s; }
.mat-card:hover { transform: translateY(-6px); }
.mat-ring { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center; border: 2px dashed var(--gold-accent); color: var(--accent); box-shadow: var(--glow); }
.mat-ring svg { width: 32px; height: 32px; }
.mat-card h3 { font-size: 1.12rem; }
.mat-card p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Products masonry & grid ---------- */
.masonry { columns: 3; column-gap: 1.4rem; margin-top: 3rem; }
.masonry .prod { break-inside: avoid; margin-bottom: 1.4rem; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.prod { border-radius: 20px; overflow: hidden; position: relative; box-shadow: var(--shadow); border: 1px solid var(--line); cursor: pointer; }
.prod .tile { aspect-ratio: var(--ar, 1); }
.prod .p-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,18,10,0.92), transparent 62%); opacity: 0; transition: 0.45s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; }
.prod:hover .p-veil { opacity: 1; }
.prod:hover .tile { transform: scale(1.06); transition: transform 0.7s; }
.prod .p-name { color: #fff; font-family: "Fraunces", serif; font-size: 1.12rem; }
.prod .p-price { color: var(--sand-light); font-weight: 800; font-size: 0.9rem; }
.p-actions { position: absolute; top: 1rem; right: 1rem; display: flex; flex-direction: column; gap: 0.6rem; z-index: 3; }
.p-actions button { width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,0.92); color: var(--maroon); display: grid; place-items: center; transform: translateX(16px); opacity: 0; transition: 0.4s; }
.p-actions button svg { width: 18px; height: 18px; }
.prod:hover .p-actions button { transform: translateX(0); opacity: 1; }
.prod:hover .p-actions button:nth-child(2) { transition-delay: 0.06s; }
.prod:hover .p-actions button:nth-child(3) { transition-delay: 0.12s; }
.p-actions button:hover { background: var(--gold-foil); color: #3a281e; }
.p-tag { position: absolute; top: 1rem; left: 1rem; z-index: 3; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.32rem 0.7rem; border-radius: 999px; background: var(--gold-foil); color: #3a281e; }

/* ---------- Shop toolbar / filters ---------- */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; justify-content: center; margin-top: 2.4rem; }
.filter-chip { padding: 0.6rem 1.2rem; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); font-weight: 700; font-size: 0.84rem; cursor: pointer; font-family: inherit; transition: all 0.3s; }
.filter-chip:hover { border-color: var(--gold-accent); color: var(--accent); }
.filter-chip.active { background: var(--maroon); color: var(--sand-light); border-color: var(--maroon); }
[data-theme="dark"] .filter-chip.active { background: var(--gold-foil); color: #1a100a; border-color: transparent; }
.shop-count { text-align: center; color: var(--ink-soft); font-size: 0.86rem; margin-top: 1.4rem; }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pd-gallery { position: sticky; top: 100px; }
.pd-main { aspect-ratio: 1; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin-top: 0.9rem; }
.pd-thumb { aspect-ratio: 1; border-radius: 14px; overflow: hidden; cursor: pointer; border: 2px solid transparent; }
.pd-thumb.active { border-color: var(--gold-accent); }
.pd-info h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: 0.6rem; }
.pd-rating { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; color: var(--ink-soft); font-size: 0.86rem; }
.pd-rating .stars { color: var(--gold-accent); letter-spacing: 0.1em; }
.price-lg { font-family: "Fraunces", serif; font-size: 2rem; color: var(--heading); margin: 1.2rem 0; font-weight: 600; }
.price-lg .was { font-size: 1.1rem; color: var(--ink-soft); text-decoration: line-through; margin-left: 0.6rem; font-family: "Nunito Sans"; }
.pd-desc { color: var(--ink-soft); }
.opt { margin-top: 1.6rem; }
.opt .opt-label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; color: var(--ink); margin-bottom: 0.6rem; }
.swatches { display: flex; gap: 0.6rem; }
.swatch { width: 36px; height: 36px; border-radius: 50%; cursor: pointer; border: 2px solid var(--line-strong); position: relative; }
.swatch.active { border-color: var(--gold-accent); box-shadow: 0 0 0 3px var(--surface), 0 0 0 4px var(--gold-accent); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.qty button { width: 40px; height: 42px; border: none; background: transparent; color: var(--ink); font-size: 1.2rem; cursor: pointer; }
.qty button:hover { background: var(--bg-alt); }
.qty span { min-width: 40px; text-align: center; font-weight: 800; }
.pd-cta { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.pd-meta { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.86rem; color: var(--ink-soft); }
.pd-meta div { display: flex; gap: 0.6rem; align-items: center; }
.pd-meta svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- Festival ---------- */
.festival-band { background: linear-gradient(160deg, var(--maroon), var(--cocoa)); color: var(--sand-light); overflow: hidden; }
[data-theme="dark"] .festival-band { background: linear-gradient(160deg, #3a2413, #150d07); }
.festival-band h2, .festival-band .section-title { color: var(--sand-light); }
.festival-band .section-lead { color: rgba(242, 226, 196, 0.82); }
.festival-band .eyebrow { color: var(--gold-light); }
.fest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.fest-card { border: 1px solid rgba(242,226,196,0.22); border-radius: 18px; padding: 1.5rem 1.3rem; background: rgba(255,255,255,0.045); backdrop-filter: blur(6px); transition: transform 0.4s, background 0.4s, border-color 0.4s; text-align: center; }
.fest-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); border-color: var(--gold-light); }
.fest-card .fic { font-size: 2rem; margin-bottom: 0.6rem; }
.fest-card h3 { color: var(--sand-light); font-size: 1.05rem; }
.fest-card p { font-size: 0.8rem; color: rgba(242,226,196,0.72); }
/* festival page cards (light) */
.festx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.festx { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--surface); }
.festx .top { aspect-ratio: 16/10; position: relative; }
.festx .fic { position: absolute; top: 1rem; left: 1rem; font-size: 1.8rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.festx .body { padding: 1.5rem; }
.festx h3 { font-size: 1.3rem; }
.festx p { color: var(--ink-soft); font-size: 0.92rem; margin: 0.4rem 0 1rem; }
.festx .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.festx .tags span { font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--bg-alt); color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.rev-top { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.rev-top .big { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--heading); font-weight: 600; }
.rev-top .stars { color: var(--gold-accent); font-size: 1.1rem; letter-spacing: 0.12em; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.rev-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 2rem 1.8rem; box-shadow: var(--shadow); position: relative; }
.rev-card .quote { font-family: "Fraunces", serif; font-size: 3.4rem; line-height: 0.6; color: var(--gold-accent); opacity: 0.5; }
.rev-card p { color: var(--ink); font-style: italic; margin: 0.6rem 0 1.4rem; font-size: 1.02rem; }
.stars { color: var(--gold-accent); letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.rev-who { display: flex; align-items: center; gap: 0.8rem; }
.rev-av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-foil); display: grid; place-items: center; font-family: "Fraunces", serif; color: #3a281e; font-size: 1.1rem; font-weight: 600; }
.rev-who .nm { font-weight: 800; color: var(--heading); font-size: 0.95rem; }
.rev-who .loc { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Instagram ---------- */
.insta { background: var(--bg-alt); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; margin-top: 2.6rem; }
.insta-cell { aspect-ratio: 1; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
.insta-cell .tile { transition: transform 0.6s; }
.insta-cell:hover .tile { transform: scale(1.12); }
.insta-cell::after { content: ""; position: absolute; inset: 0; background: rgba(106,24,38,0.55); opacity: 0; transition: 0.4s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='white'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.insta-cell:hover::after { opacity: 1; }

/* ---------- Process timeline ---------- */
.proc-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin-top: 3.5rem; position: relative; }
.proc-track::before { content: ""; position: absolute; top: 33px; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold-accent) 0 8px, transparent 8px 16px); }
.proc-step { text-align: center; position: relative; }
.proc-node { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--gold-accent); color: var(--accent-2); position: relative; z-index: 2; box-shadow: var(--shadow); transition: transform 0.4s, background 0.4s, color 0.4s; }
.proc-step:hover .proc-node { transform: translateY(-6px) scale(1.06); background: var(--gold-foil); color: #3a281e; }
.proc-node svg { width: 26px; height: 26px; }
.proc-num { font-size: 0.66rem; letter-spacing: 0.2em; color: var(--accent); font-weight: 800; }
.proc-step h4 { font-size: 1.02rem; margin-top: 0.2rem; }
.proc-step p { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); margin-bottom: 0.9rem; overflow: hidden; box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: "Fraunces", serif; font-size: 1.08rem; color: var(--heading); font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold-accent); display: grid; place-items: center; color: var(--accent); transition: transform 0.3s; font-size: 1.1rem; line-height: 1; }
.faq-item[open] summary .pm { transform: rotate(45deg); background: var(--gold-foil); color: #3a281e; border-color: transparent; }
.faq-item .ans { padding: 0 1.5rem 1.3rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 32px; overflow: hidden; padding: clamp(2.6rem, 6vw, 4.5rem); text-align: center; color: var(--sand-light); box-shadow: var(--shadow-lg); background: linear-gradient(140deg, var(--maroon), var(--terracotta-dark)); }
[data-theme="dark"] .cta-band { background: linear-gradient(140deg, #3a2413, #1a100a); border: 1px solid var(--line-strong); }
.cta-band h2 { color: var(--sand-light); font-size: clamp(2rem, 4.6vw, 3rem); }
.cta-band p { color: rgba(242,226,196,0.85); max-width: 52ch; margin: 1rem auto 0; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.cta-band .btn-ghost { color: var(--sand-light); border-color: rgba(242,226,196,0.5); }
.cta-band .btn-ghost:hover { background: var(--sand-light); color: var(--maroon); }
.cta-band .btn-primary { background: var(--gold-foil); color: #3a281e; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; color: var(--ink); }
.field input, .field textarea, .field select { padding: 0.85rem 1.1rem; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--bg); color: var(--ink); font-size: 0.95rem; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold-accent) 25%, transparent); }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; }
.form-ok { display: none; margin-top: 1rem; padding: 0.9rem 1.2rem; border-radius: 12px; background: color-mix(in srgb, var(--gold-accent) 18%, transparent); border: 1px solid var(--gold-accent); color: var(--heading); font-weight: 700; }
.form-ok.show { display: block; }

/* ---------- Newsletter ---------- */
.news { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: clamp(2.2rem, 5vw, 3.5rem); box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden; margin-top: 1rem; }
.news form { display: flex; gap: 0.7rem; max-width: 480px; margin: 1.6rem auto 0; flex-wrap: wrap; }
.news input { flex: 1 1 240px; padding: 0.95rem 1.3rem; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--bg); color: var(--ink); font-size: 0.95rem; font-family: inherit; }
.news input:focus { outline: 2px solid var(--gold-accent); outline-offset: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center; background: linear-gradient(140deg, var(--maroon), var(--terracotta)); color: var(--sand-light); box-shadow: 0 12px 24px -12px rgba(106,24,38,0.6); }
[data-theme="dark"] .info-ic { background: var(--gold-foil); color: #1a100a; }
.info-ic svg { width: 22px; height: 22px; }
.info-item .it { font-family: "Fraunces", serif; color: var(--heading); font-size: 1.05rem; }
.info-item .iv { color: var(--ink-soft); font-size: 0.92rem; }
.map-embed { margin-top: 2rem; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; background: linear-gradient(150deg, var(--bg-alt), var(--sand)); display: grid; place-items: center; color: var(--ink-soft); position: relative; }

/* ---------- Footer ---------- */
footer { background: var(--cocoa); color: var(--sand-light); padding-top: 0; }
[data-theme="dark"] footer { background: #120b06; }
.foot-border { width: 100%; height: 40px; color: var(--gold-light); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0 3rem; }
footer h4 { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
footer a { color: rgba(242,226,196,0.8); font-size: 0.92rem; display: block; padding: 0.35rem 0; transition: color 0.3s, padding-left 0.3s; }
footer a:hover { color: #fff; padding-left: 6px; }
.foot-brand p { color: rgba(242,226,196,0.72); font-size: 0.95rem; max-width: 34ch; margin-top: 1rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(242,226,196,0.25); display: grid; place-items: center; padding: 0; }
.socials a:hover { background: var(--gold-foil); color: #3a281e; border-color: transparent; }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid rgba(242,226,196,0.18); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(242,226,196,0.6); }

/* ---------- Home: brand manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .big { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.28; color: var(--heading); max-width: 22ch; margin: 1.2rem auto 0; }
.manifesto .big em { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--accent); }

/* ---------- Home: explore gateway ---------- */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.explore-card { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 3/3.7; box-shadow: var(--shadow); border: 1px solid var(--line); isolation: isolate; }
.explore-card .tile { transition: transform 0.8s cubic-bezier(.22,1,.36,1); }
.explore-card:hover .tile { transform: scale(1.07); }
.explore-card .veil { position: absolute; inset: 0; z-index: 2; padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(29,18,10,0.9) 8%, rgba(29,18,10,0.15) 58%, transparent); }
.explore-card .ec-eyebrow { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 800; color: var(--gold-light); }
.explore-card h3 { color: #fff; font-size: 1.7rem; margin-top: 0.3rem; }
.explore-card p { color: var(--sand-light); font-size: 0.92rem; margin-top: 0.4rem; }
.explore-card .ec-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 800; font-size: 0.85rem; }
.explore-card .ec-link svg { width: 18px; height: 18px; transition: transform 0.3s; }
.explore-card:hover .ec-link svg { transform: translateX(5px); }

/* ---------- Blog / Journal ---------- */
.blog-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; margin-top: 3rem; background: var(--surface); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.blog-featured .bf-img { aspect-ratio: 4/3; position: relative; height: 100%; }
.blog-featured .bf-body { padding: clamp(1.6rem, 4vw, 3rem); }
.blog-featured .blog-cat { margin-bottom: 0.8rem; }
.blog-featured h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.blog-featured p { color: var(--ink-soft); margin: 1rem 0 1.4rem; font-size: 1.04rem; }

.blog-cat { display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.34rem 0.8rem; border-radius: 999px; background: var(--gold-foil); color: #3a281e; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); margin-top: 1rem; }
.blog-meta .sep { opacity: 0.5; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.blog-card { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform 0.4s, box-shadow 0.4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { aspect-ratio: 3/2; position: relative; overflow: hidden; }
.blog-card:hover .tile-img { transform: scale(1.06); transition: transform 0.7s, opacity 0.7s; }
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { font-size: 1.24rem; margin: 0.8rem 0 0; }
.blog-body p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 0.5rem; flex: 1; }

/* ---------- Article (single post) ---------- */
.article-hero { text-align: center; max-width: 760px; margin-inline: auto; }
.article-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 1rem; }
.article-cover { max-width: 1000px; margin: 2.4rem auto 0; aspect-ratio: 16/8; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); position: relative; }
.article { max-width: 720px; margin: 3rem auto 0; font-size: 1.12rem; line-height: 1.85; color: var(--ink); }
.article > p { margin-bottom: 1.5rem; }
.article > p:first-of-type::first-letter { font-family: "Fraunces", serif; font-size: 3.6rem; line-height: 0.8; float: left; padding: 0.1em 0.12em 0 0; color: var(--accent); font-weight: 600; }
.article h2 { font-size: 1.7rem; margin: 2.4rem 0 1rem; }
.article blockquote { margin: 2rem 0; padding: 1.2rem 1.8rem; border-left: 3px solid var(--gold-accent); background: var(--bg-alt); border-radius: 0 16px 16px 0; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--heading); }
.article-author { max-width: 720px; margin: 3rem auto 0; display: flex; align-items: center; gap: 1rem; padding: 1.6rem; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.article-author .aa-av { width: 58px; height: 58px; border-radius: 50%; background: var(--gold-foil); display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 1.4rem; color: #3a281e; flex: none; }
.article-author .aa-name { font-family: "Fraunces", serif; color: var(--heading); font-size: 1.1rem; }
.article-author .aa-role { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- WhatsApp float ---------- */
/* WhatsApp docked bottom-left so it never overlaps the green chat launcher (bottom-right). */
.wa-float { position: fixed; bottom: 24px; left: 24px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); animation: float 6s ease-in-out infinite; transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .float, .float-2, .spin-slow, .marquee-track, .gold-text, .wa-float { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .why-split { grid-template-columns: 1fr; } .why-aside { position: static; }
  .why-grid, .rev-grid, .fest-grid, .mat-grid, .festx-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .proc-track { grid-template-columns: repeat(3, 1fr); gap: 2rem 0.5rem; }
  .proc-track::before { display: none; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .pd { grid-template-columns: 1fr; } .pd-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .bf-img { aspect-ratio: 16/9; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { aspect-ratio: 16/9; }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .burger { display: grid; }
}
@media (max-width: 760px) {
  .hero-grid, .story-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 1rem auto 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot-brand { grid-column: 1 / -1; }
  .hero-stats { gap: 1.6rem; }
  .story-photo { border-radius: 120px 120px 20px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .cat-card.feature { grid-column: span 1; grid-row: span 1; }
  .cat-card.feature h3 { font-size: 1.3rem; }
  .why-grid, .rev-grid, .fest-grid, .mat-grid, .festx-grid, .prod-grid, .blog-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-track { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
}

/* ============================================================
   WORDPRESS INTEGRATION  —  chrome reset, forms, testimonies
============================================================ */
/* Neutralise the base theme's container so our full-width sections work. */
body.craftamania { margin: 0; }
.craftamania main { display: block; }
.craftamania .page-container,
.craftamania #content { max-width: none; width: auto; margin: 0; padding: 0; }
.craftamania img { height: auto; }
.craft-narrow { width: min(820px, 92vw); margin-inline: auto; }

/* Rich text within authored page content */
.craft-prose { color: var(--ink-soft); font-size: 1.05rem; }
.craft-prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 2rem 0 0.8rem; }
.craft-prose h3 { font-size: 1.3rem; margin: 1.6rem 0 0.6rem; }
.craft-prose p { margin-bottom: 1.1rem; }
.craft-prose ul { margin: 0 0 1.1rem 1.2rem; list-style: disc; }
.craft-prose li { margin-bottom: 0.4rem; }
.craft-prose a { color: var(--accent); font-weight: 700; }

/* ---------- Site Forms ( .pf-* ) styled to match the boutique ---------- */
.pf-form { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow); }
.pf-intro { color: var(--ink-soft); margin-bottom: 1.4rem; }
.pf-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.pf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.pf-w-full { grid-column: 1 / -1; }
.pf-label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; color: var(--ink); }
.pf-required { color: var(--accent); }
.pf-helper { font-size: 0.82rem; color: var(--ink-soft); }
.pf-form input[type="text"], .pf-form input[type="email"], .pf-form input[type="tel"],
.pf-form input[type="url"], .pf-form input[type="number"], .pf-form input[type="date"],
.pf-form select, .pf-form textarea {
  width: 100%; padding: 0.85rem 1.1rem; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--bg); color: var(--ink); font-size: 0.95rem; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s;
}
.pf-form textarea { resize: vertical; min-height: 130px; }
.pf-form input:focus, .pf-form select:focus, .pf-form textarea:focus {
  outline: none; border-color: var(--gold-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold-accent) 25%, transparent);
}
.pf-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pf-option { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: 0.9rem; }
.pf-option input { accent-color: var(--maroon); }
.pf-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.pf-submit { margin-top: 1.4rem; width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.9rem; border-radius: 999px; font-weight: 800; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent; background: linear-gradient(135deg, var(--maroon), var(--terracotta-dark)); color: var(--ivory); box-shadow: 0 16px 32px -14px rgba(106,24,38,0.7); transition: transform 0.3s, box-shadow 0.3s; }
[data-theme="dark"] .pf-submit { background: var(--gold-foil); color: #1a100a; }
.pf-submit:hover { transform: translateY(-3px); }
.pf-status { margin-bottom: 1rem; padding: 0.9rem 1.2rem; border-radius: 12px; font-weight: 700; }
.pf-status.pf-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.pf-status.pf-success, .pf-status.pf-info { background: color-mix(in srgb, var(--gold-accent) 18%, transparent); color: var(--heading); border: 1px solid var(--gold-accent); }
.pf-form-error { color: var(--maroon); font-weight: 700; }
@media (max-width: 620px) { .pf-fields { grid-template-columns: 1fr; } }

/* ---------- Testimonies scroller (native, premium) ---------- */
.tst-scroller { overflow: hidden; position: relative; padding: 0.5rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.tst-track { display: flex; gap: 1.4rem; width: max-content; animation: tst-scroll 48s linear infinite; }
.tst-scroller:hover .tst-track { animation-play-state: paused; }
.tst-card { width: 340px; flex: none; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem; box-shadow: var(--shadow); white-space: normal; }
.tst-card .stars { color: var(--gold-accent); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.tst-card p { color: var(--ink); font-style: italic; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.2rem; }
.tst-who { display: flex; align-items: center; gap: 0.8rem; }
.tst-av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-foil); display: grid; place-items: center; font-family: "Fraunces", serif; color: #3a281e; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; }
.tst-nm { font-weight: 800; color: var(--heading); font-size: 0.95rem; }
.tst-meta { font-size: 0.76rem; color: var(--ink-soft); }
@keyframes tst-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tst-track { animation: none; flex-wrap: wrap; width: auto; } }

/* Rating slider for the testimony form */
.tst-rate { display: flex; align-items: center; gap: 1rem; background: var(--bg-alt); padding: 1rem 1.2rem; border-radius: 16px; border: 1px solid var(--line); }
.tst-rate input[type="range"] { flex: 1; accent-color: var(--maroon); }
.tst-rate .val { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--heading); min-width: 2ch; text-align: center; }

/* ============================================================
   HEADER: cart badge + account dropdown  (added)
============================================================ */
.cart-link { position: relative; }
.cart-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: var(--maroon); color: #fff; font-size: 0.68rem; font-weight: 800; display: none; align-items: center; justify-content: center; line-height: 1; }
[data-theme="dark"] .cart-badge { background: var(--gold-accent); color: #1a100a; }
.cart-badge.show { display: inline-flex; }

.acct { position: relative; }
.acct-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.7rem 0.4rem 0.4rem; border: 1px solid var(--line-strong); background: transparent; border-radius: 999px; cursor: pointer; color: var(--ink); font-family: inherit; font-weight: 700; font-size: 0.86rem; transition: background 0.3s, border-color 0.3s; }
.acct-btn:hover { border-color: var(--gold-accent); }
.acct-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-foil); color: #3a281e; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 600; font-size: 0.95rem; }
.acct-name { white-space: nowrap; max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
.acct-caret { width: 16px; height: 16px; transition: transform 0.3s; }
.acct.open .acct-caret { transform: rotate(180deg); }
.acct-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 60; }
.acct.open .acct-menu { opacity: 1; visibility: visible; transform: none; }
.acct-menu a { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.9rem; border-radius: 10px; color: var(--ink); font-size: 0.9rem; font-weight: 700; transition: background 0.2s, color 0.2s; }
.acct-menu a svg { width: 18px; height: 18px; color: var(--accent); }
.acct-menu a:hover { background: var(--bg-alt); color: var(--accent); }
.acct-menu .acct-logout { border-top: 1px solid var(--line); margin-top: 0.3rem; padding-top: 0.8rem; }
.acct-menu .acct-logout svg { color: var(--maroon); }
@media (max-width: 680px) { .acct-name, .acct-caret { display: none; } .acct-btn { padding: 0.3rem; } }

/* Show burger sooner now that there are more nav items */
@media (max-width: 1080px) { .nav-links { display: none; } .burger { display: grid; } }

/* ============================================================
   TABS  (Gallery + Go Social)
============================================================ */
.craft-tabs { margin-top: 2.4rem; }
.craft-tabbar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.craft-tabbar.center { justify-content: center; }
.craft-tab { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.3rem; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); font-family: inherit; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; }
.craft-tab svg { width: 18px; height: 18px; }
.craft-tab:hover { border-color: var(--gold-accent); color: var(--accent); }
.craft-tab.active { background: var(--maroon); color: var(--sand-light); border-color: var(--maroon); }
[data-theme="dark"] .craft-tab.active { background: var(--gold-foil); color: #1a100a; border-color: transparent; }
.craft-panel { display: none; animation: fade-up 0.6s cubic-bezier(.22,1,.36,1) both; }
.craft-panel.active { display: block; }

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--surface); }
.gallery-item .tile { aspect-ratio: 4/3; }
.gallery-item:hover .tile-img { transform: scale(1.06); transition: transform 0.7s, opacity 0.7s; }
.gallery-cap { padding: 0.9rem 1.1rem; font-family: "Fraunces", serif; font-weight: 600; color: var(--heading); font-size: 1rem; }

/* Video (YouTube) grid */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.vid-tile { display: flex; flex-direction: column; border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform 0.4s, box-shadow 0.4s; cursor: pointer; }
.vid-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vid-tile:focus-visible { outline: 3px solid var(--gold-accent); outline-offset: 2px; }
.vid-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* while playing inline: keep the cell steady and hide the play badge */
.vid-tile.playing, .vid-tile.playing:hover { transform: none; }
.vid-tile.playing .vid-play { display: none; }
.vid-play { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%; background: rgba(112,28,43,0.85); color: #fff; display: grid; place-items: center; transition: transform 0.3s, background 0.3s; }
.vid-play svg { width: 26px; height: 26px; margin-left: 3px; }
.vid-tile:hover .vid-play { transform: scale(1.12); background: var(--maroon); }
.vid-cap { padding: 1rem 1.1rem; font-weight: 700; color: var(--heading); font-size: 0.92rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Instagram embed grid */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.ig-embed { min-width: 0; }
.ig-embed .instagram-media { min-width: 0 !important; }

@media (max-width: 900px) { .gallery-grid, .vid-grid, .ig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid, .vid-grid, .ig-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP: category groups
============================================================ */
.shop-cat { margin-bottom: 3.5rem; }
.shop-cat-head { margin-bottom: 1.6rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }

/* ============================================================
   STORE AUTH PAGES: golden buttons + dark-mode legibility
============================================================ */
/* Golden submit buttons on the sign-in / register / staff / reset forms,
   in BOTH light and dark, to match the boutique theme. */
.craft-auth-page form button[type="submit"] {
    background: var(--gold-foil) !important;
    background-size: 180% auto !important;
    color: #3a281e !important;
    border: none !important;
    box-shadow: 0 14px 30px -12px rgba(176, 140, 74, 0.55) !important;
    transition: filter 0.25s ease, transform 0.25s ease !important;
}
.craft-auth-page form button[type="submit"]:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}
/* Keep the golden button's text dark in dark mode (beats the .text-gray-900 override). */
[data-theme="dark"] .craft-auth-page form button[type="submit"],
[data-theme="dark"] .craft-auth-page form button[type="submit"].text-gray-900,
[data-theme="dark"] .craft-auth-page form button[type="submit"].text-white { color: #3a281e !important; }

/* ---- Dark-mode surfaces ---- */
[data-theme="dark"] .craft-auth-page .bg-white,
[data-theme="dark"] .craft-auth-page .bg-white\/95,
[data-theme="dark"] .craft-auth-page .bg-white\/80 { background: var(--surface) !important; }
[data-theme="dark"] .craft-auth-page .bg-gray-50,
[data-theme="dark"] .craft-auth-page .bg-gray-50\/50,
[data-theme="dark"] .craft-auth-page .bg-gray-50\/80,
[data-theme="dark"] .craft-auth-page .bg-gray-100 { background: var(--bg-alt) !important; }
[data-theme="dark"] .craft-auth-page .border-gray-100,
[data-theme="dark"] .craft-auth-page .border-gray-200,
[data-theme="dark"] .craft-auth-page .border-lime-50,
[data-theme="dark"] .craft-auth-page .border-lime-100,
[data-theme="dark"] .craft-auth-page .border-lime-50\/50 { border-color: var(--line) !important; }
[data-theme="dark"] .craft-auth-page .shadow-2xl,
[data-theme="dark"] .craft-auth-page .shadow-xl { box-shadow: var(--shadow-lg) !important; }

/* ---- Dark-mode text: headings bright, labels BRIGHT, body legible ---- */
[data-theme="dark"] .craft-auth-page h1,
[data-theme="dark"] .craft-auth-page h2,
[data-theme="dark"] .craft-auth-page .text-gray-900,
[data-theme="dark"] .craft-auth-page .text-gray-800 { color: var(--heading) !important; }
/* labels bright (form labels use .text-gray-700) */
[data-theme="dark"] .craft-auth-page label,
[data-theme="dark"] .craft-auth-page .text-gray-700 { color: var(--ink) !important; }
[data-theme="dark"] .craft-auth-page .text-gray-600,
[data-theme="dark"] .craft-auth-page .text-gray-500,
[data-theme="dark"] .craft-auth-page .text-gray-400 { color: var(--ink-soft) !important; }

/* ---- Dark-mode inputs: dark box, BRIGHT typed text, muted placeholder ----
   (also overrides Tailwind's focus:bg-white so the box stays dark on focus) ---- */
[data-theme="dark"] .craft-auth-page input,
[data-theme="dark"] .craft-auth-page textarea,
[data-theme="dark"] .craft-auth-page select,
[data-theme="dark"] .craft-auth-page input:focus,
[data-theme="dark"] .craft-auth-page textarea:focus {
    background: var(--bg-alt) !important;
    color: var(--ink) !important;
    border-color: var(--line-strong) !important;
    -webkit-text-fill-color: var(--ink) !important;
}
[data-theme="dark"] .craft-auth-page input::placeholder,
[data-theme="dark"] .craft-auth-page textarea::placeholder { color: var(--ink-soft) !important; opacity: 1; }
/* keep browser autofill from painting a white box */
[data-theme="dark"] .craft-auth-page input:-webkit-autofill {
    -webkit-text-fill-color: var(--ink) !important;
    box-shadow: 0 0 0 1000px var(--bg-alt) inset !important;
    caret-color: var(--ink) !important;
}

/* ============================================================
   SITE FORMS (.pf-*): dark-mode legibility
   The plugin's forms.css hardcodes dark labels + white inputs and loads
   after this file, so these [data-theme]-scoped rules (higher specificity)
   restore bright labels and dark input boxes in dark mode.
============================================================ */
[data-theme="dark"] .pf-label { color: var(--ink) !important; }
[data-theme="dark"] .pf-helper,
[data-theme="dark"] .pf-intro { color: var(--ink-soft) !important; }
[data-theme="dark"] .pf-option { color: var(--ink) !important; border-color: var(--line-strong) !important; }
[data-theme="dark"] .pf-consent { color: var(--ink-soft) !important; }
[data-theme="dark"] .pf-form input[type="text"],
[data-theme="dark"] .pf-form input[type="email"],
[data-theme="dark"] .pf-form input[type="tel"],
[data-theme="dark"] .pf-form input[type="url"],
[data-theme="dark"] .pf-form input[type="number"],
[data-theme="dark"] .pf-form input[type="date"],
[data-theme="dark"] .pf-form select,
[data-theme="dark"] .pf-form textarea,
[data-theme="dark"] .pf-form input:focus,
[data-theme="dark"] .pf-form select:focus,
[data-theme="dark"] .pf-form textarea:focus {
    background: var(--bg-alt) !important;
    color: var(--ink) !important;
    border-color: var(--line-strong) !important;
    -webkit-text-fill-color: var(--ink) !important;
}
[data-theme="dark"] .pf-form input::placeholder,
[data-theme="dark"] .pf-form textarea::placeholder { color: var(--ink-soft) !important; opacity: 1; }
[data-theme="dark"] .pf-form input:-webkit-autofill {
    -webkit-text-fill-color: var(--ink) !important;
    box-shadow: 0 0 0 1000px var(--bg-alt) inset !important;
}
