/* ═══════════════════════════════════════════════════
   TOPRAK GALERİ — Contemporary Ceramic Art Gallery
   ═══════════════════════════════════════════════════ */

:root {
  interpolate-size: allow-keywords;

  --bg: #0E0E0E;
  --surface: #1C1C1C;
  --surface-2: #262626;
  --ink: #F0EDE6;
  --ink-soft: #B8B3AA;
  --accent: #C9A84C;
  --accent-2: #8A7530;
  --line: rgba(201,168,76,0.18);
  --line-strong: rgba(201,168,76,0.4);

  --ff-heading: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --ff-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-mono: 'Cascadia Code', Consolas, 'Liberation Mono', monospace;

  --header-h: 72px;
  --container: 1240px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 6px;
  --gold-rule: 1px solid var(--line-strong);
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── Main offset for fixed header ── */
main { padding-top: var(--header-h); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(2px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  border-bottom: var(--gold-rule);
}

.site-header.scrolled {
  background: rgba(14,14,14,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.logo {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1100;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* ── Desktop Nav ── */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav-desktop a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
}

/* ── Mobile Drawer ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; height: 100vh;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: color 240ms, border-color 240ms;
}
.drawer-close:hover { color: var(--accent); border-color: var(--accent); }

.mobile-drawer a {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--ink-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }

/* ── Scroll Progress ── */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: none;
  z-index: 10;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Hero (#acilis) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px,12vh,160px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  margin-bottom: 24px;
  position: relative;
  max-width: min(20ch, 90%);
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: charReveal 600ms cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-badges .badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  max-width: clamp(320px, 90%, 520px);
  border: var(--gold-rule);
  padding: 8px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: -12px; bottom: -12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-img-wrap { max-width: 80%; margin: 0 auto; }
}

/* ── Vase SVG scroll animation (theme signature) ── */
.vase-scroll-indicator {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0.6;
  transition: opacity 300ms;
  pointer-events: none;
}
.vase-scroll-indicator:hover { opacity: 1; }
.vase-scroll-indicator svg {
  width: 36px;
  height: 96px;
}
.vase-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0ms;
}

@media (max-width: 768px) {
  .vase-scroll-indicator { right: 12px; opacity: 0.4; }
  .vase-scroll-indicator svg { width: 24px; height: 64px; }
}

/* ── Section spacing ── */
section {
  padding: clamp(60px, 10vh, 120px) 0;
}

.section-header {
  margin-bottom: clamp(40px, 6vh, 72px);
}

.gold-rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--accent);
  margin: 16px 0;
}

/* ── Collections (#seriler) — Horizontal Scroll Snap ── */
.collections-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--pad) 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) var(--surface);
}
.collections-scroll::-webkit-scrollbar { height: 4px; }
.collections-scroll::-webkit-scrollbar-track { background: var(--surface); }
.collections-scroll::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 2px; }

.collection-card {
  flex: 0 0 clamp(280px, 35vw, 380px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border: var(--gold-rule);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.12);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.collection-card:hover img { transform: scale(1.03); }

.collection-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(14,14,14,0.92) 0%, transparent 100%);
}
.collection-tile-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.collection-tile-overlay p {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Gold border fade on hover */
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
}
.collection-card:hover::after { opacity: 1; }

/* ── Artists (#sanatci) ── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.artist-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--surface);
  border: var(--gold-rule);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.08);
}

.artist-portrait {
  width: 140px; height: 180px;
  object-fit: cover;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.artist-info h3 { margin-bottom: 8px; }
.artist-info .artist-role {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.artist-info p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .artist-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .artist-portrait {
    width: 120px; height: 150px;
    margin: 0 auto;
  }
}

/* ── Pricing (#edinme) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--surface);
  border: var(--gold-rule);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.1);
}
.pricing-card.featured {
  border-color: var(--accent);
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px; right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-family: var(--ff-mono);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-card .price small {
  font-size: 0.65em;
  color: var(--ink-soft);
  font-weight: 400;
}

.pricing-includes, .pricing-excludes {
  margin-bottom: 16px;
}
.pricing-includes li, .pricing-excludes li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}
.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-excludes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-soft);
}

.pricing-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 32px;
  padding-top: 16px;
  border-top: var(--gold-rule);
}

/* ── Exhibition (#sergi) ── */
.exhibition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.exhibition-info h3 { margin-bottom: 12px; }
.exhibition-info .exhibition-dates {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.exhibition-info p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.exhibition-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: var(--gold-rule);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), border-color 360ms cubic-bezier(.4,0,.2,1);
}
.exhibition-grid img:hover {
  transform: scale(1.03);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .exhibition-layout { grid-template-columns: 1fr; }
}

/* ── Process / Timeline ── */
.process-timeline {
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}

.process-step {
  position: relative;
  padding-bottom: 40px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -34px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
}
.process-step:last-child { padding-bottom: 0; }

.process-step .step-time {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 540px;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--surface);
  border: var(--gold-rule);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.08);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-top: 24px;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}
.testimonial-meta {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: var(--gold-rule);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary .faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary .faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1px; transform: translateY(-50%);
}
.faq-item summary .faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px; transform: translateX(-50%);
}
.faq-item[open] summary .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ── Stats / Counters ── */
.stats-band {
  background: var(--surface);
  border-top: var(--gold-rule);
  border-bottom: var(--gold-rule);
  padding: clamp(32px, 5vh, 56px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Footer ── */
.site-footer {
  background: var(--surface);
  border-top: var(--gold-rule);
  padding: clamp(48px, 8vh, 80px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: var(--gold-rule);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche Animations ── */

/* Clay wheel spin — on artist/collection decorative element */
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.clay-wheel {
  animation: wheelSpin 12s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .clay-wheel { animation: none; }
}

/* Kiln glow pulse */
@keyframes kilnGlow {
  0%, 100% { opacity: 0.3; filter: brightness(1); }
  50% { opacity: 0.7; filter: brightness(1.3); }
}
.kiln-glow {
  animation: kilnGlow 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .kiln-glow { animation: none; }
}

/* Glaze drip — decorative accent */
@keyframes glazeDrip {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1.05); }
  100% { transform: scaleY(1); transform-origin: top; }
}
.glaze-drip {
  animation: glazeDrip 900ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* Crack-line pattern reveal */
@keyframes crackReveal {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
.crack-pattern path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.crack-pattern.is-in path {
  animation: crackReveal 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .crack-pattern path { stroke-dashoffset: 0; animation: none; }
}

/* ── Counter animation ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Parallax subtle ── */
.parallax-layer {
  will-change: transform;
  transition: transform 0ms linear;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: var(--gold-rule);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
}
.cookie-buttons button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-buttons button[data-consent="accept"]:hover {
  background: var(--accent-2);
  color: var(--ink);
}
.cookie-buttons button[data-consent="reject"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
}
.cookie-buttons button[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
}

/* ── Table Scroll ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
td { color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }

/* ── Contact Page ── */
.contact-channels {
  display: grid;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover {
  transform: translateX(4px);
}
.contact-row:last-child { border-bottom: none; }

.contact-icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-row:hover .contact-icon {
  color: var(--accent);
  transform: scale(1.08);
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a {
  color: var(--ink-soft);
  transition: color 240ms;
}
.contact-value a:hover { color: var(--accent); }

/* ── Form ── */
.form-wrap {
  background: var(--surface);
  border: var(--gold-rule);
  padding: clamp(24px, 4vw, 40px);
}

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}
.field-checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.form-status {
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.85rem;
  margin-top: 16px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.form-status.error {
  display: block;
  background: rgba(200,50,50,0.1);
  border: 1px solid #c83232;
  color: #e55;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Focus ring global ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Pages generic ── */
.page-hero {
  padding: clamp(48px, 8vh, 96px) 0 clamp(32px, 4vh, 48px);
  border-bottom: var(--gold-rule);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

.prose { max-width: 760px; }
.prose h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.prose h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 8px;
}
.prose p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}
.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.prose li {
  color: var(--ink-soft);
  padding: 4px 0;
  list-style: disc;
}
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent); text-decoration: underline; }

/* ── Decorative elements ── */
.gold-frame {
  border: 1px solid var(--line-strong);
  padding: 6px;
  position: relative;
}
.gold-frame::after {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid var(--line);
  pointer-events: none;
}

/* Dot-grid pattern */
.dot-pattern {
  background-image: radial-gradient(circle, var(--accent-2) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.15;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Responsive images ── */
.img-container {
  max-width: clamp(900px, 90%, 1280px);
  margin: 0 auto;
}

/* ── Print ── */
@media print {
  .site-header, .cookie-banner, .vase-scroll-indicator, .nav-toggle,
  .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }
