/* ========================================
   Beyaz Seramik Atölyesi — Styles
   ======================================== */

/* 0. Custom Properties */
:root {
  --bg: #F0F4F8;
  --surface: #FFFFFF;
  --surface-2: #E2E8F0;
  --ink: #1A1A2E;
  --ink-soft: #4A4A6A;
  --accent: #3B5FE5;
  --accent-2: #10B981;
  --line: rgba(26,26,46,0.10);
  --line-strong: rgba(26,26,46,0.22);
  --header-h: 72px;
  --container-pad: clamp(16px, 4vw, 32px);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 6px;
  interpolate-size: allow-keywords;
}

/* 1. Reset & Base */
*,*::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; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(26,26,46,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 200ms; word-break: break-word; overflow-wrap: anywhere; }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* 2. Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.mono { font-family: var(--font-mono); }

/* 3. Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
main { padding-top: var(--header-h); }
section { padding: clamp(3rem, 8vh, 6rem) 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vh, 3.5rem); }
.section-header p { color: var(--ink-soft); margin-top: 10px; }

/* 4. Skip Link */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 0.85rem; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

/* 5. Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(240, 244, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(240, 244, 248, 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;
  height: 100%;
}
.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.header__logo:hover { color: var(--accent); }

/* 6. Nav Desktop */
.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 200ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 200ms, color 200ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-1px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}

/* 7. Nav Toggle */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 48px; height: 48px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 200ms;
}
.nav-toggle:hover { background: rgba(26,26,46,0.08); }
.nav-toggle .hamburger-icon {
  width: 26px; height: 26px;
  stroke: var(--ink);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}
.nav-toggle .hamburger-icon line {
  transition: transform 320ms var(--ease-out), opacity 220ms;
}
.nav-toggle .hamburger-icon line:nth-child(1) { transform-origin: 12px 6px; }
.nav-toggle .hamburger-icon line:nth-child(2) { transform-origin: 12px 12px; }
.nav-toggle .hamburger-icon line:nth-child(3) { transform-origin: 12px 18px; }
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-icon line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* 8. Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 12px 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover { color: var(--accent); padding-left: 12px; }
.drawer a.is-active { color: var(--accent); }
.drawer .nav-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: var(--radius-sm);
  border: none;
  padding: 14px;
  font-weight: 600;
}
.drawer .nav-cta:hover { background: var(--ink); color: var(--surface); }
.drawer-backdrop {
  position: fixed; inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 9. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 200ms, color 200ms, transform 200ms, box-shadow 200ms;
  min-height: 48px;
  line-height: 1.2;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,95,229,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* 9b. Section & Hero images */
.hero-img {
  border-radius: var(--radius);
  margin-top: clamp(2rem, 4vh, 3rem);
  width: 100%;
  max-width: 720px;
}
.section-img {
  border-radius: var(--radius);
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  width: 100%;
  max-width: 800px;
}

/* 9c. Scroll offset for anchor sections */
main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* 10. Hero (#giris) */
.hero {
  padding-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__content { max-width: 680px; position: relative; z-index: 2; }
.hero__title {
  margin-top: 4px;
  animation: ls-reveal 900ms var(--ease-out) forwards;
}
@keyframes ls-reveal {
  from { letter-spacing: 0.04em; opacity: 0; transform: translateY(12px); }
  to { letter-spacing: -0.025em; opacity: 1; transform: none; }
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.hero__cta { margin-top: 28px; }

/* 11. Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 24px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* 12. Hero Preview */
.hero__preview {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  position: relative;
  width: clamp(200px, 32vw, 280px);
  height: clamp(260px, 42vw, 360px);
}
.hero-shape {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  animation: hero-morph 12s ease-in-out infinite;
  position: relative;
}
@keyframes hero-morph {
  0%, 100% { clip-path: polygon(25% 30%, 20% 35%, 12% 50%, 10% 65%, 15% 82%, 22% 88%, 78% 88%, 85% 82%, 90% 65%, 88% 50%, 80% 35%, 75% 30%); }
  25% { clip-path: polygon(40% 5%, 35% 12%, 25% 30%, 22% 50%, 28% 72%, 35% 92%, 65% 92%, 72% 72%, 78% 50%, 75% 30%, 65% 12%, 60% 5%); }
  50% { clip-path: polygon(10% 38%, 8% 42%, 5% 46%, 5% 54%, 8% 58%, 12% 62%, 88% 62%, 92% 58%, 95% 54%, 95% 46%, 92% 42%, 90% 38%); }
  75% { clip-path: polygon(32% 8%, 30% 15%, 28% 28%, 27% 45%, 26% 65%, 25% 88%, 75% 88%, 74% 65%, 73% 45%, 72% 28%, 70% 15%, 68% 8%); }
}
.hero__preview::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,95,229,0.07), transparent 65%);
  animation: glow-pulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.measure-line {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--ink-soft);
  opacity: 0.35;
  pointer-events: none;
}
.measure-line--v {
  right: -36px; top: 12%; bottom: 12%;
  width: 1px;
  background: currentColor;
  display: flex; align-items: center; justify-content: flex-end;
}
.measure-line--v::before, .measure-line--v::after {
  content: '';
  position: absolute;
  width: 8px; height: 1px;
  background: currentColor;
  right: -3.5px;
}
.measure-line--v::before { top: 0; }
.measure-line--v::after { bottom: 0; }
.measure-line--v span {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}
.measure-line--h {
  bottom: -28px; left: 18%; right: 18%;
  height: 1px;
  background: currentColor;
  display: flex; align-items: flex-end; justify-content: center;
}
.measure-line--h::before, .measure-line--h::after {
  content: '';
  position: absolute;
  width: 1px; height: 8px;
  background: currentColor;
  bottom: -3.5px;
}
.measure-line--h::before { left: 0; }
.measure-line--h::after { right: 0; }
.measure-line--h span {
  position: absolute;
  bottom: 8px;
  white-space: nowrap;
}

/* Wheel decoration */
.wheel-deco {
  position: absolute;
  width: 140px; height: 140px;
  border: 1px dashed var(--line);
  border-radius: 50%;
  animation: wheel-spin 15s linear infinite;
  opacity: 0.12;
  pointer-events: none;
  top: -30px; left: -50px;
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }

/* 13. Stats Band */
.stats-band {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(2rem, 4vh, 3rem) 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* 14. Configurator */
.config-section { background: var(--surface); }
.config-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.config-tab {
  flex: 1;
  padding: 14px 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 200ms, border-color 200ms;
  white-space: nowrap;
  text-align: center;
}
.config-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.config-tab:hover { color: var(--ink); }
.config-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .config-body { grid-template-columns: 1fr 280px; }
}
@media (min-width: 1024px) {
  .config-body { grid-template-columns: 1fr 320px; }
}
.config-step { display: none; }
.config-step.is-active {
  display: block;
  animation: step-enter 420ms var(--ease-spring);
}
@keyframes step-enter {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}
.config-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.config-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 12px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
  position: relative;
}
.config-card:hover {
  border-color: var(--ink-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26,26,46,0.08);
}
.config-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,95,229,0.15);
  animation: scale-pulse 400ms var(--ease-spring);
}
@keyframes scale-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.config-card span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  color: var(--ink);
}
.config-card__shape {
  width: 56px; height: 72px;
  margin: 0 auto;
  background: var(--accent);
  opacity: 0.18;
  transition: clip-path 500ms var(--ease-spring), opacity 200ms;
}
.config-card:hover .config-card__shape,
.config-card.is-selected .config-card__shape { opacity: 0.35; }
.config-card__shape[data-form="kase"] {
  clip-path: polygon(25% 30%, 20% 35%, 12% 50%, 10% 65%, 15% 82%, 22% 88%, 78% 88%, 85% 82%, 90% 65%, 88% 50%, 80% 35%, 75% 30%);
}
.config-card__shape[data-form="vazo"] {
  clip-path: polygon(40% 5%, 35% 12%, 25% 30%, 22% 50%, 28% 72%, 35% 92%, 65% 92%, 72% 72%, 78% 50%, 75% 30%, 65% 12%, 60% 5%);
}
.config-card__shape[data-form="tabak"] {
  clip-path: polygon(10% 38%, 8% 42%, 5% 46%, 5% 54%, 8% 58%, 12% 62%, 88% 62%, 92% 58%, 95% 54%, 95% 46%, 92% 42%, 90% 38%);
}
.config-card__shape[data-form="fincan"] {
  clip-path: polygon(32% 8%, 30% 15%, 28% 28%, 27% 45%, 26% 65%, 25% 88%, 75% 88%, 74% 65%, 73% 45%, 72% 28%, 70% 15%, 68% 8%);
}

/* Config size cards */
.size-card { min-height: 90px; }
.size-card .size-dim {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Glaze swatches */
.glaze-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
}
.glaze-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 200ms, transform 180ms var(--ease-spring);
}
.glaze-swatch:hover { transform: scale(1.04); border-color: var(--ink-soft); }
.glaze-swatch.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,95,229,0.15);
  animation: scale-pulse 400ms var(--ease-spring);
}
.glaze-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.glaze-swatch span {
  font-size: 0.68rem;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.2;
}

/* Pattern cards */
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.pattern-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 10px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms, transform 200ms;
}
.pattern-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.pattern-card.is-selected {
  border-color: var(--accent);
  animation: scale-pulse 400ms var(--ease-spring);
}
.pattern-preview {
  width: 48px; height: 48px;
  margin: 0 auto 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.pattern-preview--duz { background: var(--accent); opacity: 0.2; }
.pattern-preview--cizgili {
  background: repeating-linear-gradient(45deg, rgba(59,95,229,0.15), rgba(59,95,229,0.15) 3px, transparent 3px, transparent 6px);
}
.pattern-preview--noktali {
  background: var(--bg);
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
}
.pattern-preview--dalga {
  background: repeating-linear-gradient(0deg, rgba(59,95,229,0.12), rgba(59,95,229,0.12) 3px, transparent 3px, transparent 7px);
}
.pattern-preview--geometrik {
  background:
    linear-gradient(60deg, rgba(59,95,229,0.1) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(59,95,229,0.1) 25%, transparent 25%);
  background-size: 12px 20px;
}
.pattern-preview--botanik {
  background: radial-gradient(ellipse 6px 10px at 50% 50%, rgba(16,185,129,0.15) 40%, transparent 41%);
  background-size: 14px 18px;
}
.pattern-card span { font-size: 0.78rem; font-weight: 500; }

/* Config preview */
.config-preview {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.config-preview-shape {
  width: 160px; height: 200px;
  background: var(--glaze-color, #3B5FE5);
  position: relative;
  transition: clip-path 600ms var(--ease-spring), background 400ms var(--ease-standard);
  clip-path: polygon(25% 30%, 20% 35%, 12% 50%, 10% 65%, 15% 82%, 22% 88%, 78% 88%, 85% 82%, 90% 65%, 88% 50%, 80% 35%, 75% 30%);
}
.config-preview-shape[data-form="kase"] {
  clip-path: polygon(25% 30%, 20% 35%, 12% 50%, 10% 65%, 15% 82%, 22% 88%, 78% 88%, 85% 82%, 90% 65%, 88% 50%, 80% 35%, 75% 30%);
}
.config-preview-shape[data-form="vazo"] {
  clip-path: polygon(40% 5%, 35% 12%, 25% 30%, 22% 50%, 28% 72%, 35% 92%, 65% 92%, 72% 72%, 78% 50%, 75% 30%, 65% 12%, 60% 5%);
}
.config-preview-shape[data-form="tabak"] {
  clip-path: polygon(10% 38%, 8% 42%, 5% 46%, 5% 54%, 8% 58%, 12% 62%, 88% 62%, 92% 58%, 95% 54%, 95% 46%, 92% 42%, 90% 38%);
}
.config-preview-shape[data-form="fincan"] {
  clip-path: polygon(32% 8%, 30% 15%, 28% 28%, 27% 45%, 26% 65%, 25% 88%, 75% 88%, 74% 65%, 73% 45%, 72% 28%, 70% 15%, 68% 8%);
}
.config-preview-shape[data-size="kucuk"] { width: 120px; height: 150px; }
.config-preview-shape[data-size="orta"] { width: 160px; height: 200px; }
.config-preview-shape[data-size="buyuk"] { width: 200px; height: 250px; }
.config-preview-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: inherit;
  pointer-events: none;
  transition: background 400ms;
}
.config-preview-shape[data-pattern="duz"]::after { background: transparent; }
.config-preview-shape[data-pattern="cizgili"]::after {
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.13) 4px, rgba(255,255,255,0.13) 6px);
}
.config-preview-shape[data-pattern="noktali"]::after {
  background: radial-gradient(circle, rgba(255,255,255,0.16) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}
.config-preview-shape[data-pattern="dalga"]::after {
  background: repeating-linear-gradient(0deg, transparent, transparent 5px, rgba(255,255,255,0.1) 5px, rgba(255,255,255,0.1) 7px);
}
.config-preview-shape[data-pattern="geometrik"]::after {
  background: linear-gradient(60deg, rgba(255,255,255,0.08) 25%, transparent 25%), linear-gradient(-60deg, rgba(255,255,255,0.08) 25%, transparent 25%);
  background-size: 14px 24px;
}
.config-preview-shape[data-pattern="botanik"]::after {
  background: radial-gradient(ellipse 7px 11px at 50% 50%, rgba(255,255,255,0.12) 40%, transparent 41%);
  background-size: 16px 20px;
}
.config-preview-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.config-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* 15. Process / How It Works */
.process-section { }
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: clamp(2rem, 4vh, 3rem);
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  z-index: 1;
}
.process-step.is-in .process-step__num {
  background: var(--accent);
  color: var(--surface);
  transition: background 600ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 120ms),
              color 600ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 120ms);
  box-shadow: 0 0 12px rgba(59,95,229,0.2);
}
.process-step__time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; }
.process-step__icon {
  display: inline-flex;
  width: 32px; height: 32px;
  color: var(--accent);
  margin-bottom: 6px;
}
.process-step__icon svg { width: 100%; height: 100%; }

/* 16. Testimonials */
.testimonials-section { background: var(--surface); }
.testimonials-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:first-child { grid-row: span 2; }
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  transition: transform 200ms, box-shadow 200ms;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,46,0.08); }
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}

/* 17. Price Table */
.price-section { }
.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-sm);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.price-table {
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.price-table thead th {
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.price-table tbody tr { background: var(--surface); }
.price-table tbody tr:nth-child(even) { background: var(--bg); }
.price-table tbody tr:hover { background: rgba(59,95,229,0.04); }
.price-table td:first-child { font-weight: 600; white-space: normal; min-width: 140px; }
.price-table .price-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
}
.price-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  font-family: var(--font-mono);
}
.price-includes {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 640px) { .price-includes { grid-template-columns: 1fr 1fr; } }
.price-includes-col h4 { margin-bottom: 10px; font-size: 0.95rem; }
.price-includes-col li {
  font-size: 0.88rem;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}
.price-includes-col li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.includes-yes li::before { background: var(--accent-2); }
.includes-no li::before { background: var(--line-strong); }

/* 18. FAQ */
.faq-section { background: var(--surface); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-standard);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms var(--ease-standard),
              padding-block-end 360ms var(--ease-standard);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* 19. Order Form */
.order-section { }
.order-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.form-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid--2col { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
  font-size: 0.92rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,95,229,0.1);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.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 label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn { width: 100%; }
@media (min-width: 640px) {
  .form-submit .btn { width: auto; min-width: 220px; }
}
.hp-field {
  position: absolute; left: -9999px; opacity: 0;
}

/* 20. Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vh, 5rem) 0 0;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h3 {
  color: var(--surface);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.site-footer h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--surface); }
.footer-links a {
  display: block;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-links a:hover { padding-left: 6px; }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a { word-break: break-all; }
.footer-notes ul { }
.footer-notes li {
  padding: 4px 0;
  font-size: 0.8rem;
  line-height: 1.5;
}
.footer-notes time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: clamp(2rem, 4vh, 3rem);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* 21. Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease-out), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btns button {
  flex: 1;
  min-width: 100px;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 200ms, color 200ms, transform 200ms;
  cursor: pointer;
}
.cookie-btns button:hover {
  transform: translateY(-1px);
}
.cookie-btns [data-consent="accept"] {
  background: var(--accent);
  color: var(--surface);
  border: none;
}
.cookie-btns [data-consent="accept"]:hover {
  background: var(--ink);
  color: var(--surface);
}
.cookie-btns [data-consent="reject"] {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
  font-weight: 500;
}
.cookie-btns [data-consent="reject"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-btns [data-consent="settings"] {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--line);
}
.cookie-btns [data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* 22. Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] { transition-delay: calc(var(--i, 0) * 100ms); }
html.no-js .reveal { opacity: 1; transform: none; }

/* 23. Niche Animations — Ceramics */
@keyframes kiln-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(59,95,229,0); }
  50% { box-shadow: 0 0 28px rgba(59,95,229,0.10); }
}
.kiln-glow { animation: kiln-glow 5s ease-in-out infinite; }

@keyframes clay-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}
.clay-breathe { animation: clay-breathe 6s ease-in-out infinite; }

.kintsugi-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 15%, var(--accent-2) 50%, var(--accent) 85%, transparent);
  margin: 0 auto;
  max-width: 180px;
  opacity: 0.35;
}

/* Glaze drip on hover */
.card-glaze { position: relative; overflow: hidden; }
.card-glaze::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
  z-index: 1;
}
.card-glaze:hover::before { transform: scaleX(1); }

/* Table scroll hint */
.table-scroll {
  position: relative;
}
.table-scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(90deg, transparent, rgba(240,244,248,0.85));
  pointer-events: none;
  opacity: 1;
  transition: opacity 300ms;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.table-scroll.scrolled-end::after { opacity: 0; }

/* Cookie clearance spacer */
@media (max-width: 640px) { }

/* Kiln warm glow on interactive cards */
.config-card:hover,
.channel-card:hover,
.team-card:hover {
  box-shadow: 0 8px 28px rgba(59,95,229,0.10), 0 0 0 1px rgba(59,95,229,0.06);
}
.testimonial-card:hover {
  box-shadow: 0 14px 36px rgba(26,26,46,0.10), 0 0 24px rgba(59,95,229,0.06);
}

/* Warm shimmer on hero image */
.hero-img {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms;
}
.hero-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,26,46,0.12);
}

/* FAQ smooth open/close */
.faq-item summary {
  transition: color 200ms, padding-left 200ms;
}
.faq-item summary:hover {
  padding-left: 4px;
}

/* Glaze swatch kiln shimmer */
.glaze-swatch:hover .glaze-dot {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transform: scale(1.12);
  transition: transform 300ms var(--ease-spring), box-shadow 300ms;
}

/* Config card shape clay-breathe on select */
.config-card.is-selected .config-card__shape {
  animation: clay-breathe 4s ease-in-out infinite;
}

/* Stats band counter glow */
.stat-num {
  transition: text-shadow 400ms;
}
.stats-band:hover .stat-num {
  text-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* Capacity banner pulse */
.capacity-banner {
  transition: box-shadow 300ms;
}
.capacity-banner:hover {
  box-shadow: 0 0 16px rgba(16,185,129,0.12);
}

/* Better button focus ring */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(59,95,229,0.15);
}

/* Footer links hover glow */
.footer-links a:hover {
  color: var(--surface);
  text-shadow: 0 0 8px rgba(255,255,255,0.1);
}

/* ---- Enhanced Ceramics Theme Animations ---- */

/* Stagger reveal with kiln-warm timing */
.reveal {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 120ms);
}

/* Warm terracotta glow on process step numbers entering */
.process-step.is-in .process-step__num {
  box-shadow: 0 0 16px rgba(59,95,229,0.22), 0 4px 12px rgba(59,95,229,0.10);
}

/* Kiln-fire shimmer on hero CTA */
.hero__cta {
  position: relative;
  overflow: hidden;
}
.hero__cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
}
.hero__cta:hover::after {
  animation: kiln-shimmer 700ms cubic-bezier(0.2,0.7,0.2,1) forwards;
}
@keyframes kiln-shimmer {
  to { transform: translateX(60%); }
}

/* Warm glow pulse on config preview */
.config-preview-shape {
  box-shadow: 0 8px 32px rgba(59,95,229,0.12);
}

/* Clay spin on wheel deco — smoother */
@keyframes wheel-spin-smooth {
  to { transform: rotate(360deg); }
}
.wheel-deco {
  animation: wheel-spin-smooth 20s cubic-bezier(0.4,0,0.6,1) infinite;
}

/* Testimonial card — pottery gradient drip on hover */
.testimonial-card::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 40%, #CD853F 100%);
}

/* Team card — warm terracotta accent on hover */
.team-card::before {
  background: linear-gradient(90deg, var(--accent) 0%, #CD853F 50%, var(--accent-2) 100%);
}

/* Channel card — warm accent gradient */
.channel-card::before {
  background: linear-gradient(90deg, var(--accent) 0%, #CD853F 60%, var(--accent-2) 100%);
}

/* Smooth form input glow on focus */
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(59,95,229,0.1), 0 2px 8px rgba(59,95,229,0.06);
}

/* FAQ open/close smooth transitions */
.faq-item summary::after {
  transition: transform 350ms cubic-bezier(0.34,1.56,0.64,1);
}

/* Stats band — subtle kiln warmth on viewport entry */
.stats-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1E2940 100%);
}

/* Glaze dot — kiln fire pulse on hover */
.glaze-swatch:hover .glaze-dot {
  box-shadow: 0 0 12px rgba(0,0,0,0.2), inset 0 0 4px rgba(255,255,255,0.15);
}

/* Config card shape — subtle warm breathe */
.config-card:hover .config-card__shape {
  opacity: 0.4;
  transition: opacity 300ms cubic-bezier(0.2,0.7,0.2,1), clip-path 500ms var(--ease-spring);
}

/* Hero image — warm pottery shadow */
.hero-img:hover {
  box-shadow: 0 24px 56px rgba(26,26,46,0.14), 0 0 0 1px rgba(59,95,229,0.04);
}

/* Kintsugi divider — golden ceramics repair line */
.kintsugi-divider {
  background: linear-gradient(90deg, transparent, #DAA520 15%, #CD853F 50%, #DAA520 85%, transparent);
  opacity: 0.4;
}

/* Footer bottom — subtle warm border */
.footer-bottom {
  border-top-color: rgba(218,165,32,0.12);
}

/* 24. Contact Page */
.contact-hero {
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: clamp(2rem, 4vh, 4rem);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform 200ms, box-shadow 200ms;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.08);
}
.channel-card:hover::before { transform: scaleX(1); }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(59,95,229,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background 200ms;
}
.channel-card:hover .channel-icon { background: rgba(59,95,229,0.15); }
.channel-icon svg { width: 22px; height: 22px; }
.channel-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.channel-info a {
  font-size: 0.88rem;
  display: block;
  word-break: break-all;
}
.channel-info .channel-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: var(--font-mono);
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.hours-day {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  transition: border-color 200ms, box-shadow 200ms;
}
.hours-day:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(59,95,229,0.08);
}
.hours-day.today {
  background: rgba(59,95,229,0.06);
  border-color: var(--accent);
  font-weight: 600;
}
.hours-day span:first-child { font-weight: 600; }

/* 25. About Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 200ms, box-shadow 200ms;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26,26,46,0.08);
}
.team-card:hover::before { transform: scaleX(1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.team-card h4 { margin-bottom: 2px; }
.team-card .team-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.85rem; color: var(--ink-soft); text-align: left; }

/* 26. Legal Pages */
.legal-page { padding-bottom: clamp(3rem, 6vh, 5rem); }
.legal-content { max-width: 760px; margin: 0 auto; line-height: 1.7; }
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.legal-content h3 { margin: 1.8rem 0 0.8rem; font-size: 1.1rem; }
.legal-content p { margin-bottom: 1rem; color: var(--ink-soft); }
.legal-content ul, .legal-content ol {
  margin: 0.8rem 0 1.2rem 1.6rem;
  color: var(--ink-soft);
}
.legal-content li { margin-bottom: 0.4rem; list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* 27. Thank You Page */
.thankyou-page {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.thankyou-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.thankyou-page p { color: var(--ink-soft); margin-bottom: 28px; }

/* 28. 404 Page */
.page-404 {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-404 .big-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.04em;
}
.page-404 h1 { margin: 12px 0 8px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* 29. Sitemap Page */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  transition: padding-left 200ms, color 200ms;
}
.sitemap-list a:hover { padding-left: 8px; }

/* 30. Capacity Banner */
.capacity-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-2);
}
.capacity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .stats-band .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .config-body { grid-template-columns: 1fr; }
  .config-preview { position: static; order: -1; }
  .config-preview-shape[data-size="buyuk"] { width: 160px; height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  section { padding: clamp(2.5rem, 6vh, 4rem) 0; }
  .config-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .glaze-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__preview {
    width: 160px; height: 210px;
  }
  .process-timeline::before { left: 18px; }
  .process-step { padding-left: 50px; }
  .process-step__num { width: 36px; height: 36px; font-size: 0.75rem; }
  .channels-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 0.82rem; }
  .order-form { padding: 20px 18px; }
  .cookie-banner { bottom: 0; left: 0; right: 0; padding: 20px var(--container-pad); border-radius: var(--radius) var(--radius) 0 0; max-width: 100%; }
  .cookie-btns { flex-direction: column; gap: 10px; }
  .cookie-btns button { flex: none; width: 100%; min-height: 52px; font-size: 0.95rem; }
}
@media (max-width: 430px) {
  .trust-strip { flex-direction: column; align-items: center; }
  .stats-band .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .hours-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .hero-shape, .wheel-deco { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { break-inside: avoid; }
}

/* ---- Enhanced Ceramic Micro-interactions ---- */

/* Kiln-warm shimmer on interactive card borders */
@keyframes glaze-flow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.channel-card:hover::before,
.team-card:hover::before,
.testimonial-card:hover::before {
  background-size: 200% 100%;
  animation: glaze-flow 1.5s var(--ease-standard) forwards;
}

/* Warm terracotta entrance for process step circles */
@keyframes kiln-fire-enter {
  0% { box-shadow: 0 0 0 rgba(59,95,229,0); background: var(--surface); color: var(--accent); }
  50% { box-shadow: 0 0 24px rgba(205,133,63,0.3); }
  100% { box-shadow: 0 0 16px rgba(59,95,229,0.22), 0 4px 12px rgba(59,95,229,0.10); background: var(--accent); color: var(--surface); }
}
.process-step.is-in .process-step__num {
  animation: kiln-fire-enter 800ms cubic-bezier(0.16,1,0.3,1) calc(var(--i, 0) * 140ms) both;
}

/* Philosophy/value cards hover effect */
.philosophy-card {
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.08), 0 0 0 1px rgba(59,95,229,0.06);
  border-color: rgba(59,95,229,0.2);
}

/* Smoother reveal for stagger children */
.reveal.is-in { transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

/* Hero CTA button warm pulse on idle */
@keyframes cta-warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,95,229,0); }
  50% { box-shadow: 0 0 0 8px rgba(59,95,229,0.08); }
}
a.hero__cta {
  animation: cta-warm-pulse 4s ease-in-out 2s infinite;
}

/* Config preview shape — subtle ceramic rotation */
@keyframes ceramic-idle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.04); }
}
.config-preview-shape {
  animation: ceramic-idle 5s ease-in-out infinite;
}

/* FAQ item smooth open animation */
.faq-item[open] > .faq-body {
  animation: faq-slide-in 380ms var(--ease-out);
}
@keyframes faq-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Stat numbers — warm glow on reveal */
.stat-num.is-counting {
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
  transition: text-shadow 400ms;
}

/* Footer link underline on hover */
.footer-links a {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}
.footer-links a:hover::after { transform: scaleX(1); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-shape { animation: none !important; clip-path: polygon(25% 30%, 20% 35%, 12% 50%, 10% 65%, 15% 82%, 22% 88%, 78% 88%, 85% 82%, 90% 65%, 88% 50%, 80% 35%, 75% 30%) !important; }
  .hero-img:hover { transform: none; }
  .config-card.is-selected .config-card__shape { animation: none !important; }
  .glaze-swatch:hover .glaze-dot { transform: none; }
  .process-step.is-in .process-step__num { transition: none !important; animation: none !important; }
  .hero__cta::after { animation: none !important; }
  .hero__cta:hover::after { animation: none !important; }
  a.hero__cta { animation: none !important; }
  .config-preview-shape { animation: none !important; filter: none !important; }
  .wheel-deco { animation: none !important; }
  .hours-day:hover { transform: none; }
  .cookie-btns button:hover { transform: none; }
  .testimonial-card:hover, .team-card:hover,
  .channel-card:hover, .config-card:hover,
  .philosophy-card:hover { transform: none; }
  .faq-item[open] > .faq-body { animation: none !important; }
  .nav-toggle .hamburger-icon line { transition: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
