/* ===========================================================
   SIMPLY CHRISNA CUSTOM GIFTS — design tokens
   Palette extracted from brand logo + product flyers:
   cream #F7F4EF · ink #15130F · gold #C1851A · rose (from tassels)
   sage (from tassels) · deep gold for shadows
   =========================================================== */

:root {
  --cream: #F8F5EF;
  --cream-deep: #EFE9DD;
  --cream-deeper: #E5DCC9;
  --ink: #1A1712;
  --ink-soft: #3A342A;
  --gold: #B9821C;
  --gold-deep: #8C5F12;
  --gold-soft: #F1DDB0;
  --gold-glow: #E4A83C;
  --rose: #C97575;
  --rose-soft: #F0D3CE;
  --sage: #6E8768;
  --sage-soft: #DCE6D3;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;

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

  --shadow-soft: 0 10px 30px -12px rgba(26, 23, 18, 0.18);
  --shadow-card: 0 4px 0 var(--ink);
  --ease-out: cubic-bezier(.16,.9,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: light; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--gold-soft); color: var(--ink); }

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

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
}
.cursor-dot.is-active { width: 34px; height: 34px; background: rgba(185,130,28,0.18); border: 1.5px solid var(--gold); }

/* ---------- shared section chrome ---------- */
.section-head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; padding: 0 1.5rem; }
.section-head-light { color: var(--cream); }
.section-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; letter-spacing: .02em;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
  padding: .35rem .9rem;
  border: 1.3px solid var(--gold-soft);
  border-radius: 100px;
  background: rgba(241, 221, 176, 0.35);
}
.section-kicker-light { color: var(--gold-soft); border-color: rgba(241,221,176,.35); background: rgba(255,255,255,.06); }
.section-kicker-outline { background: transparent; border-color: var(--gold-glow); color: var(--gold-glow); }
.section-title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
.section-sub { font-size: 1.05rem; color: var(--ink-soft); margin: 0; }

/* ============ TOPBAR marquee ============ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  padding-left: 3.5rem;
  animation: scrollLeft 26s linear infinite;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 650;
  background: rgba(248, 245, 239, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(26,23,18,0.08);
  animation: navDrop .7s var(--ease-out) both;
  animation-delay: .05s;
}
@keyframes navDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { color: var(--gold); flex-shrink: 0; transition: transform .5s var(--ease-bounce); }
.brand:hover .brand-mark { transform: rotate(20deg); }
.brand-word { font-family: var(--font-display); font-weight: 650; font-size: 1.2rem; letter-spacing: -.01em; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  position: relative;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  padding: .3rem 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .92rem;
  padding: .7rem 1.3rem;
  border-radius: 100px;
  border: none;
  transition: transform .3s var(--ease-bounce), box-shadow .3s, background .3s;
}
.btn-nav { background: var(--ink); color: var(--cream); }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -6px rgba(26,23,18,.4); }
.btn-nav svg { transition: transform .3s var(--ease-out); }
.btn-nav:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--gold-deep);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--gold-deep); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 var(--gold-deep); }
.btn-primary svg { transition: transform .35s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.6px solid var(--ink);
  padding: .68rem 1.3rem;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; position: relative; z-index: 700; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); transition: all .3s var(--ease-out); }
.menu-btn.is-open span { background: var(--cream); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-scrim {
  position: fixed; inset: 0; z-index: 590;
  background: rgba(26,23,18,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.mobile-menu-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(84vw, 340px); height: 100vh;
  background: var(--ink); color: var(--cream);
  z-index: 600;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.6rem;
  padding: 2rem;
  transition: right .5s var(--ease-out);
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.4);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 5rem 1.5rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-squiggle {
  position: absolute; top: 18%; left: 3%; width: 130px; height: 40px;
  color: var(--rose); opacity: .5;
  animation: squiggleDraw 2.4s var(--ease-out) both, squiggleFloat 5s ease-in-out 2.4s infinite;
  animation-delay: .6s, 3s;
}
.hero-squiggle path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: dash 1.8s .6s var(--ease-out) forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
@keyframes squiggleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 600; color: var(--gold-deep);
  margin: 0 0 1.1rem;
  opacity: 0;
  animation: kickerPop .6s .1s var(--ease-bounce) forwards;
}
.hero-kicker svg { color: var(--gold); animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes kickerPop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 1.4rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span, .hero-title .line { }
.line-1, .line-2, .line-3 { position: relative; }
.hero-title .line::before { content: attr(data-x); }
.line-1 { animation: lineReveal1 .9s .25s var(--ease-out) both; }
.line-2 { animation: lineReveal1 .9s .42s var(--ease-out) both; }
.line-3 { animation: lineReveal1 .9s .58s var(--ease-out) both; }
@keyframes lineReveal1 {
  from { transform: translateY(110%) rotate(4deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}
.ink-underline {
  position: relative;
  color: var(--gold-deep);
  font-style: italic;
}
.ink-underline::after {
  content: '';
  position: absolute; left: -2%; bottom: .02em; width: 104%; height: .28em;
  background: var(--rose-soft);
  z-index: -1;
  border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: underlinePaint .5s .95s var(--ease-out) forwards;
}
@keyframes underlinePaint { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 1.12rem; color: var(--ink-soft); max-width: 480px;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUpSoft .8s .7s var(--ease-out) forwards;
}
@keyframes fadeUpSoft { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem;
  opacity: 0;
  animation: fadeUpSoft .8s .85s var(--ease-out) forwards;
}

.hero-trust {
  display: flex; flex-direction: column; gap: .7rem;
  opacity: 0;
  animation: fadeUpSoft .8s 1s var(--ease-out) forwards;
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink-soft); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* hero collage — items settle onto the desk, staggered, each with a distinct entrance */
.hero-collage { position: relative; height: 480px; }
.collage-item {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream);
  background: var(--cream);
}
.collage-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--font-hand); font-size: 1.15rem; font-weight: 700;
  color: var(--cream); background: linear-gradient(0deg, rgba(26,23,18,.8), transparent);
  padding: 1.6rem .9rem .6rem;
  z-index: 2;
}
.collage-1 {
  width: 62%; height: 300px; top: 0; left: 0; z-index: 3;
  transform: rotate(-4deg);
  animation: dropIn1 .9s .5s var(--ease-bounce) both;
}
.collage-2 {
  width: 46%; height: 210px; top: 40px; right: 0; z-index: 2;
  transform: rotate(5deg);
  animation: dropIn2 1s .8s var(--ease-bounce) both;
}
.collage-3 {
  width: 52%; height: 220px; bottom: 0; left: 12%; z-index: 4;
  transform: rotate(3deg);
  animation: dropIn3 1s 1.1s var(--ease-bounce) both;
}
@keyframes dropIn1 { from { opacity: 0; transform: translate(-40px,-40px) rotate(-16deg) scale(.85); } to { opacity: 1; transform: rotate(-4deg) scale(1); } }
@keyframes dropIn2 { from { opacity: 0; transform: translate(50px,-30px) rotate(20deg) scale(.85); } to { opacity: 1; transform: rotate(5deg) scale(1); } }
@keyframes dropIn3 { from { opacity: 0; transform: translateY(60px) rotate(-14deg) scale(.85); } to { opacity: 1; transform: rotate(3deg) scale(1); } }
.collage-item:hover { transform: rotate(0deg) scale(1.04) !important; z-index: 5; transition: transform .4s var(--ease-bounce); box-shadow: 0 20px 40px -14px rgba(26,23,18,.35); }

.collage-tape {
  position: absolute; width: 70px; height: 26px;
  background: rgba(233, 178, 91, 0.55);
  border: 1px solid rgba(233,178,91,.7);
  z-index: 6;
  opacity: 0;
  animation: tapeStick .5s var(--ease-out) forwards;
}
.tape-1 { top: -6px; left: 24%; transform: rotate(-8deg); animation-delay: 1.35s; }
@keyframes tapeStick { from { opacity: 0; transform: rotate(0deg) scaleY(0); } to { opacity: 1; transform: rotate(var(--r, -8deg)) scaleY(1); } }

.collage-scribble {
  position: absolute; top: -30px; right: 14%; color: var(--sage); z-index: 1;
  opacity: 0;
  animation: scribbleSpin 1.4s 1.6s var(--ease-out) forwards;
}
@keyframes scribbleSpin { from { opacity: 0; transform: rotate(-90deg) scale(.5); } to { opacity: .6; transform: rotate(0) scale(1); } }

/* ============ MARQUEE STRIP ============ */
.marquee {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  padding: .9rem 0;
  transform: rotate(-1.1deg) scale(1.02);
  margin: 1.5rem 0 4.5rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 1.2rem; white-space: nowrap;
  font-family: var(--font-display); font-weight: 560; font-size: 1.3rem;
  animation: scrollLeft 22s linear infinite;
}
.marquee-track i { opacity: .5; font-style: normal; }

/* ============ DESIGN IT YOURSELF ============ */
.dyo { padding: 2rem 1.5rem 6rem; max-width: 1280px; margin: 0 auto; }
.dyo-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
  position: relative;
}
.dyo-step {
  display: block;
  background: var(--cream);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem 2rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform .4s var(--ease-bounce), border-color .3s, box-shadow .4s;
}
.dyo-step:hover { transform: translateY(-8px) rotate(-1deg); border-color: var(--gold); box-shadow: var(--shadow-soft); }

.dyo-step-link { cursor: pointer; border-style: solid; }
.dyo-step-link::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--gold);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.dyo-step-link:hover::before { opacity: .55; }
.dyo-step-arrow {
  position: absolute; top: 1.4rem; right: 1.4rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0) rotate(-30deg);
  transition: transform .4s var(--ease-bounce), background .3s;
}
.dyo-step-link:hover .dyo-step-arrow { transform: scale(1) rotate(0deg); background: var(--gold); }
.dyo-step-num {
  font-family: var(--font-display); font-size: .95rem; font-weight: 650;
  color: var(--rose);
  margin-bottom: .8rem;
}
.dyo-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform .5s var(--ease-bounce), background .3s;
}
.dyo-step:hover .dyo-icon { transform: rotate(-10deg) scale(1.1); background: var(--gold); color: var(--cream); }
.dyo-step h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.2rem; margin: 0 0 .5rem; }
.dyo-step p { font-size: .92rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* connecting dashed line between steps, desktop only */
.dyo-steps::before {
  content: '';
  position: absolute; top: 46px; left: 12.5%; right: 12.5%; height: 0;
  border-top: 2px dashed var(--gold-soft);
  z-index: -1;
}

.dyo-step[data-step="1"] { animation: stepFade .7s .05s var(--ease-out) both; }
.dyo-step[data-step="2"] { animation: stepFade .7s .18s var(--ease-out) both; }
.dyo-step[data-step="3"] { animation: stepFade .7s .31s var(--ease-out) both; }
.dyo-step[data-step="4"] { animation: stepFade .7s .44s var(--ease-out) both; }
.dyo-step.in-view { animation-play-state: running; }
@keyframes stepFade { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.dyo-cta {
  margin-top: 3.5rem;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.dyo-cta::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: .25; top: -160px; right: -100px;
}
.dyo-cta-hand { font-family: var(--font-hand); font-size: 1.3rem; color: var(--gold-glow); margin: 0 0 .3rem; }
.dyo-cta-text h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; margin: 0; max-width: 480px; }
.dyo-cta .btn-primary { flex-shrink: 0; }

/* ============ SHOP ============ */
.shop { padding: 2rem 1.5rem 6rem; max-width: 1280px; margin: 0 auto; }
.shop-filters {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  margin-bottom: 2.6rem;
}
.filter-chip {
  background: transparent; border: 1.5px solid var(--cream-deeper);
  color: var(--ink-soft);
  padding: .55rem 1.15rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  transition: all .25s var(--ease-out);
}
.filter-chip:hover { border-color: var(--gold); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.p-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  position: relative;
  transition: transform .35s var(--ease-bounce), box-shadow .35s, border-color .3s;
  opacity: 0; transform: translateY(30px) scale(.94);
}
.p-card.in-view { animation: cardPop .6s var(--ease-bounce) forwards; }
@keyframes cardPop { to { opacity: 1; transform: translateY(0) scale(1); } }
.p-card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.p-card.is-hidden { display: none; }

.p-badge {
  position: absolute; top: -10px; right: 14px;
  font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 100px;
  z-index: 2;
}
.p-badge-magic { background: var(--rose); color: var(--cream); }
.p-badge-soon { background: var(--sage); color: var(--cream); }

.p-visual {
  aspect-ratio: 1/1;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.p-illo { width: 78%; height: 78%; transition: transform .5s var(--ease-bounce); }
.p-card:hover .p-illo { transform: scale(1.08) rotate(-2deg); }

.p-card h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.08rem; margin: 0 0 .4rem; }
.p-card p { font-size: .86rem; color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.5; min-height: 2.6em; }
.p-foot { display: flex; align-items: center; justify-content: space-between; padding-top: .8rem; border-top: 1px dashed var(--cream-deeper); }
.p-price { font-weight: 700; color: var(--gold-deep); font-size: .95rem; }
.p-tag { font-size: .72rem; color: var(--ink-soft); background: var(--cream-deep); padding: .25rem .55rem; border-radius: 6px; }

.shop-note { text-align: center; margin-top: 3rem; color: var(--ink-soft); font-size: .95rem; }
.shop-note a { color: var(--gold-deep); font-weight: 600; }
.shop-note a:hover { text-decoration: underline; }

/* ============ WORKSHOP ============ */
.workshop {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.5rem;
  align-items: center;
}
.workshop-media { position: relative; }
.workshop-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.1; object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.workshop-frame {
  position: absolute; inset: -14px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: -1;
  opacity: 0;
}
.workshop-media.in-view .workshop-frame { animation: frameGrow .8s .2s var(--ease-out) forwards; }
@keyframes frameGrow { from { opacity: 0; inset: 6px; } to { opacity: 1; inset: -14px; } }
.workshop-pin {
  position: absolute; bottom: -22px; left: -22px;
  filter: drop-shadow(0 6px 12px rgba(26,23,18,.25));
}
.workshop-media.in-view .workshop-pin { animation: pinDrop .8s .5s var(--ease-bounce) both; }
@keyframes pinDrop { from { opacity: 0; transform: translateY(-30px) rotate(-30deg); } to { opacity: 1; transform: translateY(0) rotate(0); } }

.workshop-para { font-size: 1.03rem; color: var(--ink-soft); margin: 0 0 1.1rem; line-height: 1.65; }
.workshop-stats { display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; align-items: baseline; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-weight: 650; font-size: 2.6rem; color: var(--gold-deep); line-height: 1; }
.stat-plus { font-family: var(--font-display); font-weight: 650; font-size: 1.6rem; color: var(--gold-deep); margin-left: -6px; }
.stat-label { font-size: .82rem; color: var(--ink-soft); max-width: 130px; margin-top: .4rem; }

/* ============ PRICING ============ */
.pricing {
  background: var(--ink); color: var(--cream);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
  opacity: .3; top: -220px; left: -150px;
}
.price-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  position: relative;
}
.price-card {
  background: rgba(248,245,239,0.05);
  border: 1.5px solid rgba(248,245,239,0.14);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  transition: transform .35s var(--ease-bounce), background .3s, border-color .3s;
  opacity: 0; transform: translateY(24px);
}
.price-card.in-view { animation: priceRise .55s var(--ease-out) forwards; }
@keyframes priceRise { to { opacity: 1; transform: translateY(0); } }
.price-card:hover { transform: translateY(-5px); background: rgba(248,245,239,0.09); border-color: var(--gold-glow); }
.price-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin: 0 0 .6rem; color: var(--cream); }
.price-value { font-family: var(--font-display); font-weight: 650; font-size: 1.7rem; color: var(--gold-glow); margin: 0 0 .3rem; }
.price-value span { font-size: 1rem; font-weight: 400; color: rgba(248,245,239,.6); }
.price-value-alt { font-size: .85rem; color: rgba(248,245,239,.75); margin: 0 0 .5rem; }
.price-value-alt .save { color: var(--rose); font-weight: 600; }
.price-desc { font-size: .85rem; color: rgba(248,245,239,.6); margin: 0; line-height: 1.5; }
.price-card-feature { background: linear-gradient(160deg, rgba(233,178,91,.18), rgba(248,245,239,0.04)); border-color: var(--gold-glow); }
.price-flag {
  display: inline-block; background: var(--rose); color: var(--cream); font-size: .68rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 100px; margin-bottom: .7rem;
}
.price-card-cta { display: flex; flex-direction: column; justify-content: space-between; background: var(--gold); border-color: var(--gold); }
.price-card-cta h3, .price-card-cta .price-desc { color: var(--ink); }
.price-card-cta .price-desc { color: rgba(26,23,18,.75); margin-bottom: 1rem; }

/* ============ CONTACT ============ */
.contact { background: var(--cream-deep); padding: 6rem 1.5rem; }
.contact-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.contact-title { font-family: var(--font-display); font-weight: 560; font-size: clamp(2rem, 3.6vw, 2.6rem); margin: 0 0 .9rem; letter-spacing: -.01em; }
.contact-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 2.2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: .9rem;
  font-weight: 600; font-size: .98rem;
  padding: .3rem 0;
  transition: transform .3s var(--ease-out), color .3s;
}
.contact-method:hover { transform: translateX(6px); color: var(--gold-deep); }
.contact-method-static:hover { transform: none; color: inherit; cursor: default; }
.cm-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease-bounce);
}
.contact-method:hover .cm-icon { background: var(--gold); color: var(--cream); transform: rotate(-8deg) scale(1.06); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .45rem; }
.form-row label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  font-family: inherit; font-size: .96rem;
  padding: .75rem .9rem;
  border: 1.6px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft);
}
.form-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin: 1rem 0 0; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--cream); padding: 4rem 1.5rem 1.5rem; }
.footer-top { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248,245,239,.12); }
.footer-brand .brand { color: var(--gold-glow); margin-bottom: .8rem; }
.footer-brand p { color: rgba(248,245,239,.6); font-size: .92rem; max-width: 240px; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(248,245,239,.5); margin: 0 0 1rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(248,245,239,.85); margin-bottom: .65rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold-glow); }
.footer-plain { color: rgba(248,245,239,.65) !important; line-height: 1.6; }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: .82rem; color: rgba(248,245,239,.5); flex-wrap: wrap; gap: .6rem; }
.footer-heart { font-family: var(--font-hand); font-size: 1rem; color: var(--rose); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.6);
  animation: waPulse 2.6s ease-in-out infinite, waEnter .6s 2s var(--ease-bounce) both;
}
@keyframes waEnter { from { opacity: 0; transform: scale(0) rotate(-40deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 24px -8px rgba(37,211,102,.6); } 50% { box-shadow: 0 10px 30px -4px rgba(37,211,102,.85); } }
.wa-float:hover { transform: scale(1.1) rotate(8deg); }

/* ============ scroll reveal base (generic, used sparingly & varied per-section above) ============ */
[data-reveal] { opacity: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { height: 380px; max-width: 480px; margin: 0 auto; }
  .dyo-steps { grid-template-columns: repeat(2, 1fr); }
  .dyo-steps::before { display: none; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .workshop { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .menu-btn { display: flex; }
  .topbar-track { animation-duration: 16s; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .dyo-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .dyo-steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: .5rem; }
}
