/* ═══════════════════════════════════════════════════════
   VESNA WELLNESS — styles.css
   ═══════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg:          #f4efe5;
  --bg-2:        #ede8dc;
  --surface:     #ece5d4;
  --surface-2:   #e5dcc8;
  --border:      rgba(140,110,60,.15);
  --border-gold: rgba(140,110,50,.28);

  --green:       #2d6640;
  --green-mid:   #3d7a50;
  --green-soft:  #3d6a4c;
  --cream:       #1c1810;
  --cream-dim:   rgba(28,24,16,.65);
  --cream-faint: rgba(28,24,16,.28);
  --gold:        #8a6818;
  --gold-light:  #a07c28;
  --gold-dim:    rgba(138,104,24,.10);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.4, 0, 0.2, 1);

  --r-card: 18px;
  --r-pill: 999px;
  --nav-h:  72px;
  --max-w:  1200px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--cream-dim);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ──────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────
   NOISE overlay
───────────────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9999;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─────────────────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: opacity .3s;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(138,104,24,.5);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .25s, background .25s, opacity .3s;
}

.cursor-ring.cursor--hover {
  width: 60px; height: 60px;
  background: rgba(138,104,24,.07);
  border-color: var(--gold);
}

.cursor-ring.cursor--down {
  width: 28px; height: 28px;
}

/* ─────────────────────────────────────────────────────
   SCROLL-REVEAL system
───────────────────────────────────────────────────── */
.reveal, .reveal-up, .reveal-card, .reveal-right, .split-line {
  opacity: 0;
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal       { transform: translateY(32px); }
.reveal-up    { transform: translateY(48px); }
.reveal-card  { transform: translateY(56px) scale(.97); }
.reveal-right { transform: translateX(70px); }
/* split-line: slide up without clip-path (prevents invisible-text bug) */
.split-line   { transform: translateY(50px); }

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-b);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform .3s var(--ease),
    box-shadow .3s,
    background .25s,
    border-color .25s,
    color .25s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn__ico { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--green-mid);
  color: var(--cream);
  box-shadow: 0 4px 28px rgba(61,128,80,.3);
}
.btn--primary:hover { box-shadow: 0 8px 40px rgba(61,128,80,.5); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(28,24,16,.22);
}
.btn--outline:hover { border-color: rgba(28,24,16,.55); }

.btn--gold {
  background: var(--gold);
  color: #1a1206;
  box-shadow: 0 4px 28px rgba(138,104,24,.2);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 8px 40px rgba(138,104,24,.35); }

/* ─────────────────────────────────────────────────────
   SECTION HELPERS
───────────────────────────────────────────────────── */
.sec-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: .9rem;
}
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-desc {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 52ch;
}
.sec-header { text-align: center; margin-bottom: 5rem; }
.sec-header .sec-desc { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  width: 100%;
  transition: background .5s, backdrop-filter .5s, border-color .5s;
}
.nav.scrolled {
  background: rgba(244,239,229,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cream);
}
.logo__v { color: var(--gold); }
.nav__logo:hover .logo__rest { opacity: .7; }
.logo__rest { transition: opacity .2s; }

.nav__links { display: flex; align-items: center; gap: .2rem; }
.nav__link {
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  font-size: .85rem;
  color: var(--cream-dim);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--cream); background: rgba(28,24,16,.06); }
.nav__cta {
  background: rgba(61,128,80,.85) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(61,128,80,.5);
  padding: .5rem 1.3rem;
}
.nav__cta:hover { background: var(--green-mid) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.burger__line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform .35s var(--ease), opacity .3s, width .3s;
  transform-origin: center;
}
.nav__burger.is-open .burger__line:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.is-open .burger__line:last-child  { transform: translateY(-4.25px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 5rem) 1.25rem 6rem;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

.hero__content { text-align: center; max-width: 900px; }

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 2rem;
}
.eyebrow__pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pip-pulse 2.5s ease-in-out infinite;
}
@keyframes pip-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .7; }
}

/* Big title */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  margin-bottom: 2rem;
}

.title__big {
  font-family: var(--font-d);
  font-size: clamp(5rem, 22vw, 15rem);
  font-weight: 300;
  letter-spacing: .18em;
  line-height: .95;
  color: var(--cream);
  /* gradient shimmer */
  background: linear-gradient(
    105deg,
    rgba(28,24,16,.6) 0%,
    rgba(28,24,16,1) 38%,
    rgba(138,104,24,1) 50%,
    rgba(28,24,16,1) 62%,
    rgba(28,24,16,.6) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-title 6s ease-in-out infinite;
}
@keyframes shimmer-title {
  0%,100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

.title__sep {
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: .4em auto;
  opacity: .6;
}

.title__italic {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  color: var(--gold);
  letter-spacing: .06em;
  line-height: 1.2;
}

.title__main {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  color: var(--cream);
  letter-spacing: .04em;
  line-height: 1.1;
}

.hero__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 2.8rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(236,229,212,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 1.5rem 3rem;
  gap: 3rem;
}

.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat__label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.stat__rule {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--cream-faint);
}
.scroll__bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scroll-bar 2s ease-in-out infinite;
}
@keyframes scroll-bar {
  0%   { transform: scaleY(1); transform-origin: top; opacity: .5; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll__text {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream-dim);
}
.marquee__track i {
  font-style: normal;
  color: var(--gold);
  opacity: .7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   ECOSYSTEM
═══════════════════════════════════════════════════════ */
.ecosystem { padding: 9rem 0; }

/* Asymmetric 11-col editorial grid */
.cards {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 1.25rem;
}
.card--studio  { grid-column: 1 / 8; }
.card--fire    { grid-column: 8 / 12; }
.card--therapy { grid-column: 1 / 5; }
.card--tea     { grid-column: 5 / 12; }

/* Card base */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color .4s, box-shadow .4s;
  will-change: transform;
}
.card:hover {
  border-color: rgba(120,160,120,.25);
  box-shadow:
    0 24px 60px rgba(0,0,0,.5),
    0 0 0 1px rgba(120,160,120,.1),
    inset 0 1px 0 rgba(255,255,255,.03);
}

/* ── Card media area ── */
.card__media {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.card--studio .card__media  { height: 300px; }
.card--fire .card__media    { height: 260px; }

.card__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Gradient overlay removed — photos shown fully vivid */
.card__grad { display: none; }

/* ── Real photos for card media ── */
.card__art { display: none; }
.card--studio  .card__media { background: url('studio.JPG')      center/cover no-repeat; }
.card--fire    .card__media { background: url('bonfire2.JPG')    center/cover no-repeat; }
.card--therapy .card__media { background: url('therapyroom.JPG') center 40%/cover no-repeat; height: 340px; }
.card--tea     .card__media { background: url('tearoom.JPG')     center/cover no-repeat; }

/* ── Hero logo ── */
.hero__logo-wrap {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}
.hero__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

/* ─ Studio art ─ */
.studio-art {
  background: linear-gradient(145deg, #081f12 0%, #04110a 100%);
}
.sa__pane {
  position: absolute;
  border: 1px solid rgba(120,200,120,.12);
  border-radius: 3px;
  transform-origin: center;
}
.sa__pane--1 {
  inset: 15% 20% 30% 15%;
  background: linear-gradient(135deg, rgba(74,148,96,.12), transparent);
  transform: rotate(-3deg);
}
.sa__pane--2 {
  inset: 20% 10% 25% 30%;
  background: linear-gradient(135deg, rgba(74,148,96,.08), transparent);
  transform: rotate(4deg);
}
.sa__bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  animation: bokeh-float 8s ease-in-out infinite alternate;
}
.sa__bokeh--1 { width: 80px; height: 80px; background: rgba(74,148,96,.3);  top:10%;  left:60%; animation-delay:0s; }
.sa__bokeh--2 { width:50px;  height:50px;  background: rgba(201,169,110,.2); bottom:30%;right:20%;animation-delay:-3s; }
.sa__bokeh--3 { width:100px; height:100px; background: rgba(45,102,64,.25);  bottom:20%;left:15%; animation-delay:-5s; }

@keyframes bokeh-float {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(10px,-15px) scale(1.1); }
}

.sa__leaf {
  position: absolute;
  font-size: 1.6rem;
  opacity: .35;
  filter: blur(.5px);
  animation: leaf-sway 7s ease-in-out infinite alternate;
}
.sa__leaf--1 { top: 15%; left: 8%;  animation-delay: 0s; }
.sa__leaf--2 { top: 50%; right:12%; animation-delay:-2.5s; }
.sa__leaf--3 { bottom:25%;left:45%; animation-delay:-4.5s; }

@keyframes leaf-sway {
  from { transform: rotate(-5deg) scale(1);   opacity: .3; }
  to   { transform: rotate(8deg) scale(1.05); opacity: .5; }
}

/* ─ Fire art ─ */
.fire-art {
  background: linear-gradient(180deg, #0a0603 0%, #1a0a02 100%);
}
.fa__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.fa__glow--1 {
  width:150px; height:100px;
  background: rgba(200,80,10,.35);
  bottom:0; left:50%; transform:translateX(-50%);
  animation: glow-pulse 2.5s ease-in-out infinite alternate;
}
.fa__glow--2 {
  width:80px; height:60px;
  background: rgba(255,160,20,.25);
  bottom:0; left:50%; transform:translateX(-50%);
  animation: glow-pulse 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes glow-pulse {
  from { opacity:.5; transform:translateX(-50%) scaleY(1); }
  to   { opacity:1;  transform:translateX(-50%) scaleY(1.15); }
}

.fa__flame { position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%); }
.flame {
  position: absolute;
  border-radius: 50% 50% 20% 20%;
  bottom: 0;
  left: 50%;
  transform-origin: bottom center;
}
.flame--outer {
  width: 44px; height: 70px;
  background: radial-gradient(ellipse at bottom, rgba(220,80,10,.9), transparent 70%);
  margin-left: -22px;
  filter: blur(4px);
  animation: flicker 2s ease-in-out infinite alternate;
}
.flame--inner {
  width: 26px; height: 48px;
  background: radial-gradient(ellipse at bottom, rgba(255,160,20,.95), transparent 70%);
  margin-left: -13px;
  filter: blur(2px);
  animation: flicker 1.4s ease-in-out infinite alternate-reverse;
}
.flame--core {
  width: 12px; height: 28px;
  background: radial-gradient(ellipse at bottom, rgba(255,230,100,.9), transparent 70%);
  margin-left: -6px;
  filter: blur(1px);
  animation: flicker 1s ease-in-out infinite alternate;
}
@keyframes flicker {
  0%   { transform: scaleX(1)    scaleY(1)    rotate(-2deg); }
  100% { transform: scaleX(1.06) scaleY(1.08) rotate(3deg); }
}

.fa__ember {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,180,40,.8);
  filter: blur(1px);
  animation: ember 3s ease-in-out infinite;
}
.fa__ember--1 { bottom: 35%; left: 44%; animation-delay: 0s; }
.fa__ember--2 { bottom: 45%; left: 54%; animation-delay: -.8s; }
.fa__ember--3 { bottom: 38%; left: 50%; animation-delay: -1.6s; }
@keyframes ember {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(var(--ex,8px), -40px); opacity: 0; }
}
.fa__ember--1 { --ex: -12px; }
.fa__ember--2 { --ex: 10px; }
.fa__ember--3 { --ex: 4px; }

/* ─ Therapy art ─ */
.therapy-art {
  background: linear-gradient(145deg, #060f18 0%, #040c14 100%);
}
.ta__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(100,160,200,.12);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  animation: pulse-ring 4s ease-in-out infinite;
}
.ta__circle--1 { width:60px;  height:60px;  background: rgba(80,140,190,.12); animation-delay:0s; }
.ta__circle--2 { width:110px; height:110px; border-color:rgba(100,160,200,.08); animation-delay:-.8s; }
.ta__circle--3 { width:170px; height:170px; border-color:rgba(100,160,200,.05); animation-delay:-1.6s; }
@keyframes pulse-ring {
  0%,100% { opacity:.5; }
  50%      { opacity:1;  }
}
.ta__line {
  position: absolute;
  background: rgba(100,160,200,.1);
}
.ta__line--h { left:20%; right:20%; height:1px; top:50%; }
.ta__line--v { top:20%;  bottom:20%; width:1px;  left:50%; }

/* ─ Tea art ─ */
.tea-art {
  background: linear-gradient(145deg, #160d05 0%, #0f0903 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tea__glow {
  position: absolute;
  width: 140px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180,120,40,.25), transparent 70%);
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
  animation: tea-glow 4s ease-in-out infinite alternate;
}
@keyframes tea-glow {
  from { opacity:.4; transform:translateX(-50%) scale(1); }
  to   { opacity:.8; transform:translateX(-50%) scale(1.1); }
}
.tea__cup { position: relative; display: flex; flex-direction: column; align-items: center; }
.tea__bowl {
  width: 54px; height: 36px;
  border-radius: 0 0 28px 28px;
  border: 1.5px solid rgba(201,169,110,.5);
  border-top: none;
  background: rgba(201,169,110,.05);
  position: relative;
  overflow: hidden;
}
.tea__bowl::after {
  content: '';
  position: absolute;
  inset: 30% 20% 0;
  background: rgba(150,100,30,.25);
  border-radius: 0 0 20px 20px;
}
.tea__saucer {
  width: 70px; height: 8px;
  background: rgba(201,169,110,.2);
  border-radius: var(--r-pill);
  border: 1px solid rgba(201,169,110,.35);
  margin-top: 3px;
}
.tea__steam {
  position: absolute;
  width: 2px;
  border-radius: var(--r-pill);
  background: rgba(201,169,110,.4);
  bottom: 100%;
  animation: steam 3s ease-in-out infinite;
  filter: blur(1px);
}
.tea__steam--1 { height:30px; left:35%; animation-delay:0s;   }
.tea__steam--2 { height:22px; left:50%; animation-delay:-.8s; margin-left:-1px; }
.tea__steam--3 { height:28px; left:65%; animation-delay:-1.6s;}
@keyframes steam {
  0%   { transform: translateY(0)   scaleX(1);   opacity:.6; }
  100% { transform: translateY(-20px) scaleX(1.5); opacity:0; }
}

/* Card body */
.card__body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}
.card__chip {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(122,170,136,.08);
  border: 1px solid rgba(122,170,136,.18);
  border-radius: var(--r-pill);
  padding: .3rem .85rem;
  align-self: flex-start;
}
.card__title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  transition: color .3s;
}
.card:hover .card__title { color: #fff; }
.card__title em { font-style: italic; color: var(--gold); }
.card__text { font-size: .9rem; line-height: 1.78; color: var(--cream-dim); }
.card__list { display: flex; flex-direction: column; gap: .35rem; }
.card__list li {
  font-size: .78rem;
  color: var(--green-soft);
  padding-left: 1.1em;
  position: relative;
}
.card__list li::before { content: '—'; position:absolute; left:0; color:var(--gold); opacity:.7; }

/* Card title row — title + small icon side by side */
.card__title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

/* ─ Mini fire icon ─ */
.fire-mini {
  position: relative;
  width: 26px;
  height: 42px;
  flex-shrink: 0;
  margin-top: .3rem;
}
.fm__glow {
  position: absolute;
  width: 34px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(220,80,10,.35), transparent 70%);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  filter: blur(5px);
  animation: glow-pulse 2.5s ease-in-out infinite alternate;
}
.fm__flame {
  position: absolute;
  border-radius: 50% 50% 20% 20%;
  bottom: 3px;
  left: 50%;
  transform-origin: bottom center;
}
.fm__outer {
  width: 18px; height: 30px;
  background: radial-gradient(ellipse at bottom, rgba(220,80,10,.9), transparent 70%);
  margin-left: -9px;
  filter: blur(2px);
  animation: flicker 2s ease-in-out infinite alternate;
}
.fm__inner {
  width: 11px; height: 19px;
  background: radial-gradient(ellipse at bottom, rgba(255,160,20,.95), transparent 70%);
  margin-left: -5.5px;
  filter: blur(1.5px);
  animation: flicker 1.4s ease-in-out infinite alternate-reverse;
}
.fm__core {
  width: 6px; height: 11px;
  background: radial-gradient(ellipse at bottom, rgba(255,230,100,.9), transparent 70%);
  margin-left: -3px;
  filter: blur(1px);
  animation: flicker 1s ease-in-out infinite alternate;
}

/* ─ Mini tea cup icon ─ */
.tea-mini {
  position: relative;
  width: 40px;
  height: 48px;
  flex-shrink: 0;
  margin-top: .3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.tm__steam {
  position: absolute;
  width: 2px;
  border-radius: 999px;
  background: rgba(201,169,110,.6);
  bottom: 30px;
  animation: steam 3s ease-in-out infinite;
  filter: blur(0.5px);
}
.tm__steam--1 { height: 16px; left: 8px;  animation-delay: 0s; }
.tm__steam--2 { height: 11px; right: 8px; animation-delay: -.8s; }
.tm__steam--3 { height: 13px; left: 50%; margin-left: -1px; animation-delay: -1.5s; }
.tm__bowl {
  width: 28px; height: 18px;
  border-radius: 0 0 14px 14px;
  border: 1.5px solid rgba(201,169,110,.65);
  border-top: none;
  background: rgba(201,169,110,.08);
}
.tm__saucer {
  width: 36px; height: 5px;
  background: rgba(201,169,110,.22);
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,.4);
}

/* ═══════════════════════════════════════════════════════
   PLANTLAB
═══════════════════════════════════════════════════════ */
.plantlab {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 9rem 0;
  overflow: hidden;
}
.plantlab__bg { position: absolute; inset: 0; pointer-events: none; }
.pl__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.pl__orb--1 {
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(138,104,24,.08), transparent 70%);
  top:-20%; right:-10%;
  animation: drift 15s ease-in-out infinite alternate;
}
.pl__orb--2 {
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(45,102,64,.07), transparent 70%);
  bottom:-10%; left:5%;
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px,-20px) scale(1.08); }
}

.plantlab__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* PlantLab logo */
.pl__logo-wrap {
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--surface);
}
.pl__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* PlantLab gallery strip */
.pl__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 4rem;
}
.pl__gallery--single {
  grid-template-columns: 1fr;
}

.pl__gallery-item {
  border-radius: var(--r-card);
  overflow: hidden;
  height: 520px;
  box-shadow: 0 8px 32px rgba(28,24,16,.1);
}

.pl__gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .7s var(--ease);
}
.pl__gallery-item:hover img { transform: scale(1.04); }

.plantlab__desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-dim);
  max-width: 50ch;
  margin-bottom: 2rem;
}

.pl__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}
.pl__pillars li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pl__pillars li:last-child { border-bottom: none; padding-bottom: 0; }
.pillar__mark {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(138,104,24,.45);
  flex-shrink: 0;
  line-height: 1;
}
.pl__pillars strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: .15rem;
}
.pl__pillars span {
  font-size: .8rem;
  color: var(--cream-dim);
}

/* Botanical SVG */
.plantlab__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.botanical {
  width: 100%;
  max-width: 300px;
  height: 460px;
  filter: drop-shadow(0 0 40px rgba(120,88,16,.15));
}

.bot-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s var(--ease);
}

.botanical.is-drawn .bot-path:nth-child(1)  { transition-delay: 0s; }
.botanical.is-drawn .bot-path:nth-child(2)  { transition-delay: .15s; }
.botanical.is-drawn .bot-path:nth-child(3)  { transition-delay: .25s; }
.botanical.is-drawn .bot-path:nth-child(4)  { transition-delay: .35s; }
.botanical.is-drawn .bot-path:nth-child(5)  { transition-delay: .45s; }
.botanical.is-drawn .bot-path:nth-child(6)  { transition-delay: .55s; }
.botanical.is-drawn .bot-path:nth-child(7)  { transition-delay: .65s; }
.botanical.is-drawn .bot-path:nth-child(8)  { transition-delay: .75s; }
.botanical.is-drawn .bot-path:nth-child(9)  { transition-delay: .85s; }
.botanical.is-drawn .bot-path:nth-child(10) { transition-delay: .95s; }
.botanical.is-drawn .bot-path:nth-child(11) { transition-delay:1.05s; }
.botanical.is-drawn .bot-path:nth-child(12) { transition-delay:1.15s; }
.botanical.is-drawn .bot-path { stroke-dashoffset: 0; }

/* ═══════════════════════════════════════════════════════
   WHY
═══════════════════════════════════════════════════════ */
.why { padding: 9rem 0; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why__item {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.why__item:last-child { border-right: none; padding-right: 0; }
.why__item:first-child { padding-left: 0; }
.why__item:hover { background: rgba(45,102,64,.04); }

.why__num {
  display: block;
  font-family: var(--font-d);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(138,104,24,.18);
  margin-bottom: 1.25rem;
  transition: color .4s;
}
.why__item:hover .why__num { color: rgba(138,104,24,.45); }

.why__rule {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-bottom: 1.25rem;
  transition: width .4s var(--ease), opacity .4s;
}
.why__item:hover .why__rule { width: 52px; opacity: .8; }

.why__item h3 {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .7rem;
}
.why__item p { font-size: .875rem; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 9rem 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__address {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.contact__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-child { border-bottom: none; padding-bottom: 0; }

.ci__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(45,102,64,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci__icon svg { width: 18px; height: 18px; color: var(--green-soft); }

.contact__item strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: .35rem;
  font-weight: 500;
}
.contact__item span, .contact__item a {
  font-size: .95rem;
  color: var(--cream-dim);
  line-height: 1.65;
}
.contact__item a { transition: color .2s; }
.contact__item a:hover { color: var(--gold); }

.contact__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Map */
.contact__map { height: 100%; min-height: 520px; }
.map-frame {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  filter: grayscale(.7) sepia(.25) brightness(.95);
}

.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
}
.pin__dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid rgba(138,104,24,.3);
  position: relative;
  z-index: 2;
}
.pin__pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  animation: pin-pulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes pin-pulse {
  0%   { transform: translate(-50%,-50%) scale(.5); opacity:1; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity:0; }
}
.pin__label {
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: .35rem .9rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.footer__left { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.footer__logo {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--cream);
}
.footer__tagline { font-size: .8rem; color: var(--cream-faint); line-height: 1.6; }
.footer__nav {
  display: flex;
  gap: .5rem 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a { font-size: .82rem; color: rgba(28,24,16,.4); transition: color .2s; }
.footer__nav a:hover { color: var(--cream); }
.footer__copy { font-size: .75rem; color: rgba(28,24,16,.3); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .card--studio  { grid-column: 1 / 2; }
  .card--fire    { grid-column: 2 / 3; }
  .card--therapy { grid-column: 1 / 2; }
  .card--tea     { grid-column: 2 / 3; }
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
  .why__item { background: var(--bg); border-right: none; padding: 2rem; }
}

@media (max-width: 900px) {
  .plantlab__inner { grid-template-columns: 1fr; gap: 3rem; }
  .plantlab__visual { order: -1; }
  .botanical { max-width: 200px; height: 300px; }
  .pl__gallery { margin-top: 2.5rem; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }
  .map-frame { min-height: 300px; }
  .ecosystem, .plantlab, .why, .contact { padding: 6rem 0; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; flex-direction: column; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(244,239,229,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav__links.is-open .nav__link { font-size: 1.3rem; letter-spacing: .04em; }
  .nav__links.is-open .nav__cta  { font-size: 1rem; padding: .7rem 2rem; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 3.5rem; }
  .hero__inner { gap: 2.5rem; }
  .hero__content { max-width: 100%; }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__title   { gap: .05em; }
  .hero__sub     { font-size: .88rem; margin-bottom: 1.75rem; }
  .hero__ctas    { flex-direction: column; align-items: center; width: 100%; }
  .hero__ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Hero stats */
  .hero__stats   { padding: 1rem 1.5rem; gap: 1.5rem; }
  .stat__num     { font-size: 2rem; }
  .stat__label   { font-size: .6rem; }

  /* Sections */
  .ecosystem, .schedule, .plantlab, .why, .contact { padding: 5rem 0; }
  .sec-header { margin-bottom: 3.5rem; }

  /* Cards */
  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .card--studio, .card--fire, .card--therapy, .card--tea { grid-column: auto; }
  .card__media { height: 280px; }
  .card--studio  .card__media { height: 300px; }
  .card--therapy .card__media { height: 280px; }

  /* Card title icon — smaller on mobile */
  .fire-mini { width: 22px; height: 34px; }
  .fm__outer { width: 15px; height: 24px; margin-left: -7.5px; }
  .fm__inner { width: 9px;  height: 15px; margin-left: -4.5px; }
  .fm__core  { width: 5px;  height: 9px;  margin-left: -2.5px; }
  .tea-mini  { width: 32px; height: 40px; }
  .tm__bowl  { width: 24px; height: 15px; }
  .tm__saucer{ width: 30px; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }
  .why__item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .why__item:last-child { border-bottom: none; }

  /* PlantLab */
  .pl__pillars li { gap: .9rem; }
  .pl__gallery { grid-template-columns: 1fr; }
  .pl__gallery-item { height: 460px; }

  /* Contact */
  .contact__ctas { flex-direction: column; }
  .contact__ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  /* Hero title */
  .title__big    { font-size: clamp(3.8rem, 20vw, 6rem); letter-spacing: .06em; }
  .title__italic { font-size: clamp(1.05rem, 4.8vw, 1.5rem); }
  .title__main   { font-size: clamp(1.3rem, 5.5vw, 1.9rem); }
  .hero__sub     { font-size: .82rem; }
  .hero__logo    { width: 110px; height: 110px; }

  /* Hero stats — column on small phones */
  .hero__stats {
    flex-direction: column;
    border-radius: var(--r-card);
    gap: .75rem;
    padding: 1.25rem 1.75rem;
    width: 100%;
    max-width: 260px;
  }
  .stat__rule { width: 48px; height: 1px; align-self: center; }
  .stat__num  { font-size: 2.2rem; }

  /* Sections */
  .ecosystem, .schedule, .plantlab, .why, .contact { padding: 3.5rem 0; }
  .sec-header { margin-bottom: 2.5rem; }
  .sec-title  { font-size: clamp(2rem, 8vw, 3rem); }

  /* Cards */
  .card__media { height: 240px; }
  .card--therapy .card__media { height: 240px; }
  .card__body { padding: 1.25rem 1.25rem 1.5rem; }

  /* Why */
  .why__item { padding: 1.25rem 0; }
  .why__num  { font-size: 2.6rem; }

  /* PlantLab */
  .botanical { display: none; }
  .pl__gallery-item { height: 380px; }
  .plantlab__desc { font-size: .95rem; }

  /* Contact */
  .contact__map { min-height: 260px; }
  .map-frame    { min-height: 260px; }

  /* Footer */
  .footer { padding: 2.5rem 0; }
}

/* Hide custom cursor on touch */
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto !important; }
}

/* ═══════════════════════════════════════════════════════
   SCHEDULE / CALENDAR
   ═══════════════════════════════════════════════════════ */

.schedule {
  padding: 7rem 0;
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.cal {
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-card);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 24px 64px rgba(28, 24, 16, .06);
}

.cal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cal__month {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .02em;
}

.cal__nav {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
}

.cal__nav svg { width: 20px; height: 20px; }

.cal__nav:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.05);
}

.cal__status {
  font-size: .82rem;
  color: var(--cream-faint);
  text-align: center;
  margin-bottom: 1rem;
}

.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .25rem;
  margin-bottom: .5rem;
}

.cal__weekday {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream-faint);
  padding: .35rem 0;
}

.cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
}

.cal__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .35rem;
  min-height: 64px;
  padding: .55rem .25rem .45rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-b);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s, transform .2s var(--ease);
}

.cal__day--muted {
  opacity: .28;
  pointer-events: none;
}

.cal__day--empty {
  cursor: default;
  opacity: .55;
}

.cal__day--today {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.cal__day--has-events:hover {
  background: rgba(138, 104, 24, .12);
  border-color: rgba(138, 104, 24, .35);
  transform: translateY(-2px);
}

.cal__day-num {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
}

.cal__dots {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: center;
}

.cal__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Modal */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.cal-modal.is-open {
  display: grid;
  pointer-events: auto;
}

.cal-modal[hidden] {
  display: none !important;
}

.cal-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(28, 24, 16, .45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.cal-modal__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-card);
  box-shadow: 0 32px 80px rgba(28, 24, 16, .18);
  animation: calModalIn .35s var(--ease) both;
}

@keyframes calModalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.cal-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem .75rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
}

.cal-modal__title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

.cal-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}

.cal-modal__close:hover { background: var(--surface-2); }

.cal-modal__body {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cal-event {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.cal-event__time {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.cal-event__title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .25rem;
}

.cal-event__meta {
  font-size: .82rem;
  color: var(--cream-faint);
  margin-bottom: .5rem;
}

.cal-event__desc {
  font-size: .9rem;
  color: var(--cream-dim);
  margin-bottom: .85rem;
  line-height: 1.6;
}

.cal-event__register {
  display: inline-flex;
  padding: .55rem 1.25rem;
  font-size: .82rem;
}

/* ═══════════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════════ */

.admin-body {
  min-height: 100vh;
  background: var(--bg-2);
}

.admin-wrap {
  width: min(960px, 100% - 2rem);
  margin-inline: auto;
  padding: 3rem 0 4rem;
}

.admin-brand {
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: .18em;
  color: var(--cream-faint);
  margin-bottom: .5rem;
}

.admin-brand--sm { font-size: .95rem; margin-bottom: 0; }

.logo__v { color: var(--gold); font-weight: 600; }

.admin-title {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .35rem;
}

.admin-sub {
  font-size: .92rem;
  color: var(--cream-faint);
  margin-bottom: 1.75rem;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
}

.admin-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.admin-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .admin-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.admin-section-title {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.admin-field span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.admin-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

@media (max-width: 520px) {
  .admin-field-row { grid-template-columns: 1fr; }
}

.admin-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--cream-dim);
  cursor: pointer;
}

.admin-check input { width: 16px; height: 16px; accent-color: var(--gold); }

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.15rem;
  border-radius: var(--r-pill);
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}

.admin-btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.admin-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.admin-btn--ghost {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--cream-dim);
}

.admin-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.admin-btn--danger {
  background: transparent;
  border-color: rgba(180, 60, 40, .35);
  color: #a04030;
}

.admin-btn--danger:hover {
  background: rgba(180, 60, 40, .08);
}

.admin-alert {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .88rem;
  margin-bottom: 1rem;
}

.admin-alert--error {
  background: rgba(180, 60, 40, .1);
  border: 1px solid rgba(180, 60, 40, .25);
  color: #8b3a2a;
}

.admin-alert--success {
  background: rgba(45, 102, 64, .1);
  border: 1px solid rgba(45, 102, 64, .25);
  color: var(--green);
}

.admin-config-warn {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--cream-faint);
}

.admin-config-warn code {
  font-size: .78rem;
  background: var(--bg);
  padding: .15rem .4rem;
  border-radius: 4px;
}

.admin-events-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 70vh;
  overflow-y: auto;
}

.admin-event-card {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.admin-event-card__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}

.admin-event-card__chip {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: .2rem .55rem;
  border-radius: var(--r-pill);
}

.admin-event-card__draft {
  font-size: .65rem;
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-event-card__title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: .2rem;
}

.admin-event-card__when,
.admin-event-card__loc {
  font-size: .82rem;
  color: var(--cream-faint);
}

.admin-event-card__actions {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.admin-loading,
.admin-empty,
.admin-error {
  font-size: .88rem;
  color: var(--cream-faint);
  padding: 1rem 0;
}

.admin-error { color: #a04030; }
