:root {
  interpolate-size: allow-keywords;
  --bg: #EAECF0;
  --surface: #FFFFFF;
  --surface-2: #F4F5F7;
  --ink: #1C1F2E;
  --ink-soft: #5A5E72;
  --accent: #4B5FBD;
  --accent-2: #8E9BC9;
  --accent-glow: rgba(75, 95, 189, 0.18);
  --line: rgba(28, 31, 46, 0.12);
  --line-strong: rgba(28, 31, 46, 0.22);
  --header-h: 72px;
  --radius: 10px;
  --radius-lg: 16px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: Consolas, 'Courier New', monospace;
  --ceramic-color: #F5F0EB;
  --ceramic-glaze: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 50%);
  --ceramic-shadow: rgba(28, 31, 46, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -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); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 12px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(234, 236, 240, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(234, 236, 240, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 60px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  z-index: 1100;
}
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.logo:hover { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 6px;
  }
  .nav-desktop a {
    position: relative;
    font-size: 0.9rem; font-weight: 500;
    color: var(--ink); padding: 8px 14px;
    border-radius: 6px;
    transition: color 240ms cubic-bezier(.4,0,.2,1), background 240ms cubic-bezier(.4,0,.2,1);
  }
  .nav-desktop a::after {
    content: '';
    position: absolute; bottom: 2px; left: 14px; right: 14px;
    height: 2px; background: var(--accent);
    border-radius: 1px;
    transform: scaleX(0); transform-origin: center;
    transition: transform 260ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--accent); background: rgba(75,95,189,0.06); }
  .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: 9px 22px; border-radius: var(--radius);
    font-weight: 600; margin-left: 8px;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }
  .nav-desktop .nav-cta.is-active { background: var(--accent); color: var(--surface); }
}

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1100; position: relative;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ===== MOBILE DRAWER ===== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 40px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--surface);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; border-bottom: none;
  text-align: center;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); padding-left: 0; }
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink);
  z-index: 1;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms;
}
.drawer-close:hover {
  background: var(--surface-2);
  color: var(--accent);
}
@media (min-width: 1024px) { .mobile-drawer, .drawer-backdrop, .drawer-close { display: none; } }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75,95,189,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,95,189,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (min-width: 768px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .hero-split { grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr); }
}
.hero-text { position: relative; z-index: 2; }
.hero-text .eyebrow { margin-bottom: 16px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 36px; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

/* Hero parallax element */
.hero-parallax {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 20%; right: -60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 220ms cubic-bezier(.4,0,.2,1), color 220ms, transform 180ms, box-shadow 220ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px var(--accent-glow);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  transition: background 220ms, color 220ms, border-color 220ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ===== 3D CONFIGURATOR PREVIEW ===== */
.hero-preview {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  gap: 18px;
  min-height: 0;
}
.hero-preview .ceramic-scene { align-self: center; margin-bottom: 4px; }
.hero-preview .configurator { width: 100%; }
.ceramic-scene {
  perspective: 800px;
  width: 280px; height: 320px;
  position: relative;
  cursor: grab;
  margin: 0 auto;
}
.ceramic-scene:active { cursor: grabbing; }
.ceramic-piece {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(var(--rotY, -15deg)) rotateX(var(--rotX, 5deg));
  transition: transform 0.08s linear;
}
.ceramic-body-wrap {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}

/* Cup shape */
.ceramic-piece[data-shape="fincan"] .ceramic-main {
  width: 120px; height: 130px;
  border-radius: 4px 4px 50% 50%;
  background: var(--ceramic-color);
  position: relative;
  box-shadow: inset -20px 0 30px -10px rgba(0,0,0,0.08),
              inset 20px 0 30px -10px rgba(255,255,255,0.2);
}
.ceramic-piece[data-shape="fincan"] .ceramic-main::before {
  content: '';
  position: absolute; top: -6px; left: -10px; right: -10px;
  height: 18px;
  border-radius: 50%;
  background: var(--ceramic-color);
  box-shadow: inset 0 4px 8px -2px rgba(0,0,0,0.1);
}
.ceramic-piece[data-shape="fincan"] .ceramic-handle {
  position: absolute;
  right: -28px; top: 20px;
  width: 28px; height: 60px;
  border: 5px solid var(--ceramic-color);
  border-left: none;
  border-radius: 0 40px 40px 0;
}

/* Bowl shape */
.ceramic-piece[data-shape="kase"] .ceramic-main {
  width: 180px; height: 90px;
  border-radius: 8px 8px 50% 50%;
  background: var(--ceramic-color);
  position: relative;
  box-shadow: inset -20px 0 30px -10px rgba(0,0,0,0.08),
              inset 20px 0 30px -10px rgba(255,255,255,0.2);
}
.ceramic-piece[data-shape="kase"] .ceramic-main::before {
  content: '';
  position: absolute; top: -8px; left: -8px; right: -8px;
  height: 22px;
  border-radius: 50%;
  background: var(--ceramic-color);
  box-shadow: inset 0 5px 10px -3px rgba(0,0,0,0.1);
}
.ceramic-piece[data-shape="kase"] .ceramic-handle { display: none; }

/* Vase shape */
.ceramic-piece[data-shape="vazo"] .ceramic-main {
  width: 100px; height: 180px;
  background: var(--ceramic-color);
  border-radius: 30% 30% 44% 44%;
  position: relative;
  clip-path: polygon(30% 0, 70% 0, 68% 8%, 100% 50%, 95% 90%, 80% 100%, 20% 100%, 5% 90%, 0 50%, 32% 8%);
  box-shadow: inset -15px 0 25px -8px rgba(0,0,0,0.08),
              inset 15px 0 25px -8px rgba(255,255,255,0.2);
}
.ceramic-piece[data-shape="vazo"] .ceramic-main::before {
  content: '';
  position: absolute; top: -4px; left: 20%; right: 20%;
  height: 14px;
  border-radius: 50%;
  background: var(--ceramic-color);
  box-shadow: inset 0 3px 6px -2px rgba(0,0,0,0.12);
}
.ceramic-piece[data-shape="vazo"] .ceramic-handle { display: none; }

/* Plate shape */
.ceramic-piece[data-shape="tabak"] .ceramic-main {
  width: 220px; height: 40px;
  border-radius: 50%;
  background: var(--ceramic-color);
  position: relative;
  box-shadow: inset 0 -8px 20px -6px rgba(0,0,0,0.08),
              inset 0 8px 20px -6px rgba(255,255,255,0.25);
}
.ceramic-piece[data-shape="tabak"] .ceramic-main::before {
  content: '';
  position: absolute; top: 4px; left: 15%; right: 15%;
  bottom: 4px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.06);
}
.ceramic-piece[data-shape="tabak"] .ceramic-handle { display: none; }

.ceramic-base-ring {
  width: 60px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  margin-top: 4px;
}
.ceramic-shadow-ellipse {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(28,31,46,0.12) 0%, transparent 70%);
}

/* Glaze overlays */
.ceramic-piece .glaze-overlay {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
}
.ceramic-piece[data-glaze="parlak"] .ceramic-main::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 40%, rgba(255,255,255,0.1) 100%);
  clip-path: inherit;
}
.ceramic-piece[data-glaze="kristal"] .ceramic-main::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5) 0%, transparent 15%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.3) 0%, transparent 12%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.4) 0%, transparent 10%);
  clip-path: inherit;
  animation: kristal-sparkle 3s ease-in-out infinite;
}
.ceramic-piece[data-glaze="reaktif"] .ceramic-main::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(142,155,201,0.35) 0%, rgba(75,95,189,0.15) 50%, rgba(28,31,46,0.1) 100%);
  clip-path: inherit;
  mix-blend-mode: overlay;
}

/* Dimension lines around preview */
.dim-lines {
  position: absolute; inset: 0;
  pointer-events: none;
}
.dim-line {
  position: absolute;
  stroke: var(--accent-2);
  stroke-width: 1;
  stroke-dasharray: 4 3;
  opacity: 0.5;
}
.dim-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-2);
  background: var(--bg);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ===== CONFIGURATOR WIZARD ===== */
.configurator {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 4px 24px -8px rgba(28,31,46,0.08);
  position: relative;
  overflow: hidden;
}
.configurator::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75,95,189,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,95,189,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.config-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.config-step-indicator {
  display: flex; gap: 6px;
}
.config-step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  transition: background 300ms, transform 300ms;
}
.config-step-dot.active { background: var(--accent); transform: scale(1.3); }
.config-step-dot.done { background: var(--accent-2); }

.config-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ink);
}

.config-steps { position: relative; z-index: 1; }
.config-step {
  display: block;
  margin-bottom: 22px;
}
.config-step h3 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
@keyframes configFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.config-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.config-step[data-key="boyut"] .config-options { grid-template-columns: repeat(3, 1fr); }
.config-step[data-key="renk"] .config-options { grid-template-columns: repeat(2, 1fr); gap: 6px; }
.config-step[data-key="sir"] .config-options { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .config-step[data-key="renk"] .config-options { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .config-options { grid-template-columns: repeat(2, 1fr) !important; }
  .config-step[data-key="boyut"] .config-options { grid-template-columns: repeat(3, 1fr) !important; }
  .config-step[data-key="renk"] .config-options { grid-template-columns: repeat(2, 1fr) !important; }
}
.config-option {
  background: var(--surface-2);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 220ms, background 220ms;
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.85rem;
}
.config-option:hover {
  border-color: var(--accent-2);
}
.config-option.selected {
  border-color: var(--accent);
  background: rgba(75,95,189,0.06);
}
.config-option.selected::after {
  content: '';
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-ring 1.5s cubic-bezier(.2,.7,.2,1) infinite;
}
.config-option svg { width: 26px; height: 26px; margin: 0; color: var(--accent); }
.config-option.color-swatch {
  width: auto !important;
  height: auto !important;
  border-radius: var(--radius) !important;
  flex-direction: row !important;
  gap: 8px;
  padding: 10px 12px !important;
  font-size: 0.78rem;
  min-height: 40px;
  justify-content: flex-start !important;
  overflow: hidden;
}
.config-option.color-swatch:hover { transform: none !important; }
.config-option.color-swatch span:not(.swatch-dot) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
  text-align: left;
  position: static !important;
  opacity: 1 !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  font-size: 0.82rem !important;
  color: var(--ink) !important;
}
.config-option.color-swatch .swatch-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.config-option-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.config-option-price { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); }

.color-options {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.color-swatch {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 240ms, border-color 240ms, box-shadow 240ms;
  position: relative;
}
.color-swatch:hover { transform: scale(1.12); }
.color-swatch.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.color-swatch .color-name {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  white-space: nowrap;
  color: var(--ink-soft);
  opacity: 0;
  transition: opacity 200ms;
}
.color-swatch:hover .color-name,
.color-swatch.selected .color-name { opacity: 1; }

.config-actions {
  display: flex; gap: 12px; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.config-summary {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
.config-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}
.config-summary-row + .config-summary-row { border-top: 1px solid var(--line); }
.config-summary-row .label { color: var(--ink-soft); }
.config-summary-row .value { font-weight: 600; font-family: var(--font-mono); }
.config-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; margin-top: 6px;
  border-top: 2px solid var(--ink);
  font-weight: 700; font-size: 1.1rem;
}
.config-total .price { font-family: var(--font-mono); color: var(--accent); font-size: 1.3rem; }

/* ===== SECTIONS ===== */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section > .container > .eyebrow,
.section > .container > h2 {
  text-align: center;
}
.section > .container > .eyebrow {
  margin-bottom: 12px;
}
.section > .container > h2 {
  margin: 0 auto clamp(32px, 5vw, 56px);
  max-width: 720px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 12px;
  line-height: 1.7;
}
.section--alt { background: var(--surface); }
.section--dark {
  background: var(--ink);
  color: var(--surface);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--surface); }
.section--dark .eyebrow { color: var(--accent-2); }
.section--dark p { color: rgba(255,255,255,0.75); }

/* ===== OPTIONS GRID (Seçenekler) ===== */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.option-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
  overflow: hidden;
}
.option-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 cubic-bezier(.2,.7,.2,1);
}
.option-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px -10px var(--accent-glow); }
.option-card:hover::before { transform: scaleX(1); }
.option-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(75,95,189,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background 300ms;
}
.option-card:hover .icon-wrap { background: rgba(75,95,189,0.15); }
.option-card .icon-wrap svg { width: 24px; height: 24px; color: var(--accent); }
.option-card h4 { margin-bottom: 8px; }
.option-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== GALLERY (İlham Galerisi) ===== */
.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(200px, auto);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(28,31,46,0.8));
  color: var(--surface);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.gallery-item:hover .gallery-caption { opacity: 1; visibility: visible; transform: none; transition: opacity 360ms, transform 360ms; }
.gallery-caption .caption-title { font-weight: 600; font-size: 0.9rem; }
.gallery-caption .caption-sub { font-size: 0.78rem; opacity: 0.8; }

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
@media (min-width: 768px) {
  .process-timeline::before { left: 50%; transform: translateX(-50%); }
}
.process-step {
  position: relative;
  padding: 0 0 clamp(28px, 4vw, 48px) 72px;
}
@media (min-width: 768px) {
  .process-step { padding: 0 0 clamp(28px, 4vw, 48px) 0; width: 50%; }
  .process-step:nth-child(odd) { margin-left: 50%; padding-left: 48px; }
  .process-step:nth-child(even) { text-align: right; padding-right: 48px; }
}
.process-marker {
  position: absolute;
  left: 16px; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--surface);
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}
@media (min-width: 768px) {
  .process-step:nth-child(odd) .process-marker { left: -13px; }
  .process-step:nth-child(even) .process-marker { right: -13px; left: auto; }
}
.process-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  padding: clamp(28px, 3vw, 36px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
  display: flex; flex-direction: column;
  text-align: center;
}
.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px !important;
}
.pricing-card .pricing-price {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 4px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.pricing-card .pricing-price strong {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  letter-spacing: -0.01em;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
  flex: 1;
}
.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: rgba(75,95,189,0.12);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%234B5FBD' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.5 5 9 9.5 3.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card.featured ul li::before {
  background-color: rgba(75,95,189,0.22);
}
.pricing-card .btn-ghost,
.pricing-card .btn-primary {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -12px var(--accent-glow);
  border-color: var(--accent-2);
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured {
  margin-top: 24px;
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--surface);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-card .price-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-card .included, .pricing-card .excluded {
  list-style: none; padding: 0;
  margin-bottom: 16px;
}
.pricing-card .included li, .pricing-card .excluded li {
  display: flex; align-items: start; gap: 8px;
  font-size: 0.88rem;
  padding: 6px 0;
  line-height: 1.5;
}
.pricing-card .included li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(75,95,189,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%234B5FBD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pricing-card .excluded li { color: var(--ink-soft); }
.pricing-card .excluded li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(28,31,46,0.06);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%235A5E72' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 6h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pricing-card .btn-primary { margin-top: auto; text-align: center; justify-content: center; }
.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 20px;
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  display: flex;
  flex-direction: column;
}
.testimonial-card .testimonial-quote { flex: 1; }
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -8px rgba(28,31,46,0.1);
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-2);
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--ink-soft); }

/* ===== STATS / COUNTERS ===== */
.stats-band {
  background: var(--ink);
  padding: clamp(32px, 5vw, 56px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--surface);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label,
.stats-band .stat-item span:not(.stat-number) {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}

/* ===== ORDER FORM SECTION ===== */
.order-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  max-width: 680px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 300ms;
}
.faq-item[open] { border-color: var(--accent-2); }
.faq-item summary {
  padding: clamp(14px, 2vw, 20px) clamp(18px, 3vw, 28px);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color 240ms;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%234B5FBD' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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: 26px;
}
.faq-item .faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ===== FORM STYLES ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.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 {
  flex-direction: row;
  align-items: start;
  gap: 10px;
}
.field--checkbox label { font-weight: 400; font-size: 0.84rem; line-height: 1.5; }
.field--checkbox label a { text-decoration: underline; }
.field .error-msg {
  font-size: 0.78rem;
  color: #C04040;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #C04040; }
.field.has-error .error-msg { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ===== CONTACT CHANNELS ===== */
.contact-channels {
  display: grid;
  gap: 6px;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
}
.channel-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.channel-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms, transform 240ms;
}
.channel-row:hover svg { color: var(--accent); transform: scale(1.08); }
.channel-label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a { color: var(--accent); }
.channel-value a:hover { color: var(--ink); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(48px, 6vw, 80px) 0 0;
  margin-top: clamp(40px, 5vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
  .footer-brand { grid-column: auto; }
}
.footer-brand .logo {
  color: var(--surface);
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.footer-brand .logo:hover { color: var(--accent-2); }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 380px;
  color: rgba(255,255,255,0.65);
}
.footer-col h4 {
  color: var(--surface);
  font-size: 0.92rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 0; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 220ms, transform 220ms;
}
.footer-col a:hover { color: var(--surface); transform: translateX(4px); }
.footer-col li:not(:has(a)) {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.footer-col li:not(:has(a)) svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }
@media (max-width: 540px) {
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .footer-brand p { font-size: 0.88rem; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { font-size: 0.88rem; padding: 5px 0; }
  .footer-bottom { font-size: 0.78rem; flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 0; }
}

/* ===== 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-lg);
  padding: 22px 24px;
  box-shadow: 0 12px 40px -10px rgba(28,31,46,0.2);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), 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 h4 { font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1; min-width: 100px;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: background 220ms, color 220ms, border-color 220ms;
  min-height: 44px;
}
.cookie-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface);
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-actions .cookie-accept:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ===== 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: 6px;
}
.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%; }
th, td { padding: 12px 16px; text-align: left; font-size: 0.88rem; border-bottom: 1px solid var(--line); }
th { font-weight: 600; background: var(--surface-2); font-size: 0.82rem; letter-spacing: 0.02em; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 320ms cubic-bezier(.2,.7,.2,1), transform 320ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(min(var(--i, 0), 4) * 50ms);
}
@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 — CERAMIC ===== */

/* 1. Potter's wheel slow rotation */
@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.wheel-spin-ring {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  border: 1.5px dashed var(--accent-2);
  border-radius: 50%;
  opacity: 0.25;
  animation: wheel-spin 12s linear infinite;
  pointer-events: none;
}

/* 2. Glaze drip effect */
@keyframes glaze-drip {
  0% { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0 0); }
}
.glaze-transition { animation: glaze-drip 600ms cubic-bezier(.2,.7,.2,1) forwards; }

/* 3. Kiln glow */
@keyframes kiln-glow {
  0%, 100% { box-shadow: 0 0 12px -4px rgba(255, 140, 50, 0.3); }
  50% { box-shadow: 0 0 28px -4px rgba(255, 140, 50, 0.55); }
}
.kiln-glow { animation: kiln-glow 3s ease-in-out infinite; }

/* 4. Clay texture reveal */
@keyframes clay-reveal {
  from { mask-size: 0% 100%; }
  to { mask-size: 100% 100%; }
}

/* 5. Brush stroke heading underline */
.brush-underline {
  position: relative;
  display: inline;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 6px;
  background: var(--accent-2);
  opacity: 0.35;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.brush-underline.is-in::after,
.is-in .brush-underline::after { transform: scaleX(1); }

/* Pulse ring on selected config option */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(75,95,189,0.4); }
  70% { box-shadow: 0 0 0 6px rgba(75,95,189,0); }
  100% { box-shadow: 0 0 0 0 rgba(75,95,189,0); }
}

/* Crystal sparkle */
@keyframes kristal-sparkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Counter up animation handled in JS */

/* ===== LEGAL/POLICY PAGES ===== */
.legal-page {
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.legal-page .legal-date { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 32px; display: block; }
.legal-page h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 14px; }
.legal-page h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 10px; }
.legal-page p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.75; font-size: 0.92rem; }
.legal-page ul, .legal-page ol { margin-bottom: 14px; padding-left: 24px; }
.legal-page li { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ===== SITEMAP PAGE ===== */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list li a { font-weight: 500; }

/* ===== ABOUT PAGE TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr 1fr; } }
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -10px var(--accent-glow);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--surface);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600; margin-bottom: 12px;
  display: block;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ===== ABOUT VALUES / MANIFESTO ===== */
.manifesto {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-family: var(--font-heading);
  line-height: 1.5;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink);
  font-style: italic;
  padding: clamp(24px, 4vw, 48px) 0;
  position: relative;
}
.manifesto::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-2);
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  line-height: 1;
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-preview { min-height: 280px; }
  .ceramic-scene { width: 220px; height: 260px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: auto; }
}

@media (max-width: 640px) {
  :root { --header-h: 58px; }
  .hero { padding: 40px 0 32px; }
  .options-grid { grid-template-columns: 1fr; }
  .config-options { grid-template-columns: repeat(2, 1fr); }
  .color-swatch { width: 40px; height: 40px; }
  .process-step { padding-left: 60px; }
  .process-marker { width: 22px; height: 22px; font-size: 0.6rem; left: 12px; }
  .process-timeline::before { left: 22px; }
  .option-card .icon-wrap { width: 40px; height: 40px; border-radius: 10px; }
  .option-card .icon-wrap svg { width: 20px; height: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .cookie-banner { bottom: 10px; left: 10px; right: 10px; padding: 18px 20px; }
}

@media (max-width: 430px) {
  .config-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .config-option { padding: 12px 10px; }
  .config-option svg { width: 28px; height: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .header-inner { padding: 0 14px; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 5px 10px; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .hero-parallax, .wheel-spin-ring, .dim-lines { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .section { padding: 24px 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  .btn-primary, .btn-ghost { border: 1px solid #000; background: #fff; color: #000; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .wheel-spin-ring { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }

/* VITRIN gallery */
#vitrin .section-header { text-align: center; }
.vitrin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.vitrin-item {
  margin: 0;
  background: #fff;
  border: 1px solid #e8ddd0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), box-shadow 380ms ease, border-color 380ms ease;
}
.vitrin-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -16px rgba(70, 50, 30, 0.28);
  border-color: #d4a24e;
}
.vitrin-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #faf6f0;
}
.vitrin-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px 18px;
  font-size: 14px;
}
.vitrin-item figcaption strong {
  font-weight: 600;
  color: #2b2018;
  letter-spacing: 0.01em;
}
.vitrin-item figcaption span {
  color: #8a7969;
  font-size: 13px;
}
@media (max-width: 960px) {
  .vitrin-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .vitrin-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Cancel policy block */
.cancel-policy {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}
.cancel-policy h3 {
  margin: 0 0 12px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.cancel-policy p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px 0;
}
.cancel-tiers {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: grid;
  gap: 10px;
}
.cancel-tiers li {
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 12px 16px 12px 20px;
  border-left: 2px solid var(--accent-2, var(--accent));
  background: rgba(75,95,189,0.04);
  border-radius: 4px;
}
.cancel-tiers strong {
  color: var(--ink);
  font-weight: 600;
}
.cancel-note {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 14px 0 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
