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

:root {
  --logo-gold: #A48F6E;
  --logo-gold-dark: #8A7356;
  --logo-gold-light: #C4B49A;
  --terra: #C4623A;
  --terra-light: #D4775A;
  --dark: #1E1611;
  --dark2: #2A1F18;
  --cream: #F5F0E8;
  --warm-white: #FAF7F3;
  --sand: #E8DDD0;
  --muted: #8A7B6E;
  --text: #1E1611;
  --text-light: #6B5D52;
  --section-pad: 5rem 2.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  background: var(--dark);
}

.nav-logo {
  display: flex; align-items: flex-start; gap: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #fff; font-weight: 400; line-height: 1.1;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo sup { font-size: 10px; color: var(--terra); }
.nav-logo span { font-size: 11px; display: block; color: #8A7B6E; font-family: 'Inter', sans-serif; font-weight: 300; letter-spacing: 0.05em; }

nav ul { display: flex; gap: 2rem; list-style: none; }
nav ul li a {
  font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav ul li a:hover { color: #fff; }
nav ul li.has-arrow a::after { content: ' ↓'; font-size: 10px; }

.nav-cart {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-cart:hover { color: #fff; }
.nav-cart svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.5; transition: stroke 0.2s; }
.nav-cart:hover svg { stroke: #fff; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 60px;
  position: relative; overflow: hidden;
}

/* Right cell cream background */
.hero-visual {
  background: var(--cream);
}

.hero-content { padding: 6rem 2.5rem 4rem 3rem; }

/* Scroll-down indicator — centered at the bottom of the hero, colored
   sponge-style pill. Only the arrow bounces so the button itself stays put
   and is always easy to click. */
.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 18px 8px;
  background: var(--logo-gold);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(164, 143, 110, 0.35);
  transition: background 0.2s, box-shadow 0.2s;
}

.scroll-down:hover {
  background: var(--logo-gold-dark);
  box-shadow: 0 8px 22px rgba(164, 143, 110, 0.45);
}

.scroll-down-label {
  line-height: 1;
}

.scroll-down-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.scroll-down-arrow svg {
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(4px); opacity: 0.55; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin-bottom: 1.2rem;
  max-width: 500px;
}
.hero h1 em { font-style: italic; color: var(--logo-gold); }

.hero p {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 2rem; max-width: 300px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-fill {
  background: var(--logo-gold); color: #fff;
  padding: 12px 24px; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.btn-fill:hover { background: var(--logo-gold-dark); }

.btn-outline {
  background: var(--cream); color: var(--dark);
  padding: 12px 24px; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--sand);
  font-family: 'Inter', sans-serif; transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: #fff; border-color: var(--muted); }

.hero-badge {
  display: flex; align-items: center; gap: 10px;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badge svg { width: 28px; height: 28px; stroke: var(--logo-gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.hero-badge p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }

.hero-visual {
  position: relative; height: 100vh; overflow: hidden;
}

/* Hero video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  visibility: hidden;
}

/* Subtle left-to-right gradient edge where dark meets cream */
.hero-video-overlay {
  display: none;
}

/* Product imagery in hero */
.tools-stage {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  height: 65vh;
}

.hero-tool-img {
  max-height: 65vh;
  max-width: 45vw;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease, filter 0.5s ease;
  position: relative;
}

.hero-tool-img:hover {
  filter: brightness(1.15);
  transform: translateY(-8px) scale(1.03);
}

/* Periodic shuffle: all tool images are stacked; only the .is-active one is
   visible. The active tool fades + settles in, the previous one fades +
   lifts out. No continuous motion. */
.hero-tool-shuffle {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 320px;
  max-height: 60vh;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-tool-shuffle.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.tools-stage:hover .hero-tool-1 { transform: translateX(-30px) rotate(-12deg) scale(1.05); }
.tools-stage:hover .hero-tool-2 { transform: translateY(-15px) scale(1.05); }
.tools-stage:hover .hero-tool-3 { transform: translateX(30px) rotate(12deg) scale(1.05); }

.hero-tool-1 { left: 8%; bottom: 5%; transform: rotate(-8deg); }
.hero-tool-2 { position: relative; top: auto; left: auto; right: auto; transform: none; }
.hero-tool-3 { right: 5%; bottom: 8%; transform: translateX(50%) rotate(8deg); }

/* Story section images */
.story-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) contrast(1.1);
}
.story-img-left {
  background: linear-gradient(135deg, #3A2519 0%, #2A1A10 100%);
}

/* Packaging section image */
.pack-img {
  max-height: 240px;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
  z-index: 1;
  position: relative;
}
.pack-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Social wall photos */
.social-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.photo-cell-inner {
  width: 100%; height: 100%;
  transition: transform 0.4s;
  overflow: hidden;
}
.photo-cell:hover .photo-cell-inner { transform: scale(1.04); }
.photo-cell:hover .social-photo { transform: scale(1.08); }

/* Accessories photos */
.acc-photo {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0.92) saturate(0.85);
  transition: filter 0.3s, transform 0.3s;
}
.acc-item:hover .acc-photo {
  filter: brightness(1) saturate(1);
  transform: scale(1.05);
}
.acc-img {
  overflow: hidden;
}

/* Thumbnail product images */
.thumb-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Tool card product images */
.tool-card-visual {
  position: relative;
  overflow: hidden;
}

.tool-card-visual img {
  max-width: 85%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
  transition: all 0.5s ease;
}

.tool-card-visual.inuse img {
  border-radius: 4px;
  max-width: 80%;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.25));
}

.tool-card-visual:hover img {
  transform: scale(1.08) translateY(-4px);
}

/* 3D viewer orbit hint */
#heroCanvas::after {
  content: '↻ Drag to rotate';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: fadeInHint 1s ease 2s forwards;
}

@keyframes fadeInHint {
  to { opacity: 1; }
}

/* Tool visualization images */
.tool-viz-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}

.tool-viz-use {
  border-radius: 4px;
}

/* 3D WebGL canvas */
#heroCanvas canvas {
  z-index: 1;
}

/* STL model viewer styles */
.stl-model-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  z-index: 3;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint .arrow { width: 28px; height: 28px; border: 1px solid var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── COLLECTION ── */
.collection {
  background: var(--warm-white);
  padding: 5rem 0 3rem;
}

.collection-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
}

.collection-left { padding-right: 0; }
.eyebrow { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }

.collection-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400; line-height: 1.2;
  color: var(--text);
}
.collection-left h2 em { font-style: italic; color: var(--logo-gold); display: block; }

.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); margin-top: 1.5rem;
  border-bottom: 1px solid var(--text); padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.view-all:hover { color: var(--logo-gold); border-color: var(--logo-gold); }

/* Tool card slider */
.tool-slider { position: relative; }

.tool-main-card {
  background: var(--dark); border-radius: 2px;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.tool-card-info { padding: 2rem; color: #fff; }
.tool-num { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.tool-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 400; color: #fff; margin-bottom: 0.6rem;
}
.tool-card-info p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1.5rem; max-width: 180px; }
.watch-btn {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--logo-gold); border-bottom: 1px solid var(--logo-gold); padding-bottom: 2px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.watch-btn:hover { color: var(--logo-gold-dark); border-color: var(--logo-gold-dark); }

.tool-card-visual {
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

#toolViz {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-toggle {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; border-top: 1px solid rgba(255,255,255,0.08);
}
.view-btn {
  flex: 1; padding: 8px; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.view-btn:last-child { border-right: none; }
.view-btn:hover { color: rgba(255,255,255,0.55); }
.view-btn.active { color: rgba(255,255,255,0.8); }
.view-btn::before { content: '— '; color: var(--logo-gold); }

.slider-arrows {
  display: flex; justify-content: flex-end; gap: 8px; margin-top: 1rem;
}

.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s;
}
.arrow-btn.next { background: var(--logo-gold); color: #fff; }
.arrow-btn.next:hover { background: var(--logo-gold-dark); transform: scale(1.05); }
.arrow-btn.prev { background: var(--warm-white); color: var(--text); border: 1px solid #ddd; }
.arrow-btn.prev:hover { background: var(--cream); border-color: var(--muted); }

.tool-thumbs {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.tool-thumb {
  flex: 1; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform 0.2s ease;
}
.tool-thumb:hover { transform: translateY(-3px); }
.thumb-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--sand);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid transparent; transition: border-color 0.2s;
  overflow: hidden;
}
.tool-thumb.active .thumb-img { border-color: var(--logo-gold); background: var(--dark2); }
.thumb-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── POTTERY WHEEL SECTION ── */
.pottery-wheel-section {
  background: var(--dark);
  padding: 4rem 2.5rem;
  overflow: hidden;
}

.wheel-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.wheel-left .eyebrow {
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.wheel-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.2rem;
}

.wheel-left h2 em {
  color: var(--terra);
  font-style: italic;
}

.wheel-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.model-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.model-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.model-btn:hover {
  background: var(--cream);
  color: var(--text);
  border-color: var(--muted);
}

.model-btn.active {
  background: var(--logo-gold);
  border-color: var(--logo-gold);
  color: #fff;
}

.model-btn-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand);
}

.model-btn.active .model-btn-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.model-btn-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.model-btn-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}

.model-btn-label { font-weight: 500; }
.model-btn-num { font-size: 11px; opacity: 0.7; }

.wheel-toggles {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.wheel-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.wheel-toggle:hover {
  background: var(--cream);
  color: var(--text);
  border-color: var(--muted);
}

.wheel-toggle.active {
  background: var(--logo-gold);
  border-color: var(--logo-gold);
  color: #fff;
}

.toggle-icon { font-size: 14px; }

.model-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

.model-info-preview {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-info-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.model-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.model-info-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.model-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
}

.model-info-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 4px;
}

.model-info-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 14px;
  background: var(--logo-gold);
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.model-info-order:hover {
  background: var(--logo-gold-dark);
  transform: translateX(2px);
}

.model-info-order .order-icon {
  font-size: 13px;
  line-height: 1;
}

.model-info-order .order-arrow {
  font-size: 13px;
  transition: transform 0.2s;
}

.model-info-order:hover .order-arrow {
  transform: translateX(2px);
}

.wheel-viewer {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1210;
}

#potteryWheelCanvas {
  width: 100%;
  height: 100%;
}

.viewer-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}

.hint-dot { color: rgba(255,255,255,0.2); }

/* ── STORY BAND ── */
.story-band {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  min-height: 360px; overflow: hidden;
}

.story-img-left, .story-img-right {
  overflow: hidden;
}
.story-img-left { background: linear-gradient(135deg, #3A2519 0%, #2A1A10 100%); display: flex; align-items: center; justify-content: center; }
.story-img-right { background: linear-gradient(135deg, #F5EFE5 0%, #E8DDD0 100%); display: flex; align-items: center; justify-content: center; }

.story-center {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem;
}

.story-center .eyebrow { margin-bottom: 1.2rem; }
.story-center h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400; line-height: 1.25;
  color: var(--text); margin-bottom: 1rem;
}
.story-center p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }
.story-link {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--text); padding-bottom: 2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.story-link:hover { color: var(--logo-gold); border-color: var(--logo-gold); }

/* ── ACCESSORIES ── */
.accessories {
  padding: var(--section-pad);
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start;
}

.acc-left .eyebrow { margin-bottom: 0.5rem; }
.acc-left h3 { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.acc-link {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--text); padding-bottom: 2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.acc-link:hover { color: var(--logo-gold); border-color: var(--logo-gold); }

.acc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.acc-item { display: flex; flex-direction: column; gap: 10px; transition: transform 0.2s ease; }
.acc-item:hover { transform: translateY(-3px); }
.acc-img {
  aspect-ratio: 1; background: var(--sand); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.acc-name { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ── SOCIAL WALL ── */
.social-wall { padding: var(--section-pad); text-align: center; }
.social-wall .eyebrow-center {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.3rem;
}
.social-wall .sub { font-size: 13px; color: var(--muted); margin-bottom: 2rem; }

.photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 900px;
  margin: 0 auto;
}
.photo-cell {
  aspect-ratio: 1; overflow: hidden;
}
.photo-cell-inner {
  width: 100%; height: 100%; transition: transform 0.4s;
}
.photo-cell:hover .photo-cell-inner { transform: scale(1.04); }

.tag-us-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.tag-us {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--sand); border-radius: 99px;
  font-size: 13px; color: var(--text); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.tag-us:hover { border-color: var(--logo-gold); color: var(--logo-gold); }

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-pad); background: var(--cream); }
.testimonials .eyebrow-center {
  text-align: center; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem;
}

.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1000px; margin: 0 auto 2rem;
}

.test-card {
  padding: 2rem;
  background: var(--warm-white);
  border-radius: 2px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.test-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.test-card.featured { background: var(--logo-gold); }
.test-card.featured blockquote, .test-card.featured .test-author { color: #fff; }
.test-card.featured .test-author-title { color: rgba(255,255,255,0.85); }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px; line-height: 0.5; color: var(--logo-gold);
  margin-bottom: 1rem; display: block;
}
.test-card.featured .quote-mark { color: rgba(255,255,255,0.5); }

blockquote { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; font-style: italic; }
.test-author { font-size: 12px; color: var(--text); font-weight: 500; }
.test-author-title { font-size: 11px; color: var(--muted); margin-top: 2px; }

.test-dots { display: flex; justify-content: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); cursor: pointer; }
.dot.active { background: var(--logo-gold); }

/* ── PRODUCT VIDEO ── */
.product-video {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.video-content {
  background: var(--dark);
  padding: var(--section-pad);
  display: flex; flex-direction: column; justify-content: center;
}

.video-content .eyebrow {
  color: var(--logo-gold); margin-bottom: 0.8rem;
}

.video-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 400; color: #fff; margin-bottom: 2rem;
}

.video-container {
  width: 100%; max-width: 480px;
  border-radius: 4px; overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--dark2);
}

.video-container video {
  width: 100%; aspect-ratio: 16/9; display: block;
  background: #000;
}

.video-thumbs {
  display: flex; gap: 1rem;
}

.video-thumb {
  cursor: pointer; text-align: center; overflow: hidden;
  border-radius: 4px; padding: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.video-thumb.active,
.video-thumb:hover { border-color: var(--logo-gold); }

.video-thumb img {
  width: 80px; height: 60px; object-fit: cover;
  display: block; margin-bottom: 4px;
}

.video-thumb span {
  font-size: 10px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.video-sidebar {
  background: var(--cream);
  padding: var(--section-pad);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

.video-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--text); margin-bottom: 1rem;
}

.video-sidebar p {
  font-size: 13px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 2rem;
}

.video-gallery {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}

.gallery-item {
  flex: 1; aspect-ratio: 1;
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.05); }

.gallery-item img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 1rem;
}

.video-link {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--logo-gold); border-bottom: 1px solid var(--logo-gold); padding-bottom: 2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.video-link:hover { color: var(--logo-gold-dark); border-color: var(--logo-gold-dark); }

/* ── PACKAGING ── */
.packaging {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px; overflow: hidden;
}
.pack-visual {
  background: linear-gradient(135deg, #C4A882 0%, #A8825A 50%, #8A6540 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pack-content {
  background: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--section-pad);
  position: relative;
}

.pack-content-inner {
  position: relative;
  z-index: 1;
}

/* Terra decorative blobs */
.pack-blob {
  position: absolute; bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  background: var(--terra);
  border-radius: 50%;
  opacity: 0.08;
}
.pack-blob2 {
  position: absolute; bottom: 40px; right: 60px;
  width: 160px; height: 160px;
  background: var(--terra);
  border-radius: 50%;
  opacity: 0.12;
}

.pack-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 400; line-height: 1.2;
  color: var(--text); margin-bottom: 1rem;
}
.pack-content p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }
.pack-link {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--text); padding-bottom: 2px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.pack-link:hover { color: var(--logo-gold); border-color: var(--logo-gold); }

/* ── ABOUT COMBINED ── */
.about-combined {
  padding: var(--section-pad);
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-story .eyebrow {
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-story p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-story .story-link {
  margin-top: 1rem;
}
.about-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.about-img-main {
  grid-row: span 2;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  border-radius: 4px;
  overflow: hidden;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── COMMUNITY ── */
.community {
  padding: var(--section-pad);
  background: var(--warm-white);
  text-align: center;
}
.community-header {
  margin-bottom: 3rem;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
}
.community-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.community-photos .photo-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}
.community-photos .photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.community-photos .photo-cell:hover img {
  transform: scale(1.05);
}
.community-testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.community-testimonials .test-card {
  padding: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 3rem 2.5rem 1.5rem;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: grid; grid-template-columns: 200px repeat(4, 1fr);
  gap: 2rem; margin-bottom: 3rem;
}
.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: #fff; margin-bottom: 4px;
}
.footer-brand .logo-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-brand .tagline { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.social-links { display: flex; gap: 12px; }
.social-links a { font-size: 13px; color: rgba(255,255,255,0.55); }

.footer-col h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.7); }

.newsletter { margin-top: 0.5rem; }
.newsletter p { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; line-height: 1.5; }
.email-input { display: flex; }
.email-input input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-right: none; padding: 8px 12px; color: #fff; font-size: 12px;
  font-family: 'Inter', sans-serif; outline: none;
}
.email-input input::placeholder { color: rgba(255,255,255,0.25); }
.email-input button {
  background: var(--logo-gold); border: none; padding: 8px 14px;
  color: #fff; cursor: pointer; font-size: 16px; transition: background 0.2s;
}
.email-input button:hover { background: var(--logo-gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── TOOL SVGs ── */
.tool-rib-svg { opacity: 0.9; }

/* animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-visual { animation: fadeUp 1s ease 0.2s both; }

/* color fills for SVG tools */
.tool-body { fill: #1A1210; }
.tool-hole { fill: #2A1A10; }
.tool-edge { fill: #100C0A; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── FADE-IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 2.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  nav ul.active {
    display: flex;
  }
  
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-visual { height: 50vh; }
  .hero-badge { margin-top: 2rem; }
  
  .collection { padding: 3rem 0 2rem; }
  .collection-inner { padding: 0 1.5rem; }
  .collection-inner { grid-template-columns: 1fr; }
  .collection-left { padding-right: 0; margin-bottom: 2rem; }
  
  .tool-main-card { grid-template-columns: 1fr; }
  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .tool-thumbs { flex-wrap: wrap; }
  
  .story-band { grid-template-columns: 1fr; }
  .story-img-left, .story-img-right { display: none; }
  .story-center { padding: 3rem 1.5rem; }
  
  .accessories { padding: 3rem 1.5rem; }
  .accessories { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  
  .testimonials { padding: 3rem 1.5rem; }
  .test-grid { grid-template-columns: 1fr; }
  
  .packaging { grid-template-columns: 1fr; }
  .pack-content { padding: 3rem 2rem; }
  
  .product-video { grid-template-columns: 1fr; }
  .video-content { padding: 2rem 1.5rem; }
  .video-sidebar { padding: 2rem 1.5rem; }
  .video-sidebar h3 { font-size: 20px; }
  .video-thumbs { flex-wrap: wrap; }
  
  footer { padding: 2rem 1.5rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .wheel-container { grid-template-columns: 1fr; }
  .wheel-left { padding: 0 1.5rem; }
  .wheel-viewer { height: 400px; }
  .wheel-toggles { flex-wrap: wrap; }
  
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main { grid-row: auto; }
  
  .community-grid { grid-template-columns: 1fr; }
  .community-photos { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .acc-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
  .wheel-container { grid-template-columns: 300px 1fr; gap: 2rem; }
  .wheel-viewer { height: 500px; }
}

/* ── NEW LAYOUT: POTTERY WHEEL CENTRIC ── */

/* Hero - Compact */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 0 2.5rem 0 4rem;
  max-width: 600px;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--logo-gold);
}

.hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
}

/* Pottery Wheel - Full Width - Light Theme */
.pottery-wheel-section {
  background: var(--cream);
  padding: 4rem 2.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wheel-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.wheel-header .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wheel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.wheel-header h2 em {
  color: var(--logo-gold);
  font-style: italic;
}

.wheel-header p {
  font-size: 14px;
  color: var(--text-light);
}

.wheel-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
}

.wheel-viewer-full {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--sand);
}

#potteryWheelCanvas {
  width: 100%;
  height: 100%;
}

/* Click/tap mold indicator overlay */
.mold-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.mold-indicator-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(30, 22, 17, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mold-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--logo-gold);
  display: block;
}

.mold-indicator-text {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(245, 240, 232, 0.85);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

/* Idle state: gentle pulse to invite interaction */
.mold-indicator.idle .mold-indicator-icon {
  animation: moldPulse 2s ease-in-out infinite;
}

@keyframes moldPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(164, 143, 110, 0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(164, 143, 110, 0);
  }
}

/* Pressing state: indicator dims and shrinks (feedback that molding is active) */
.mold-indicator.pressing {
  opacity: 0.35;
}

.mold-indicator.pressing .mold-indicator-icon {
  animation: none;
  transform: scale(0.85);
  background: rgba(232, 115, 58, 0.18);
  border-color: rgba(232, 115, 58, 0.5);
}

.mold-indicator.pressing .mold-dot {
  background: #E8733A;
}

.mold-indicator.pressing .mold-indicator-text {
  color: var(--text);
  background: rgba(232, 115, 58, 0.12);
}

/* Hide the idle indicator after the user has interacted (handled via JS class) */
.mold-indicator.dismissed.idle {
  opacity: 0;
}

.wheel-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Collection - Clean Grid */
.collection {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.collection-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.collection-header .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.collection-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
}

.collection-header h2 em {
  color: var(--logo-gold);
  font-style: italic;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.tool-card {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.tool-card-img {
  aspect-ratio: 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tool-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tool-card-info {
  padding: 1.5rem;
}

.tool-num {
  font-size: 11px;
  color: var(--logo-gold);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.tool-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin: 0.25rem 0 0.5rem;
}

.tool-card-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Accessories Row */
.accessories-row {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.acc-label {
  margin-bottom: 1.5rem;
}

.acc-label .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.acc-items {
  display: flex;
  gap: 2rem;
}

.acc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.acc-item:hover {
  transform: translateY(-2px);
}

.acc-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--sand);
  border-radius: 4px;
  padding: 0.5rem;
}

.acc-item span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Process Section */
.process {
  background: var(--cream);
  padding: var(--section-pad);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.process-header .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
}

.process-header h2 em {
  color: var(--logo-gold);
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.step-num {
  font-size: 12px;
  color: var(--logo-gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.step-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--warm-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.step-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
}

/* Community - Compact */
.community {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.community-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.community-photos-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.community-photos-compact img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.community-photos-compact img:hover {
  transform: scale(1.03);
}

.community-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.quote span {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content { padding: 2rem 1.5rem; }
  .wheel-main { grid-template-columns: 1fr; }
  .wheel-viewer-full { height: 400px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-items { flex-wrap: wrap; }
  .process-steps { grid-template-columns: 1fr; }
  .community-compact { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .wheel-main { grid-template-columns: 1fr; }
  .wheel-viewer-full { height: 500px; }
}

/* ── CONTOUR BUILDER ── */
.contour-builder-section {
  background: var(--cream);
  padding: 4rem 2.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.builder-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.builder-header .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.builder-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.builder-header h2 em {
  color: var(--logo-gold);
  font-style: italic;
}

.builder-header p {
  font-size: 14px;
  color: var(--text-light);
}

.builder-back-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.builder-back-link:hover {
  color: var(--logo-gold);
}

.builder-main {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
  width: 100%;
}

.builder-canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

#contourCanvas {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
  height: auto;
  cursor: default;
  touch-action: none;
}

.builder-canvas-hint {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.builder-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.builder-mode-toggle {
  display: flex;
  gap: 8px;
}

.mode-btn {
  flex: 1;
  padding: 10px 16px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.mode-btn:hover {
  background: var(--cream);
  color: var(--text);
  border-color: var(--muted);
}

.mode-btn.active {
  background: var(--logo-gold);
  border-color: var(--logo-gold);
  color: #fff;
}

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

.builder-btn {
  padding: 14px 20px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.builder-btn:hover {
  background: var(--cream);
  border-color: var(--muted);
}

.builder-btn.primary {
  background: var(--logo-gold);
  border-color: var(--logo-gold);
  color: #fff;
}

.builder-btn.primary:hover {
  background: var(--logo-gold-dark);
  border-color: var(--logo-gold-dark);
}

.builder-status,
.builder-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-size: 12px;
}

.status-label,
.info-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-value,
.info-value {
  color: var(--text);
  font-weight: 500;
  text-align: right;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .builder-main { grid-template-columns: 1fr; }
  .contour-builder-section { padding: 3rem 1.5rem; }
}
