:root {
  --bg: #0F1923;
  --surface: #1C2B3A;
  --surface-2: #243344;
  --ink: #E8DFD0;
  --ink-soft: rgba(232,223,208,0.6);
  --accent: #C9A96E;
  --accent-2: #7B94A8;
  --line: rgba(232,223,208,0.12);
  --line-strong: rgba(232,223,208,0.25);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 32px);
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -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 { outline: 2px solid var(--accent); outline-offset: 2px; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.8em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.6em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(15,25,35,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 60px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(232,223,208,0.06);
  border: 1px solid rgba(232,223,208,0.12);
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  border-radius: 6px;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.3);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* ============================================================
   DRAWER (mobile)
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) var(--pad) 32px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer nav a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.drawer nav a:hover,
.drawer nav a.is-active {
  color: var(--accent);
  padding-left: 12px;
  border-bottom-color: rgba(201,169,110,0.2);
}
.drawer .drawer-cta {
  display: block;
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: 4px;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ============================================================
   MAIN
   ============================================================ */
main {
  padding-top: var(--header-h);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(80px,12vh,160px) 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(15,25,35,0.4) 0%,
    rgba(15,25,35,0.15) 40%,
    rgba(15,25,35,0.3) 70%,
    rgba(15,25,35,0.6) 100%
  );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: 'Source Serif 4', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  background:
    radial-gradient(ellipse at 25% 35%, #C9A96E 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, #8B7355 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, #E8DFD0 0%, #C9A96E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 14ch;
  margin-bottom: 32px;
}
@keyframes ink-bleed {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.65;
  margin-bottom: 40px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero potter's wheel decoration */
.hero-wheel {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 520px);
  height: clamp(280px, 40vw, 520px);
  pointer-events: none;
  z-index: 1;
}
.wheel-svg {
  width: 100%;
  height: 100%;
  color: var(--accent);
  opacity: 0.09;
  animation: wheel-spin 14s linear infinite;
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .wheel-svg { animation: none !important; }
  .hero-title { clip-path: none !important; animation: none !important; -webkit-text-fill-color: var(--accent) !important; background: none !important; }
  .eyebrow, .hero-sub, .hero-cta-group, .page-hero h1 { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* Hero background image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
}

/* Hero entrance — JS-triggered via html.anim-hero */
html.anim-hero .eyebrow {
  animation: fade-up 600ms 80ms cubic-bezier(.22,.68,.36,1) both;
}
html.anim-hero .hero-title {
  animation: ink-bleed 1000ms 140ms cubic-bezier(.22,.68,.36,1) both;
}
html.anim-hero .hero-sub {
  animation: fade-up 600ms 320ms cubic-bezier(.22,.68,.36,1) both;
}
html.anim-hero .hero-cta-group {
  animation: fade-up 600ms 480ms cubic-bezier(.22,.68,.36,1) both;
}
html.anim-hero .page-hero .eyebrow { animation-delay: 50ms; }
html.anim-hero .page-hero h1 {
  animation: fade-up 600ms 100ms cubic-bezier(.22,.68,.36,1) both;
}
html.anim-hero .page-hero .hero-sub { animation-delay: 200ms; }
html.anim-done .eyebrow,
html.anim-done .hero-title,
html.anim-done .hero-sub,
html.anim-done .hero-cta-group,
html.anim-done .page-hero h1 {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 200ms, box-shadow 280ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(201,169,110,0.3);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
section {
  padding: clamp(64px,10vh,120px) 0;
}
.section-alt { background: var(--surface); }
.section-band {
  background: var(--accent);
  color: var(--bg);
}
.section-band h2,
.section-band h3,
.section-band h4 { color: var(--bg); }
.section-band .ink-soft { color: rgba(15,25,35,0.65); }
.section-eyebrow {
  font-family: 'Source Serif 4', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-band .section-eyebrow { color: rgba(15,25,35,0.5); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  padding: clamp(40px,6vh,72px) 0;
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  position: relative;
}
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 38ch;
  position: relative;
  padding-left: 32px;
  margin-bottom: 40px;
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 28px;
}

/* ============================================================
   PROCESS / SÜREÇ (vertical timeline)
   ============================================================ */
.process-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: 48px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  z-index: 1;
}
.section-alt .process-step::before { background: var(--surface); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 50ch;
}
.process-time {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: 6px;
  font-style: italic;
}

/* ============================================================
   TAKVIM (schedule table)
   ============================================================ */
.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.92rem;
}
th {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
tr:last-child td { border-bottom: none; }
tr:hover td {
  background: rgba(201,169,110,0.04);
}
.badge-seans {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(201,169,110,0.12);
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ============================================================
   TEKNİKLER (drop-cap editorial)
   ============================================================ */
.teknik-grid {
  display: grid;
  gap: clamp(48px,6vw,80px);
  margin-top: 40px;
}
.teknik-item {
  max-width: 68ch;
}
.teknik-item h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.teknik-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}
.drop-cap {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.drop-cap::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.2em;
  line-height: 0.78;
  margin: 4px 14px 0 0;
  background: linear-gradient(145deg, var(--accent), #8B7355);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   EKİP (team)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: transform 340ms cubic-bezier(.22,.68,.36,1), box-shadow 340ms, border-color 340ms;
}
.section-alt .team-card { background: var(--bg); }
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px -12px rgba(201,169,110,0.18);
  border-color: rgba(201,169,110,0.15);
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bg);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   ÜCRETLER (pricing)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 24px;
  position: relative;
  transition: transform 340ms cubic-bezier(.22,.68,.36,1), box-shadow 400ms, border-color 340ms;
  background: var(--surface);
}
.section-alt .price-card { background: var(--bg); }
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px -8px rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.15);
}
.price-card.featured {
  border-color: var(--accent);
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 3px;
}
.price-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-includes {
  list-style: none;
  margin-bottom: 16px;
}
.price-includes li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.price-includes li:last-child { border-bottom: none; }
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.price-excludes li::before {
  content: '—';
  color: var(--ink-soft);
}
.price-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   YORUMLAR (testimonials — editorial grid)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.testimonials-grid .testimonial:first-child {
  grid-row: 1 / 3;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:first-child { grid-row: auto; }
}
.testimonial {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: transform 340ms cubic-bezier(.22,.68,.36,1), box-shadow 340ms, border-color 340ms;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(201,169,110,0.12);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '«';
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  margin-right: 2px;
}
.testimonial-quote::after {
  content: '»';
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  margin-left: 2px;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: 2px;
}

/* ============================================================
   SSS (FAQ — pure CSS accordion)
   ============================================================ */
.faq-list {
  margin-top: 40px;
  max-width: 72ch;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Serif 4', serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 58ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   KATILIM (form)
   ============================================================ */
.form-section {
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  max-width: 640px;
}
.form-grid .field-full {
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  font-weight: 600;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
  width: 100%;
}
.section-alt .field input,
.section-alt .field select,
.section-alt .field textarea {
  background: var(--bg);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  border-bottom-color: var(--accent);
  box-shadow: 0 2px 12px -4px rgba(201,169,110,0.25), 0 0 0 1px rgba(201,169,110,0.08);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A96E' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.field-checkbox label {
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}
.field-checkbox a { text-decoration: underline; }

.form-submit {
  margin-top: 24px;
}
.form-submit .btn-primary {
  width: 100%;
}
@media (min-width: 640px) {
  .form-submit .btn-primary { width: auto; min-width: 220px; }
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ============================================================
   NOTLAR (atelier notes / activity signal)
   ============================================================ */
.notes-list {
  margin-top: 28px;
  max-width: 60ch;
}
.note-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.note-date {
  font-size: 0.78rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-top: 2px;
}
.note-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   CANCELLATION (iptal koşulları)
   ============================================================ */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.cancel-tier {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.cancel-tier strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.cancel-tier span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0A1219;
  padding: clamp(48px,8vh,80px) 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: color 240ms, border-color 240ms, transform 200ms;
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-style: normal;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
}
.footer-contact-item a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 0;
}
.footer-legal a:hover {
  color: var(--accent);
  padding-left: 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-strong);
  border-radius: 10px;
  padding: 20px 24px;
  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-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-text a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-btn-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-btn-reject {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
  font-weight: 400;
}
.cookie-btn-reject:hover { background: rgba(232,223,208,0.06); color: var(--ink); border-color: var(--line-strong); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
  font-weight: 400;
}
.cookie-btn-settings:hover { background: rgba(232,223,208,0.04); color: var(--ink); border-color: var(--line); }

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 14px 14px 0 0;
    padding: 18px 20px;
    max-width: 100%;
  }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.22,.68,.36,1),
              transform 800ms cubic-bezier(.22,.68,.36,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 120ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   COUNTER-UP ANIMATION
   ============================================================ */
.counter { font-variant-numeric: tabular-nums; }

/* ============================================================
   NICHE ANIMATIONS — ceramics
   ============================================================ */

/* 1. Kiln glow pulse on hover */
@keyframes kiln-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  50% { box-shadow: 0 0 28px -4px rgba(201,169,110,0.18); }
}
.price-card:hover,
.team-card:hover {
  animation: kiln-glow 2s ease-in-out;
}

/* 2. Clay forming - subtle breathing on technique headers */
@keyframes clay-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}
.teknik-icon {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), color 240ms;
}
.teknik-item:hover .teknik-icon {
  color: var(--ink);
  animation: clay-breathe 1.6s ease-in-out;
}

/* 3. Coil pattern on section dividers */
.coil-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 0 24px;
  border: none;
}

/* 4. Clay drip ambient on manifesto */
@keyframes clay-drip {
  0% { transform: translateY(-8px); opacity: 0; }
  20% { opacity: 0.08; }
  100% { transform: translateY(100vh); opacity: 0; }
}
.manifesto::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 1px;
  height: 60px;
  background: var(--accent);
  animation: clay-drip 10s ease-in infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto::after { animation: none; display: none; }
  .teknik-item:hover .teknik-icon { animation: none; }
  .price-card:hover, .team-card:hover { animation: none; }
  .process-step, .note-item, .cancel-tier { transition: none; }
  .teknik-item img { transition: none; }
  .teknik-item:hover img { transform: none; }
  .cancel-tier:hover { transform: none; }
  .stats:hover .stat-num { text-shadow: none; }
}

/* 5. Warm clay aura on primary buttons */
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 6px 20px -6px rgba(201,169,110,0.3), 0 0 40px -8px rgba(201,169,110,0.15);
}

/* 6. Process step hover — gentle indent */
.process-step {
  transition: padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.process-step:hover {
  padding-left: 8px;
}
.process-step:hover::before {
  background: var(--accent);
  border-color: var(--accent);
  transition: background 280ms, border-color 280ms;
}

/* 7. FAQ summary warm highlight */
.faq-item summary {
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  transition: color 240ms, background 240ms;
}
.faq-item summary:hover {
  background: rgba(201,169,110,0.04);
}

/* 8. Technique images */
.teknik-item img {
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.3);
  transition: transform 400ms cubic-bezier(.22,.68,.36,1), box-shadow 400ms, border-color 400ms;
}
.teknik-item:hover img {
  transform: scale(1.015);
  box-shadow: 0 12px 32px -12px rgba(201,169,110,0.25);
  border-color: rgba(201,169,110,0.15);
}

/* 9. Contact card icon hover warmth */
.contact-card:hover .contact-card-icon {
  background: rgba(201,169,110,0.22);
  box-shadow: 0 0 20px -4px rgba(201,169,110,0.15);
  transition: background 320ms, box-shadow 320ms;
}

/* 10. Note item hover */
.note-item {
  transition: padding-left 240ms cubic-bezier(.2,.7,.2,1);
}
.note-item:hover {
  padding-left: 6px;
}

/* 11. Warm earth shimmer on stats hover */
.stat-num {
  transition: text-shadow 500ms cubic-bezier(.2,.7,.2,1);
}
.stats:hover .stat-num {
  text-shadow: 0 0 24px rgba(201,169,110,0.25);
}

/* 12. Earthy gradient on nav underlines */
.nav-desktop a::after {
  background: linear-gradient(90deg, var(--accent), #8B7355);
}

/* 13. Testimonial card warm border glow */
.testimonial:hover {
  border-color: rgba(201,169,110,0.25);
  box-shadow: 0 8px 24px -8px rgba(201,169,110,0.12), inset 0 1px 0 rgba(201,169,110,0.06);
}

/* 14. Cancel tier warm pulse */
.cancel-tier {
  transition: transform 280ms cubic-bezier(.22,.68,.36,1), box-shadow 280ms, border-color 280ms;
}
.cancel-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px -6px rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.2);
}

/* 15. Warm earth glow on section transitions */
@keyframes earth-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.section-alt::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.18), transparent);
  pointer-events: none;
}
.section-alt { position: relative; }

/* 16. Kiln heat shimmer on pricing featured card */
@keyframes kiln-heat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0), 0 4px 16px -4px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 32px -8px rgba(201,169,110,0.2), 0 8px 24px -4px rgba(0,0,0,0.15); }
}
.price-card.featured {
  animation: kiln-heat 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .price-card.featured { animation: none; }
  .section-alt::before { display: none; }
}

/* 17. Smooth entrance for hero CTA warm glow */
@keyframes cta-warm-glow {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  100% { box-shadow: 0 0 24px -4px rgba(201,169,110,0.2); }
}
.hero .btn-primary {
  animation: cta-warm-glow 2s 1.2s ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary { animation: none; }
}

/* 18. Pull-quote accent bar warm pulse */
.pull-quote::before {
  transition: height 600ms cubic-bezier(.22,.68,.36,1), opacity 400ms;
}
.pull-quote.is-in::before {
  animation: none;
}

/* 19. Footer social hover — warm ring */
.footer-social a:hover {
  box-shadow: 0 0 12px -2px rgba(201,169,110,0.2);
}

/* 20. Contact card warm underline on hover */
.contact-card {
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.22,.68,.36,1);
}
.contact-card:hover::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .contact-card::after { display: none; }
}


/* ============================================================
   CONTACT PAGE — premium cards
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 340ms cubic-bezier(.22,.68,.36,1), box-shadow 340ms, border-color 340ms;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(201,169,110,0.18);
  border-color: rgba(201,169,110,0.15);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 240ms;
}
.contact-card:hover .contact-card-icon {
  background: rgba(201,169,110,0.18);
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.contact-card-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-card-value {
  font-size: 1rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card-value a {
  color: var(--ink);
  transition: color 240ms;
}
.contact-card-value a:hover { color: var(--accent); }
.contact-card-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 6px;
  font-style: italic;
}

/* Hours mini-grid */
.hours-grid {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}
.hours-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  font-size: 0.88rem;
  padding: 4px 0;
  font-variant-numeric: tabular-nums;
}
.hours-day { color: var(--ink-soft); }
.hours-time { color: var(--ink); }
.hours-row.today {
  color: var(--accent);
  font-weight: 600;
}
.hours-row.today .hours-day,
.hours-row.today .hours-time { color: var(--accent); }

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 72ch;
  margin-top: 40px;
}
.legal-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(80px,12vh,160px) 0;
}
.thankyou-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 24px;
}
.thankyou-wrap h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.thankyou-wrap p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(80px,12vh,160px) 0;
}
.error-code {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
}
.error-wrap h1 { margin-bottom: 12px; }
.error-wrap p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 auto 28px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px,10vh,120px) 0 clamp(40px,6vh,64px);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 16px;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.sitemap-group h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.sitemap-group ul { list-style: none; }
.sitemap-group li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-group a {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.sitemap-group a:hover { color: var(--accent); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link, .hero-wheel { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding-top: 0; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   SMOOTH SCROLL (anchor offset)
   ============================================================ */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .cancel-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 56px; }
  section { padding: clamp(48px,8vh,80px) 0; }
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .trust-strip { flex-direction: column; gap: 10px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-cards { grid-template-columns: 1fr; }
  .pull-quote { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}
@media (max-width: 430px) {
  .price-card { padding: 24px 18px; }
  .team-card { padding: 22px 18px; }
  .testimonial { padding: 22px 18px; }
  .hero-wheel { display: none; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}


/* contrast hardening (mass-fix) */
.hero-title{color:var(--ink, currentColor);}
@supports not (background-clip:text){
  .hero-title{background-image:none !important;-webkit-text-fill-color:currentColor !important;color:var(--ink);}
}
.hero-title .letter,.hero-title span{color:inherit;background:inherit;-webkit-background-clip:inherit;background-clip:inherit;-webkit-text-fill-color:inherit}
.no-js .hero-title{background-image:none !important;-webkit-text-fill-color:currentColor !important;color:var(--ink) !important}
.no-js .hero-title .letter{opacity:1 !important;transform:none !important;animation:none !important}
