/* ============================================================
   ÇAMURMARKET — B2B Custom Seramik Stüdyosu
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #F2F7F0;
  --surface: #FFFFFF;
  --surface-2: #EDF3EA;
  --ink: #1B2E1F;
  --ink-soft: #3D5A42;
  --accent: #2D6B45;
  --accent-2: #A3C4AF;
  --line: rgba(27,46,31,0.12);
  --line-strong: rgba(27,46,31,0.28);

  --header-h: 74px;
  --container: 1240px;

  --font-heading: 'Cambria', Georgia, serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Consolas', 'Courier New', monospace;

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 14px;
}

/* === RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }

/* === SKIP LINK ============================================= */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 0.875rem; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

/* === FOCUS ================================================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === TYPOGRAPHY ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.008em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { max-width: 72ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 56ch;
  margin-top: 10px;
}

/* === CONTAINER ============================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* === BUTTONS ================================================ */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(45,107,69,0.3);
}
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px);
}

/* === HEADER ================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(242,247,240,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(242,247,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 240ms;
}
.logo:hover { color: var(--accent); }
.logo em {
  font-style: normal;
  color: var(--accent);
}

/* desktop nav */
.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;
  text-decoration: none;
  transition: color 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);
  transform: scaleX(0); transform-origin: left;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.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 {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--ink); color: var(--surface);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { background: var(--accent); color: var(--surface); }

/* nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 1100;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  position: absolute; left: 10px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              opacity 240ms;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-active span:nth-child(1) {
  top: 21px; transform: rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) {
  top: 21px; transform: rotate(-45deg);
}

/* === 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 cubic-bezier(.4,0,.2,1), visibility 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1; visibility: visible;
}
.mobile-drawer {
  position: fixed; height: 100vh; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(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-sm);
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: background 200ms cubic-bezier(.4,0,.2,1), color 200ms cubic-bezier(.4,0,.2,1);
}
.drawer-close:hover {
  background: var(--surface-2);
  color: var(--accent);
}
.mobile-drawer nav {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer a {
  display: block;
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 200ms, color 200ms;
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  background: var(--surface-2); color: var(--accent);
}
.mobile-drawer .drawer-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--ink); color: var(--surface);
  border-radius: var(--radius);
  font-weight: 600;
  padding: 16px;
}
.mobile-drawer .drawer-cta:hover {
  background: var(--accent); color: var(--surface);
}

/* === MAIN ================================================== */
main { padding-top: var(--header-h); }

/* === HERO ================================================== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}

/* trust badges */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.trust-badge svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--accent); fill: none;
}

/* hero media */
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: ken-burns 8s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

/* === POTTERY WHEEL ANIMATION (theme signature) ============= */
.pottery-anim {
  position: absolute;
  bottom: -12px; left: -20px;
  width: 140px; height: 170px;
  pointer-events: none;
  z-index: 3;
}
.pottery-anim__wheel {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.7;
  animation: wheel-spin 5s linear infinite;
}
.pottery-anim__wheel::before {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.25);
  animation: wheel-spin 3s linear infinite reverse;
}
.pottery-anim__clay {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 80px;
  background: linear-gradient(160deg, #C4956A 0%, #A67B5B 40%, #8B6244 100%);
  border-radius: 38% 38% 44% 44% / 28% 28% 50% 50%;
  animation: clay-morph 10s cubic-bezier(.4,0,.2,1) infinite;
  box-shadow: inset -6px -4px 12px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1);
}
@keyframes wheel-spin {
  to { transform: translateX(-50%) rotate(360deg); }
}
@keyframes clay-morph {
  0%, 100% {
    width: 52px; height: 80px;
    border-radius: 38% 38% 44% 44% / 28% 28% 50% 50%;
  }
  25% {
    width: 64px; height: 60px;
    border-radius: 50% 50% 42% 42% / 40% 40% 46% 46%;
  }
  50% {
    width: 44px; height: 100px;
    border-radius: 34% 34% 48% 48% / 22% 22% 56% 56%;
  }
  75% {
    width: 58px; height: 70px;
    border-radius: 46% 46% 36% 36% / 36% 36% 42% 42%;
  }
}

/* === NICHE ANIMATIONS (ceramic/pottery) ==================== */
@keyframes kiln-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,107,69,0); }
  50% { box-shadow: 0 0 28px 6px rgba(45,107,69,0.12); }
}
@keyframes glaze-sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
@keyframes coil-spin {
  to { transform: rotate(360deg); }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(45,107,69,0.18);
}
.card:hover::before { transform: scaleX(1); }

/* === STATS STRIP ============================================ */
.stats-strip {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.02) 8px,
    rgba(255,255,255,0.02) 9px
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

/* === HATCH DIVIDER ========================================== */
.hatch-divider {
  width: 100%; height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    var(--line) 3px,
    var(--line) 4px
  );
  opacity: 0.55;
}

/* === SECTIONS BASE ========================================== */
section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header h2 { margin-bottom: 8px; }

/* === #servis — HIZMET MODELLERI ============================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.package-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  display: flex; flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.package-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 420ms cubic-bezier(.2,.7,.2,1);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(45,107,69,0.18);
}
.package-card:hover::before { transform: scaleX(1); }
.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(45,107,69,0.03) 0%, var(--surface) 100%);
}
.package-card.featured::before { transform: scaleX(1); }
.package-icon {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  color: var(--accent);
}
.package-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.package-card h3 {
  font-size: 1.2rem; margin-bottom: 6px;
}
.package-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.package-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin: 14px 0 8px;
}
.package-includes {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.package-includes li {
  font-size: 0.88rem;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}
.package-includes li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.package-excludes {
  margin-top: 10px;
}
.package-excludes li {
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
  opacity: 0.7;
}
.package-excludes li::before {
  content: '—';
  position: absolute; left: 0; top: 4px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.package-card .lot-badge {
  position: absolute;
  top: 14px; right: 14px;
}
.price-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}

/* === #surec — TIMELINE ====================================== */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 28px;
  width: 2px;
  background: var(--line-strong);
}
.timeline-step {
  position: relative;
  padding-left: 72px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 16px; top: 4px;
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: kiln-glow 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.6s);
}
.timeline-dot svg {
  width: 12px; height: 12px;
  stroke: var(--surface); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.timeline-step h3 { margin-bottom: 4px; }
.timeline-period {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: inline-block;
  background: rgba(45,107,69,0.08);
  padding: 2px 10px;
  border-radius: 3px;
}
.timeline-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* === #portfolyo — CASE STUDIES ============================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.portfolio-grid .card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(45,107,69,0.18);
}
.portfolio-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.portfolio-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04);
}
.portfolio-card__body {
  padding: clamp(16px, 2.5vw, 24px);
}
.portfolio-card .lot-badge {
  position: absolute;
  top: 14px; right: 14px;
}
.portfolio-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.portfolio-card__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.portfolio-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.portfolio-grid .portfolio-card:nth-child(1) {
  grid-column: span 2;
}
.portfolio-grid .portfolio-card:nth-child(1) .portfolio-card__img {
  aspect-ratio: 21 / 10;
}

/* lot badge */
.lot-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: var(--surface);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  line-height: 1.4;
}

/* === #ekip — TEAM =========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(45,107,69,0.18);
}
.team-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
}
.team-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card__img img { transform: scale(1.04); }
.team-card__body {
  padding: clamp(18px, 2.5vw, 28px);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card__role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* === #malzeme — MATERIALS =================================== */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.material-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px -10px rgba(45,107,69,0.18);
}
.material-icon {
  width: 48px; height: 48px;
  color: var(--accent);
}
.material-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.material-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.material-card p {
  font-size: 0.9rem; color: var(--ink-soft);
}
.material-tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(45,107,69,0.07);
  padding: 3px 10px;
  border-radius: 3px;
}

/* === #referanslar — TESTIMONIALS ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 24px);
  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); } }
.testimonials-grid .testimonial-card { grid-row: auto !important; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-2);
  opacity: 0.5;
  position: absolute;
  top: 16px; left: 24px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
  padding-top: 28px;
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* === #iptal — CANCELLATION ================================== */
.policy-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: 28px;
}
.policy-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  text-align: center;
}
.policy-tier__icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  color: var(--accent);
}
.policy-tier__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.policy-tier h3 { font-size: 1rem; margin-bottom: 8px; }
.policy-tier p {
  font-size: 0.88rem; color: var(--ink-soft);
}
.policy-tier .refund-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(45,107,69,0.08);
  padding: 4px 14px;
  border-radius: 4px;
}
.policy-notes {
  max-width: 680px;
  margin: 0 auto;
}
.policy-notes p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.policy-notes p::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* === #sss — FAQ ACCORDION =================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 2vw, 22px) 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.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-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* === CONTACT SECTION (index) ================================ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-info-list .ci-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
}
.contact-info-list .ci-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-list .ci-row {
  display: contents;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.contact-info-list a.ci-row:hover .ci-icon {
  color: var(--ink);
  transform: scale(1.08);
}
.contact-info-list .ci-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-info-list .ci-value {
  font-size: 0.95rem;
  word-break: break-all;
}

/* === FOOTER ================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  color: var(--surface);
  margin-bottom: 12px;
  display: inline-block;
}
.footer-brand .logo em { color: var(--accent-2); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 30ch;
}
.footer-est {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.footer-col h4 {
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 200ms, transform 200ms;
}
.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}
.footer-col .footer-contact-item {
  display: flex; gap: 8px; align-items: start;
  margin-bottom: 8px;
}
.footer-col .footer-contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--accent-2); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 3px;
}
.footer-col .footer-contact-item span {
  font-size: 0.88rem;
}
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem;
  opacity: 0.5;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* === 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: clamp(18px, 3vw, 24px);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  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;
}
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.55;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-btns button {
  flex: 1;
  min-height: 44px;
  min-width: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--line);
  transition: background 200ms, color 200ms;
  padding: 10px 16px;
}
.cookie-btns .cookie-accept {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-btns .cookie-accept:hover { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.cookie-btns .cookie-reject {
  background: transparent; color: var(--ink);
}
.cookie-btns .cookie-reject:hover { background: var(--surface-2); color: var(--ink); }
.cookie-btns .cookie-settings {
  background: transparent; color: var(--ink);
}
.cookie-btns .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

@media (min-width: 640px) {
  .cookie-banner {
    left: 24px; right: auto; max-width: 420px;
  }
}

/* === FORM STYLES (iletisim page) ============================ */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form .field {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form label .req { color: var(--accent); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,107,69,0.1);
  outline: none;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.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);
}
.contact-form .field-checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.contact-form .field-checkbox label a {
  text-decoration: underline;
}
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-feedback.is-success {
  display: block;
  background: rgba(45,107,69,0.08);
  color: var(--accent);
  border: 1px solid rgba(45,107,69,0.2);
}
.form-feedback.is-error {
  display: block;
  background: rgba(180,40,40,0.06);
  color: #7a2020;
  border: 1px solid rgba(180,40,40,0.15);
}
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 6px;
}

/* contact channels on iletisim page */
.contact-channels {
  display: grid;
  gap: 0;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1),
              background 240ms cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius-sm);
  padding-left: 8px; padding-right: 8px;
  text-decoration: none;
  color: inherit;
}
a.channel-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
a.channel-row:hover .channel-icon { color: var(--accent); transform: scale(1.08); }
.channel-icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1),
              transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.channel-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.95rem;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* === 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 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table th, table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-2);
}
table td { color: var(--ink-soft); }

/* === REVEAL ================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* === DROP CAP =============================================== */
.manifesto p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.8em;
  float: left;
  line-height: 0.78;
  margin: 0.08em 0.14em 0 0;
  color: var(--accent);
  font-weight: 700;
}

/* === ABOUT PAGE ============================================= */
.about-hero {
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-split img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.awards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.award-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  text-align: center;
}
.award-card svg {
  width: 36px; height: 36px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; margin-bottom: 12px;
}
.award-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.award-card span { font-size: 0.82rem; color: var(--ink-soft); }

/* === LEGAL PAGES ============================================ */
.legal-page { padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); font-size: clamp(1.8rem, 4vw, 2.4rem); }
.legal-page h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.6rem; }
.legal-page p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 0.95rem; }
.legal-page ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-page ul li {
  font-size: 0.93rem; color: var(--ink-soft);
  padding: 4px 0; position: relative; list-style: disc;
}

/* === 404 PAGE =============================================== */
.page-404 {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 p {
  margin: 0 auto 24px;
  color: var(--ink-soft);
}

/* === SITEMAP PAGE =========================================== */
.sitemap-page { padding: clamp(3rem, 6vw, 5rem) 0; }
.sitemap-page .container { max-width: 800px; }
.sitemap-list { padding-left: 0; }
.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list li a {
  font-size: 0.95rem;
  display: flex; justify-content: space-between;
}
.sitemap-list li a span { font-size: 0.82rem; color: var(--ink-soft); }

/* === RESPONSIVE ============================================= */

@media (max-width: 1280px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__media { max-width: 480px; }
  .hero__content h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-split { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; }
  .contact-block { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .portfolio-card:nth-child(1) { grid-column: span 1; }
  .portfolio-grid .portfolio-card:nth-child(1) .portfolio-card__img { aspect-ratio: 16 / 10; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .materials-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:first-child { grid-row: span 1; }
  .policy-tiers { grid-template-columns: 1fr; }
  .awards-list { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  .trust-strip { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero__content h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn-primary, .hero__ctas .btn-ghost { width: 100%; justify-content: center; }
  .hero__media { max-width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat__number { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  .material-card { grid-template-columns: 1fr; }
  .material-icon { width: 36px; height: 36px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .package-card { padding: 20px; }
  .portfolio-card__body { padding: 16px; }
  .testimonial-card { padding: 20px; }
  .team-card__body { padding: 16px; }

  section { padding: clamp(2rem, 6vw, 3.5rem) 0; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .eyebrow { font-size: 0.7rem; }
  .lot-badge { font-size: 0.68rem; }
}

@media (max-width: 390px) {
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 0.9rem; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns button { flex: none; width: 100%; }
}

/* === PRINT ================================================== */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop,
  .nav-toggle, .cookie-banner, .pottery-anim { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { page-break-inside: avoid; }
}

/* === REDUCED MOTION ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__media img { animation: none; }
  .pottery-anim__wheel, .pottery-anim__clay { animation: none; }
  .timeline-dot { animation: none; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }
