/* ---------- Solstice Cerámica — Design Tokens ---------- */
:root {
  /* Palette A — Terracotta & Cream (default) */
  --bg: #f3ead0;
  --bg-deep: #ecdeb5;
  --ink: #2a1509;
  --ink-soft: #4a2a16;
  --cream: #f0e4a8;
  --cocoa: #3b1d0e;
  --clay: #c9572d;
  --sage: #7a8a5c;
  --ochre: #d49a2a;
  --accent: var(--clay);

  /* Type */
  --font-display: "Young Serif", "DM Serif Display", Georgia, serif;
  --font-body: "Instrument Serif", Georgia, serif;
  --font-hand: "Caveat", "Homemade Apple", cursive;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
  --anim-scale: 1;
}

/* Palette B — Cocoa Dark */
[data-palette="cocoa"] {
  --bg: #2a1509;
  --bg-deep: #1a0d05;
  --ink: #f0e4a8;
  --ink-soft: #d4c48a;
  --cream: #f0e4a8;
  --cocoa: #f0e4a8;
  --clay: #e07a45;
  --sage: #9aab7a;
  --ochre: #e8b84a;
  --accent: var(--clay);
}

/* Palette C — Sage Meadow */
[data-palette="sage"] {
  --bg: #eae6d3;
  --bg-deep: #d8d3b8;
  --ink: #1f2a1a;
  --ink-soft: #3a4a32;
  --cream: #f0e4a8;
  --cocoa: #3b1d0e;
  --clay: #c9572d;
  --sage: #5c7248;
  --ochre: #d49a2a;
  --accent: var(--sage);
}

/* Palette D — Ochre Sun */
[data-palette="ochre"] {
  --bg: #f5e6b8;
  --bg-deep: #ecd38a;
  --ink: #2a1509;
  --ink-soft: #4a2a16;
  --cream: #fff2c2;
  --cocoa: #3b1d0e;
  --clay: #c9572d;
  --sage: #7a8a5c;
  --ochre: #b8842a;
  --accent: var(--ochre);
}

/* Typography pairings */
[data-type="warm"] {
  --font-display: "Young Serif", Georgia, serif;
  --font-body: "Instrument Serif", Georgia, serif;
}
[data-type="editorial"] {
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Cormorant Garamond", Georgia, serif;
}
[data-type="handcraft"] {
  --font-display: "Caveat Brush", "Young Serif", cursive;
  --font-body: "Instrument Serif", Georgia, serif;
}
[data-type="modern"] {
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Instrument Serif", Georgia, serif;
}

/* Anim intensity */
[data-anim="subtle"] { --anim-scale: 0.4; }
[data-anim="moderate"] { --anim-scale: 1; }
[data-anim="rich"] { --anim-scale: 1.6; }

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

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

.display { font-family: var(--font-display); font-weight: 400; line-height: 0.92; letter-spacing: -0.02em; }
.hand { font-family: var(--font-hand); font-weight: 400; }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .wrap { padding: 0 20px; } }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent;
  border: 2px solid var(--cream);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.2s;
  z-index: 9999;
}
.cursor.big { width: 64px; height: 64px; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream); pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s;
}
@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  color: #f3ead0;
  transition: padding 0.4s var(--ease-out);
}
.nav.scrolled { padding: 12px 40px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  background: rgba(42, 21, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(243, 234, 208, 0.12);
  color: #f3ead0;
}
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f0e4a8;
  display: grid; place-items: center;
  color: #3b1d0e;
  font-size: 14px;
  mix-blend-mode: normal;
}
.nav-links {
  display: flex; gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: rgba(42, 21, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(243, 234, 208, 0.12);
}
.nav-links a { position: relative; padding: 6px 12px; color: #f3ead0; border-radius: 999px; transition: background 0.3s var(--ease-out); }
.nav-links a:hover { background: rgba(243, 234, 208, 0.12); }
.nav-links a::after {
  content: none;
}

.nav-cta {
  padding: 10px 22px;
  border: 1px solid rgba(243, 234, 208, 0.2);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f3ead0;
  color: #2a1509;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}
.nav-cta:hover { background: #fff7df; transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--cocoa);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero-title .word {
  display: block;
  overflow: hidden;
}
.hero-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal-up calc(1s / var(--anim-scale)) var(--ease-out) forwards;
}
.hero-title .word:nth-child(2) .word-inner { animation-delay: calc(0.15s / var(--anim-scale)); }
.hero-title .word:nth-child(3) .word-inner { animation-delay: calc(0.3s / var(--anim-scale)); }
.hero-title em {
  font-style: italic;
  color: var(--clay);
  font-family: var(--font-body);
}
@keyframes reveal-up {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  max-width: 440px;
  opacity: 0; animation: fade-up 1s var(--ease-out) 0.8s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-right {
  position: relative;
  aspect-ratio: 1/1.1;
  display: grid; place-items: center;
}
.vessel {
  width: 100%; height: 100%;
  position: relative;
  display: grid; place-items: center;
}
.vessel-orb {
  position: relative;
  width: 90%; aspect-ratio: 1;
  min-height: 300px;
  display: grid; place-items: center;
}

/* Pottery wheel — side view */
.wheel-stage {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
/* The clay vessel being shaped */
.clay-vessel {
  width: 54%; height: 48%;
  position: relative;
  transform-origin: 50% 100%;
  animation: clay-shape 6s ease-in-out infinite;
}
.clay-vessel svg { width: 100%; height: 100%; display: block; overflow: visible; }
.clay-body {
  fill: url(#clayGrad);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.clay-highlight {
  fill: rgba(255, 220, 180, 0.25);
}
.clay-shadow {
  fill: rgba(0, 0, 0, 0.25);
}
.clay-ridge {
  stroke: rgba(0,0,0,0.18);
  stroke-width: 0.6;
  fill: none;
  animation: ridge-slide 2s linear infinite;
}

@keyframes clay-shape {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  25% { transform: scaleY(1.05) scaleX(0.97); }
  50% { transform: scaleY(0.96) scaleX(1.03); }
  75% { transform: scaleY(1.03) scaleX(0.98); }
}
@keyframes ridge-slide {
  from { transform: translateY(0); opacity: 0.6; }
  to { transform: translateY(2px); opacity: 0.2; }
}

/* The wheel plate */
.wheel-plate {
  width: 78%; height: 14%;
  margin-top: -4%;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, #3b1d0e 0%, #1a0d05 80%);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    inset 0 4px 8px rgba(0,0,0,0.5),
    inset 0 -2px 4px rgba(240, 228, 168, 0.1);
}
.wheel-plate::before {
  content: ""; position: absolute;
  inset: 12% 4%;
  border-radius: 50%;
  border: 1px dashed rgba(240, 228, 168, 0.15);
  animation: wheel-spin 3s linear infinite;
}
.wheel-plate::after {
  content: ""; position: absolute;
  top: 45%; left: 50%; transform: translate(-50%, -50%);
  width: 14%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #c9572d, #5a2810);
  animation: wheel-spin 3s linear infinite;
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}

/* Water drops / clay specks */
.speck {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay);
  opacity: 0;
  animation: fly 2.4s ease-out infinite;
}
.speck.s1 { top: 40%; left: 20%; animation-delay: 0s; }
.speck.s2 { top: 45%; right: 18%; animation-delay: 0.6s; background: var(--ochre); }
.speck.s3 { top: 55%; left: 25%; animation-delay: 1.2s; background: var(--cream); }
.speck.s4 { top: 50%; right: 25%; animation-delay: 1.8s; }

@keyframes fly {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(var(--dx, -40px), -80px) scale(0.2); }
}
.speck.s1 { --dx: -50px; }
.speck.s2 { --dx: 45px; }
.speck.s3 { --dx: -35px; }
.speck.s4 { --dx: 55px; }

/* Hands hint */
.hands {
  position: absolute;
  top: 32%; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 8%;
  pointer-events: none;
}
.hand-shape {
  width: 70px; height: 90px;
  background: linear-gradient(180deg, #d4a38a, #b07a5a);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  opacity: 0.85;
  box-shadow: inset -4px -6px 10px rgba(0,0,0,0.25);
  animation: hand-press 6s ease-in-out infinite;
}
.hand-shape.right { transform: scaleX(-1); animation-delay: 0s; }
@keyframes hand-press {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(4px) scaleX(1); }
}
.hand-shape.right { animation-name: hand-press-right; }
@keyframes hand-press-right {
  0%, 100% { transform: scaleX(-1) translateX(0); }
  50% { transform: scaleX(-1) translateX(4px); }
}
/* ---------- PotteryWheel component ---------- */
.wheel-scene {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 12%;
}
.wheel-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(180,80,30,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.wheel-head {
  position: absolute;
  bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 72%;
  aspect-ratio: 4.2 / 1;
  perspective: 600px;
  display: flex; flex-direction: column; align-items: center;
}
.wheel-head-top {
  width: 100%; flex: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, #4a2010 0%, #1a0d05 80%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.55), inset 0 2px 4px rgba(240,228,168,0.08);
  position: relative;
  overflow: hidden;
}
.wheel-head-top::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(240,228,168,0.05) 0deg 6deg, transparent 6deg 12deg);
}
.wheel-head-top::after {
  content: '';
  position: absolute; inset: 15% 10%;
  border-radius: 50%;
  border: 1px dashed rgba(240,228,168,0.12);
}
.wheel-head-side {
  width: 96%; height: 7px;
  background: linear-gradient(180deg, #2a1208 0%, #120804 100%);
  border-radius: 0 0 6px 6px;
}
.wheel-vessel {
  position: absolute;
  bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 46%; height: 62%;
  z-index: 5;
}
.wheel-drip {
  position: absolute;
  width: 3px; height: 0; border-radius: 2px;
  background: rgba(180,100,50,0.7);
  bottom: 22%; left: calc(50% + 26%);
  animation: drip-fall 3s ease-in infinite;
}
@keyframes drip-fall {
  0%   { opacity: 0; height: 0; transform: translateY(0); }
  15%  { opacity: 0.8; height: 8px; }
  80%  { opacity: 0.5; height: 14px; transform: translateY(22px); }
  100% { opacity: 0; height: 2px; transform: translateY(28px); }
}
.wheel-specks { position: absolute; inset: 0; pointer-events: none; }
.wspeck {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--clay); opacity: 0;
}
.ws0 { top: 44%; left: 24%; --dx: -44px; --dy: -60px; animation: wspeck-fly 2.2s ease-out 0s    infinite; }
.ws1 { top: 48%; right: 22%; background: var(--ochre); --dx: 40px; --dy: -60px; animation: wspeck-fly 2.2s ease-out 0.44s infinite; }
.ws2 { top: 52%; left: 28%; background: var(--cream); --dx: -30px; --dy: -60px; animation: wspeck-fly 2.2s ease-out 0.88s infinite; }
.ws3 { top: 46%; right: 26%; --dx: 50px; --dy: -60px; animation: wspeck-fly 2.2s ease-out 1.32s infinite; }
.ws4 { top: 50%; left: 22%; --dx: -38px; --dy: -60px; animation: wspeck-fly 2.2s ease-out 1.76s infinite; }
@keyframes wspeck-fly {
  0%   { opacity: 0; transform: translate(0,0) scale(0.5); }
  15%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.15); }
}
.wheel-hand {
  position: absolute;
  width: 52px; height: 90px;
  border-radius: 40% 40% 20% 20% / 55% 55% 45% 45%;
  background: linear-gradient(170deg, #d4a882 0%, #b07854 55%, #8a5434 100%);
  opacity: 0.92;
  box-shadow: inset -3px -4px 10px rgba(0,0,0,0.35), 3px 6px 16px rgba(0,0,0,0.3);
  z-index: 10;
}
.wheel-hand::before {
  content: '';
  position: absolute;
  inset: 10% 8%;
  border-radius: 38% 38% 20% 20% / 50% 50% 42% 42%;
  background: linear-gradient(170deg, rgba(255,220,180,0.35) 0%, transparent 60%);
}
.wheel-hand::after {
  content: '';
  position: absolute;
  width: 16px; height: 28px;
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, #c89868 0%, #9a6840 100%);
  top: 10%; right: -8px;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.25);
}
.wheel-hand.left  { left: 28%; animation: hand-breathe 5s ease-in-out infinite; }
.wheel-hand.right { right: 28%; transform: scaleX(-1); animation: hand-breathe-right 5s ease-in-out infinite; }
@keyframes hand-breathe       { 0%,100%{transform:translateX(0)}           50%{transform:translateX(5px)} }
@keyframes hand-breathe-right { 0%,100%{transform:scaleX(-1) translateX(0)} 50%{transform:scaleX(-1) translateX(5px)} }

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-top: 80px;
}
.hero-stats {
  display: flex; gap: 48px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--cream);
}
.stat .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
}
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.7;
}
.hero-scroll-line {
  width: 40px; height: 1px; background: currentColor;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.3); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

/* Noise overlay */
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-footer { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat .num { font-size: 40px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--clay);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 30s linear infinite;
  animation-duration: calc(30s / var(--anim-scale));
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-body);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-line { overflow: hidden; }
.reveal-line > * { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.reveal-line.in > * { transform: translateY(0); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  aspect-ratio: 4/5;
  background: var(--bg-deep);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about-img-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(42,21,9,0.04) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #d8c89a, #b8a06a);
  display: grid; place-items: center;
}
.about-img-ph span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-soft);
  background: rgba(243, 234, 208, 0.8); padding: 8px 14px; border-radius: 999px;
}
.about-copy p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.about-copy p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--ink);
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.about-stat .lbl {
  font-size: 13px;
  margin-top: 8px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Packages / Pricing ---------- */
.packages {
  background: var(--cocoa);
  color: var(--cream);
}
.packages .section-label { color: rgba(240, 228, 168, 0.7); }
.packages .section-title { color: var(--cream); }
.packages .section-title em { color: var(--clay); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  border: 1px solid rgba(240, 228, 168, 0.2);
  border-radius: 6px;
  padding: 40px 32px 32px;
  position: relative;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  background: rgba(240, 228, 168, 0.02);
}
.pkg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 87, 45, 0.25), transparent 70%);
  opacity: 0; transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}
.pkg:hover { border-color: var(--clay); transform: translateY(-4px); }
.pkg:hover::before { opacity: 1; }
.pkg.featured { border-color: var(--clay); background: rgba(201, 87, 45, 0.08); }
.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--clay); color: var(--cream);
  padding: 6px 12px; border-radius: 999px;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.pkg-tag {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--clay);
  margin-bottom: 32px;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.pkg-price .cur {
  font-size: 20px; opacity: 0.6;
  font-family: var(--font-body);
}
.pkg-per {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240, 228, 168, 0.2);
}
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pkg-list li {
  font-size: 16px; line-height: 1.5;
  padding-left: 24px; position: relative;
}
.pkg-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay);
}
.pkg-btn {
  display: block; width: 100%;
  padding: 16px; border-radius: 999px;
  border: 1px solid var(--cream);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center;
  transition: all 0.3s;
}
.pkg-btn:hover { background: var(--cream); color: var(--cocoa); }
.pkg.featured .pkg-btn { background: var(--clay); border-color: var(--clay); }
.pkg.featured .pkg-btn:hover { background: var(--cream); border-color: var(--cream); color: var(--cocoa); }

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
}

/* ---------- Calendar ---------- */
.cal-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.cal-month {
  background: var(--bg-deep);
  border-radius: 6px;
  padding: 32px;
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.cal-head h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}
.cal-nav {
  display: flex; gap: 8px;
}
.cal-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: all 0.3s;
}
.cal-nav button:hover { background: var(--ink); color: var(--bg); }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; color: var(--ink-soft);
}
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.cal-day.muted { opacity: 0.25; cursor: default; }
.cal-day.closed {
  opacity: 0.35; cursor: not-allowed;
  background-image: repeating-linear-gradient(45deg, rgba(42,21,9,0.15) 0 1px, transparent 1px 5px);
  color: var(--ink-soft);
}
.cal-day.closed:hover { background-color: transparent !important; color: var(--ink-soft) !important; }
.cal-day.has-event { color: var(--accent); font-weight: 600; }
.cal-day.has-event::after {
  content: ""; position: absolute; bottom: 4px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
}
.cal-day:not(.muted):hover { background: var(--ink); color: var(--bg); }
.cal-day.selected { background: var(--accent); color: var(--cream); }
.cal-day.selected::after { background: var(--cream); }

.events-list { display: flex; flex-direction: column; gap: 2px; }
.event {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.event:hover { padding-left: 16px; background: var(--bg-deep); }
.event-spots {
  margin-top: 12px;
  max-width: 320px;
}
.event-spots-bar {
  height: 4px;
  background: rgba(42, 21, 9, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.event-spots-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}
.event-spots-text {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cal-tooltip {
  position: fixed;
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: 500;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  min-width: 220px;
  max-width: 300px;
  animation: tooltip-in 0.2s var(--ease-out);
}
@keyframes tooltip-in {
  from { opacity: 0; transform: translate(16px, 20px); }
  to { opacity: 1; transform: translate(16px, 16px); }
}
.cal-tooltip-title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cal-tooltip-meta {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 8px;
}
.cal-tooltip-spots {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cal-tooltip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6ea35a;
  box-shadow: 0 0 0 3px rgba(110, 163, 90, 0.25);
}
.cal-tooltip-dot.low { background: var(--ochre); box-shadow: 0 0 0 3px rgba(212, 154, 42, 0.25); }
.cal-tooltip-dot.empty { background: #c9572d; box-shadow: 0 0 0 3px rgba(201, 87, 45, 0.25); }
.event-date {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}
.event-date .m { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; font-family: var(--font-body); }
.event-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.event-meta { font-size: 14px; color: var(--ink-soft); display: flex; gap: 16px; flex-wrap: wrap; }
.event-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}
@media (max-width: 900px) {
  .cal-grid { grid-template-columns: 1fr; gap: 32px; }
  .event { grid-template-columns: 80px 1fr; }
  .event-price { grid-column: 2; }
}

/* ---------- Gallery ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.g-cell { grid-column: span 4; }
.g-cell:nth-child(4) { grid-column: span 5; }
.g-cell:nth-child(5) { grid-column: span 3; }
.g-item {
  width: 100%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}
.g-item:hover { transform: scale(1.03); }
.g-ph {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}
.g-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(240, 228, 168, 0.85);
  background: rgba(0,0,0,0.3); padding: 6px 10px; border-radius: 4px;
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .g-cell, .g-cell:nth-child(n) { grid-column: span 1; }
  .g-item { margin-top: 0 !important; aspect-ratio: 4/5 !important; }
}

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.product {
  cursor: pointer;
}
.product-img {
  aspect-ratio: 1;
  background: var(--bg-deep);
  border-radius: 4px;
  position: relative; overflow: hidden;
  margin-bottom: 16px;
  display: grid; place-items: center;
}
.product-img.clay { background: radial-gradient(circle at 50% 50%, #c9572d, #3b1d0e); }
.product-img.cream { background: radial-gradient(circle at 50% 50%, #f0e4a8, #b8a06a); }
.product-img.sage { background: radial-gradient(circle at 50% 50%, #9aab7a, #4a5a32); }
.product-img.ochre { background: radial-gradient(circle at 50% 50%, #e8b84a, #8a5a1a); }
.product-shape {
  width: 55%; transition: transform 0.6s var(--ease-out);
}
.product:hover .product-shape { transform: translateY(-8px) rotate(-4deg); }
.product-img::after {
  content: "VER"; position: absolute; inset: auto 0 0 0;
  padding: 10px; text-align: center;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.product:hover .product-img::after { transform: translateY(0); }
.product-name {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.1; margin-bottom: 4px;
}
.product-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--ink-soft);
}
.product-price { color: var(--ink); font-family: var(--font-display); font-size: 20px; }
@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Private events ---------- */
.events-private {
  background: var(--clay);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.events-private .section-label { color: rgba(240, 228, 168, 0.8); }
.events-private .section-label::before { background: var(--cream); }
.events-private .section-title em { color: var(--cocoa); }

.pe-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.pe-card {
  background: var(--cocoa); color: var(--cream);
  border-radius: 6px; padding: 48px;
  position: relative;
}
.pe-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(240, 228, 168, 0.2);
}
.pe-card-head h3 {
  font-family: var(--font-display); font-size: 40px; line-height: 1;
}
.pe-price {
  font-family: var(--font-display); font-size: 56px; line-height: 1;
  color: var(--clay);
}
.pe-price .cur { font-size: 16px; color: rgba(240, 228, 168, 0.6); font-family: var(--font-body); }
.pe-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.pe-list li {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  align-items: center;
  font-size: 17px; line-height: 1.4;
}
.pe-list li .pe-num {
  font-family: var(--font-display);
  font-size: 28px; color: var(--clay); line-height: 1;
}
.pe-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.pe-copy p { font-size: 20px; line-height: 1.5; margin-bottom: 32px; max-width: 480px; }
.pe-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--cream); color: var(--cocoa);
  border-radius: 999px;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.pe-btn:hover { background: var(--cocoa); color: var(--cream); transform: translateX(4px); }
.pe-btn-arrow {
  display: inline-block; transition: transform 0.3s;
}
.pe-btn:hover .pe-btn-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .pe-grid { grid-template-columns: 1fr; gap: 32px; }
  .pe-card { padding: 28px; }
  .pe-card-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Testimonial strip ---------- */
.testimonial {
  padding: 140px 0;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  max-width: 1100px;
  margin: 0 auto 40px;
  letter-spacing: -0.02em;
}
.testimonial-quote em { font-style: italic; color: var(--accent); font-family: var(--font-body); }
.testimonial-author {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cocoa);
  color: var(--cream);
  position: relative;
}
.contact .section-label { color: rgba(240, 228, 168, 0.7); }
.contact .section-title { color: var(--cream); }
.contact .section-title em { color: var(--clay); }

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field {
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 1px solid rgba(240, 228, 168, 0.25);
  padding-bottom: 12px;
  transition: border-color 0.3s;
}
.field:focus-within { border-color: var(--clay); }
.field label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.7;
}
.field input, .field textarea, .field select {
  background: transparent; border: 0; color: var(--cream);
  font-family: var(--font-display); font-size: 22px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); font-size: 18px; }
.field select option { background: var(--cocoa); }
.contact-submit {
  align-self: flex-start; margin-top: 16px;
  padding: 18px 40px; border-radius: 999px;
  background: var(--clay); color: var(--cream);
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
}
.contact-submit:hover { background: var(--cream); color: var(--cocoa); transform: translateY(-2px); }
.contact-info-block { margin-bottom: 40px; }
.contact-info-block h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 10px;
}
.contact-info-block p { font-family: var(--font-display); font-size: 28px; line-height: 1.2; }
.contact-info-block a:hover { color: var(--clay); }
.contact-map {
  margin-top: 40px;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #8a5a2a, #4a2a10);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.contact-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(240, 228, 168, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 228, 168, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact-map-pin {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--clay); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(201, 87, 45, 0.3), 0 0 0 20px rgba(201, 87, 45, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 14px rgba(201, 87, 45, 0.2), 0 0 0 30px rgba(201, 87, 45, 0.08); }
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--cocoa);
  color: var(--cream);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(240, 228, 168, 0.15);
}
.footer-big {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: var(--cream);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(240, 228, 168, 0.15);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.7;
  flex-wrap: wrap; gap: 16px;
}

/* ---------- Pottery ambient animations ---------- */
.clay-float {
  position: fixed; pointer-events: none; z-index: 1;
  width: 10px; height: 12px; border-radius: 60% 60% 50% 50% / 50% 50% 60% 60%;
  background: var(--clay); opacity: 0.15;
  animation: clay-rise 18s linear infinite;
}
@keyframes clay-rise {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) rotate(180deg); opacity: 0; }
}

/* Inline spinning wheel motif for section separators */
.wheel-sep {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 40px 0; opacity: 0.5;
}
.wheel-sep-spin {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--ink); border-top-color: transparent;
  animation: wheel-sep-spin 3s linear infinite;
}
.wheel-sep-line { width: 80px; height: 1px; background: var(--ink); opacity: 0.3; }
@keyframes wheel-sep-spin { to { transform: rotate(360deg); } }

/* Drip underline for emphasis */
.drip { position: relative; display: inline-block; }
.drip::after {
  content: ""; position: absolute; bottom: -8px; left: 10%; right: 10%; height: 3px;
  background: var(--accent); border-radius: 999px;
  transform: scaleX(0); transform-origin: left;
  animation: drip-draw 1.2s var(--ease-out) 0.8s forwards;
}
@keyframes drip-draw { to { transform: scaleX(1); } }

/* Hover tilt for package cards */
.pkg { will-change: transform; }

/* ---------- Tweaks Panel ---------- */
.tweaks {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  z-index: 200;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: none;
  font-family: var(--font-body);
}
.tweaks.visible { display: block; }
.tweaks h5 {
  font-family: var(--font-display); font-size: 20px;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  display: flex; justify-content: space-between; align-items: center;
}
.tweak-group { margin-bottom: 16px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 8px; opacity: 0.7;
}
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-chip {
  padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px;
  font-size: 12px; transition: all 0.2s; opacity: 0.6;
}
.tweak-chip.active { background: var(--ink); color: var(--bg); opacity: 1; }
.tweak-chip:not(.active):hover { opacity: 1; }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s;
}
.tweak-swatch.active { border-color: var(--ink); transform: scale(1.1); }
