/* ============================================
   tazehamur — el yapımı taze makarna atölyesi
   ============================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1, "liga" 1;
  hanging-punctuation: first last;
}
img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* TOKENS */
:root {
  --bg: #FBF6EC;
  --bg-soft: #F7EFDF;
  --bg-warm: #F2E6CB;
  --ink: #2A1B12;
  --ink-soft: #5A4636;
  --ink-mute: #8C7563;
  --line: #E6D9C2;
  --line-strong: #D2BE9C;
  --terracotta: #B6532A;
  --terracotta-deep: #8E3F1E;
  --basil: #6E8B3D;
  --basil-deep: #4F6628;
  --paper: #FFFAF3;
  --shadow-warm: 0 14px 40px rgba(78, 52, 30, 0.10);
  --shadow-deep: 0 30px 60px -20px rgba(78, 52, 30, 0.22);

  --serif: "Cormorant Garamond", Cormorant, "EB Garamond", "Hoefler Text", Garamond, Georgia, "Times New Roman", serif;
  --sans: "Optima", "Gill Sans", "Avenir Next", "Lucida Grande", "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-body: clamp(16px, 1rem + 0.1vw, 17px);
  --lh-body: 1.65;
  --tracking-tight: -0.01em;
  --tracking-wide: 0.18em;

  --header-h: 72px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);

  --ease-soft: cubic-bezier(.2, .7, .2, 1);
  --ease-fast: cubic-bezier(.4, 0, .2, 1);

  --media-fallback:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 5px),
    radial-gradient(at 30% 25%, rgba(255, 240, 210, 0.7), transparent 60%),
    radial-gradient(at 75% 75%, rgba(140, 70, 30, 0.4), transparent 65%),
    linear-gradient(135deg, #f3e0b4 0%, #d8a772 55%, #94572d 100%);
}

/* BASE */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
main { padding-top: var(--header-h); }
::selection { background: var(--terracotta); color: var(--paper); }

/* SKIP */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--terracotta);
  color: var(--paper);
  padding: 12px 18px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 4px;
  font-size: 14px;
}
.skip-link:focus-visible { top: 16px; }

/* FOCUS */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 2px;
}

/* CONTAINER */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition:
    padding 240ms var(--ease-soft),
    background 240ms var(--ease-soft),
    box-shadow 240ms var(--ease-soft),
    border-color 240ms var(--ease-soft);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 250, 243, 0.98);
  border-bottom-color: rgba(78, 52, 30, 0.08);
  box-shadow: 0 8px 24px -16px rgba(78, 52, 30, 0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.6vw + 1rem, 30px);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  font-weight: 600;
  transition: font-size 240ms var(--ease-soft);
  white-space: nowrap;
  padding: 0 4px;
}
.header.is-scrolled .brand { font-size: clamp(20px, 1.4vw + 0.9rem, 26px); }
.brand__mark {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-3px);
}
.brand__sub {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
  margin-left: 2px;
}
@media (max-width: 720px) { .brand__sub { display: none; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__sub { display: none; }
@media (min-width: 1025px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: var(--header-h);
    z-index: 1090;
    padding: 0 var(--gutter);
    background: transparent;
    pointer-events: auto;
    transition: height 240ms var(--ease-soft);
  }
  .header.is-scrolled ~ .nav { height: calc(var(--header-h) - 20px); }
  .nav__sub { display: none; }
}
@media (max-width: 1024px) {
  .nav__sub { display: block; }
}
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 6px 0;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 200ms var(--ease-soft);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 240ms var(--ease-soft), left 240ms var(--ease-soft);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after, .nav__link:hover::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1100;
  margin-right: -8px;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 280ms var(--ease-soft), top 200ms var(--ease-soft), opacity 160ms;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  background: var(--terracotta);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 92vw);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 320ms var(--ease-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 28px 32px;
    gap: 0;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: -24px 0 48px -24px rgba(78, 52, 30, 0.25);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__link {
    display: block;
    padding: 18px 4px;
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: var(--tracking-tight);
    text-transform: none;
    color: var(--ink);
  }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--terracotta); }
  .nav__sub {
    margin-top: auto;
    padding-top: 32px;
    font-size: 11px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    line-height: 1.7;
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 27, 18, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease-soft), visibility 240ms var(--ease-soft);
  z-index: 1040;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }
body.is-locked { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(32px, 6vh, 72px) 0 clamp(40px, 8vh, 100px);
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 720ms var(--ease-soft) forwards;
  will-change: transform;
}
.hero__title .line:nth-of-type(2) > span { animation-delay: 120ms; }
.hero__title .line:nth-of-type(3) > span { animation-delay: 240ms; }
@keyframes word-rise { to { transform: translateY(0); } }
.hero__title .dropcap {
  font-style: italic;
  color: var(--terracotta);
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.4vw + 0.6rem, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 30ch;
  margin-bottom: 40px;
  font-style: italic;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.hero__cta-steam {
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  pointer-events: none;
}
.hero__cta-steam path {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0;
  animation: steam-rise 4s ease-in-out infinite;
}
.hero__cta-steam path:nth-child(2) { animation-delay: 1.3s; }
.hero__cta-steam path:nth-child(3) { animation-delay: 2.6s; }
@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(8px) scaleY(0.6); }
  30%  { opacity: 0.45; }
  100% { opacity: 0; transform: translateY(-28px) scaleY(1.3); filter: blur(2px); }
}

.hero__meta {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__meta-item { font-size: 13px; color: var(--ink-soft); max-width: 22ch; }
.hero__meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(360px, 60vh, 640px);
}
.hero__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: var(--media-fallback);
  box-shadow: var(--shadow-deep);
}
.hero__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1200ms var(--ease-soft);
}
.hero__frame.is-visible img { transform: scale(1); }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 27, 18, 0.30));
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.hero__caption-num {
  display: inline-block;
  margin-right: 10px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }
  .hero__media { min-height: 56vh; order: -1; margin-bottom: 16px; }
  .hero__meta { gap: 24px; }
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms var(--ease-soft), box-shadow 200ms var(--ease-soft), background 200ms var(--ease-soft), color 200ms var(--ease-soft);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-120%);
  transition: transform 1400ms var(--ease-soft);
  z-index: 0;
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn > * { position: relative; z-index: 1; }
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform 200ms var(--ease-soft);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ============================================
   SECTION SCAFFOLD
   ============================================ */
.section { padding: clamp(72px, 12vh, 140px) 0; position: relative; }
.section--narrow { padding: clamp(56px, 9vh, 100px) 0; }
.section--alt { background: var(--bg-soft); }
.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 56px);
}
@media (max-width: 768px) { .section__head { grid-template-columns: 1fr; } }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section__eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--terracotta); }
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 18ch;
}
.section__intro {
  font-size: clamp(15px, 0.9vw + 0.4rem, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* DIVIDER (rolling pin) */
.divider-line {
  display: block;
  margin: 56px auto;
  width: clamp(220px, 40vw, 340px);
  height: 28px;
  opacity: 0.85;
}
.divider-line path,
.divider-line line { stroke: var(--terracotta); fill: none; stroke-width: 1.4; stroke-linecap: round; }
.divider-line .dash {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1600ms var(--ease-soft);
}
.divider-line.is-visible .dash { stroke-dashoffset: 0; }

/* ============================================
   STORY (Hikayemiz)
   ============================================ */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.story__aside {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
}
.story__aside-num {
  display: block;
  font-family: var(--serif);
  font-size: 96px;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}
.story__body {
  max-width: 62ch;
  font-family: var(--serif);
  font-size: clamp(19px, 1.2vw + 0.5rem, 23px);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
}
.story__body p { margin-bottom: 1.4em; }
.story__body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 5.6em;
  float: left;
  line-height: 0.85;
  margin: 0.06em 0.12em -0.05em 0;
  color: var(--terracotta);
}
.story__quote {
  margin-top: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--terracotta);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92em;
  font-family: var(--serif);
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story__aside { position: static; }
}

/* ============================================
   WORKSHOPS
   ============================================ */
.workshops {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.workshop {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms var(--ease-soft);
}
.workshop:hover { transform: translateY(-4px); }
.workshop__media {
  aspect-ratio: 4 / 5;
  background: var(--media-fallback);
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  transition: box-shadow 220ms var(--ease-soft);
}
.workshop:hover .workshop__media { box-shadow: var(--shadow-warm); }
.workshop__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-soft);
}
.workshop:hover .workshop__media img { transform: scale(1.05); }
.workshop__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--paper);
  background: rgba(42, 27, 18, 0.55);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 2;
  backdrop-filter: blur(2px);
}
.workshop__title {
  font-family: var(--serif);
  font-size: clamp(22px, 1.5vw + 0.5rem, 28px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin-top: 4px;
}
.workshop__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.workshop__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.workshop__duration {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
}
.workshop__price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
}
.workshop__price-currency { font-size: 0.7em; margin-left: 2px; vertical-align: 0.05em; }

@media (max-width: 1024px) { .workshops { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .workshops { grid-template-columns: 1fr; gap: 36px; } }

.workshops__note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  max-width: 70ch;
  font-family: var(--serif);
}

/* ============================================
   STRIPS (Sipariş üzerine)
   ============================================ */
.strips { margin-top: 56px; }
.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 96px) 0;
}
.strip:last-child { border-bottom: 1px solid var(--line); }
.strip__media {
  aspect-ratio: 16 / 10;
  background: var(--media-fallback);
  overflow: hidden;
  position: relative;
}
.strip__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease-soft);
}
.strip:hover .strip__media img { transform: scale(1.03); }
.strip__caption { padding-left: clamp(32px, 5vw, 64px); }
.strip__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.strip__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 20px;
}
.strip__desc {
  font-size: clamp(15px, 0.5vw + 0.7rem, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 42ch;
}
.strip__meta {
  display: flex;
  gap: 28px;
  align-items: baseline;
  flex-wrap: wrap;
}
.strip__price {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
}
.strip__price-unit {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
}
.strip:nth-child(even) .strip__media { order: 2; }
.strip:nth-child(even) .strip__caption { order: 1; padding-left: 0; padding-right: clamp(32px, 5vw, 64px); }

@media (max-width: 768px) {
  .strip,
  .strip:nth-child(even) { grid-template-columns: 1fr; }
  .strip:nth-child(even) .strip__media { order: 0; }
  .strip:nth-child(even) .strip__caption { order: 0; padding-right: 0; }
  .strip__caption { padding-left: 0; padding-top: 28px; }
}

/* ============================================
   TIMELINE (Süreç)
   ============================================ */
.timeline {
  position: relative;
  margin-top: 24px;
  padding-left: 64px;
  max-width: 760px;
}
.timeline::before, .timeline::after {
  content: "";
  position: absolute;
  left: 13px; top: 6px; bottom: 6px;
  width: 1px;
  pointer-events: none;
}
.timeline::before { background: var(--line); }
.timeline::after {
  background: var(--terracotta);
  transform-origin: top;
  transform: scaleY(var(--p, 0));
  transition: transform 200ms linear;
}
.timeline__step {
  position: relative;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-soft), transform 700ms var(--ease-soft);
}
.timeline__step.is-visible { opacity: 1; transform: none; }
.timeline__step:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -60px;
  top: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
}
.timeline__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw + 0.5rem, 32px);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.15;
}
.timeline__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

@media (max-width: 560px) {
  .timeline { padding-left: 44px; }
  .timeline::before, .timeline::after { left: 7px; }
  .timeline__dot { left: -42px; width: 22px; height: 22px; font-size: 11px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  margin-top: 16px;
  display: grid;
  gap: 0;
  max-width: 880px;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 60px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(19px, 1.2vw + 0.4rem, 24px);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  transition: color 220ms var(--ease-soft);
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--terracotta); }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='none' stroke='%23B6532A' stroke-width='1.5' stroke-linecap='round'><line x1='4' y1='11' x2='18' y2='11'/><line x1='11' y1='4' x2='11' y2='18'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 280ms var(--ease-soft);
}
.faq__item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='none' stroke='%23B6532A' stroke-width='1.5' stroke-linecap='round'><line x1='4' y1='11' x2='18' y2='11'/></svg>");
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
.faq__answer {
  padding: 0 60px 32px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 70ch;
}
/* JS-driven smooth open/close: see assets/js/main.js (FAQ accordion). */

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  padding: clamp(80px, 14vh, 160px) 0;
  text-align: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.final::before, .final::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,83,42,0.12), transparent 70%);
  pointer-events: none;
}
.final::before { left: -80px; top: -80px; }
.final::after { right: -80px; bottom: -80px; }
.final__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.final__quote .accent { color: var(--terracotta); font-style: normal; font-weight: 500; }
.final__credit {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
  margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 250, 243, 0.72);
  padding: clamp(56px, 8vh, 96px) 0 32px;
}
.footer a { color: rgba(255, 250, 243, 0.85); transition: color 200ms var(--ease-soft); }
.footer a:hover { color: var(--paper); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--paper);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.footer__brand .brand__mark { background: var(--terracotta); }
.footer__about { font-size: 14px; line-height: 1.7; max-width: 38ch; }
.footer__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--terracotta);
  margin-bottom: 20px;
}
.footer__list { list-style: none; display: grid; gap: 12px; font-size: 14px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 243, 0.1);
  font-size: 12px;
  color: rgba(255, 250, 243, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { font-size: 12px; }

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================
   COOKIE
   ============================================ */
.cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-deep);
  z-index: 1200;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 320ms var(--ease-soft), opacity 320ms, visibility 320ms;
}
.cookie.is-visible { transform: none; opacity: 1; visibility: visible; }
.cookie__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cookie__text a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.cookie__btn {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--ease-soft), color 200ms var(--ease-soft);
  border: 1px solid var(--terracotta);
  letter-spacing: 0.02em;
}
.cookie__btn--accept { background: var(--terracotta); color: var(--paper); }
.cookie__btn--accept:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.cookie__btn--reject { background: var(--paper); color: var(--terracotta); }
.cookie__btn--reject:hover { background: var(--bg-warm); }
.cookie__btn--settings { background: var(--paper); color: var(--terracotta); }
.cookie__btn--settings:hover { background: var(--bg-warm); }

@media (max-width: 540px) {
  .cookie { left: 12px; right: 12px; padding: 18px; }
  .cookie__actions { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .cookie { left: 24px; right: auto; max-width: 420px; margin: 0; }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 27, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
  padding: 16px;
}
.cookie-modal.is-open { opacity: 1; visibility: visible; }
.cookie-modal__card {
  background: var(--paper);
  border-radius: 10px;
  max-width: 540px;
  width: 100%;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-deep);
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--ink-soft);
  background: transparent;
  transition: background 200ms;
}
.cookie-modal__close:hover { background: var(--bg-warm); }
.cookie-modal__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: var(--tracking-tight);
}
.cookie-modal__intro {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  gap: 24px;
}
.cookie-toggle:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.cookie-toggle__info { flex: 1; }
.cookie-toggle__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cookie-toggle__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.switch {
  position: relative;
  width: 44px; height: 24px;
  background: var(--line);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 200ms var(--ease-soft);
  border: 0;
  padding: 0;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: var(--paper);
  border-radius: 50%;
  transition: left 200ms var(--ease-soft);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.switch[data-on="true"] { background: var(--terracotta); }
.switch[data-on="true"]::after { left: 22px; }
.switch[disabled] { opacity: 0.6; cursor: not-allowed; }
.cookie-modal__actions {
  display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms var(--ease-soft), transform 720ms var(--ease-soft); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }
.no-js .reveal { opacity: 1 !important; transform: none !important; }

/* ============================================
   FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.contact-info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--terracotta);
  margin-top: 28px;
  margin-bottom: 6px;
}
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd {
  color: var(--ink);
  font-size: 17px;
  font-family: var(--serif);
  line-height: 1.5;
}
.contact-info dd a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: border 200ms var(--ease-soft), color 200ms var(--ease-soft);
}
.contact-info dd a:hover { border-color: var(--terracotta); color: var(--terracotta); }

.form { display: grid; gap: 22px; }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 4px;
}
.field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-mute);
  margin-bottom: 10px;
  font-weight: 600;
}
.field label .req { color: var(--terracotta); margin-left: 4px; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 200ms var(--ease-soft);
  border-radius: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%232A1B12' stroke-width='1.4'><polyline points='1 1 6 7 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 24px;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: 0.65; }
.field--checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 4px 12px;
}
.field--checkbox label {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  grid-column: 2;
}
.field--checkbox label a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.field--checkbox input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
  background: transparent;
  accent-color: var(--terracotta);
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
  cursor: pointer;
}
.field--checkbox .field__error { grid-column: 2; }
.field--hp { display: none !important; }
.field__error {
  font-size: 12px;
  color: #b03020;
  margin-top: 6px;
  min-height: 16px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #b03020; }

.form__feedback {
  padding: 16px 20px;
  font-size: 14px;
  display: none;
  border-radius: 2px;
  line-height: 1.5;
}
.form__feedback.is-visible { display: block; }
.form__feedback--success {
  background: rgba(110, 139, 61, 0.12);
  border-left: 3px solid var(--basil);
  color: var(--basil-deep);
}
.form__feedback--error {
  background: rgba(176, 48, 32, 0.08);
  border-left: 3px solid #b03020;
  color: #8a2419;
}

/* ============================================
   PROSE
   ============================================ */
.prose { max-width: 70ch; margin: 0 auto; }
.prose > section { margin-bottom: 40px; }
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  margin: 56px 0 16px;
  color: var(--ink);
  line-height: 1.15;
}
.prose h2:first-child, .prose section:first-child h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 10px;
  color: var(--ink);
  line-height: 1.2;
}
.prose p, .prose li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--terracotta); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--terracotta-deep); }
.prose dl { margin: 16px 0; }
.prose dt { font-weight: 600; color: var(--ink); margin-top: 14px; }
.prose dd { margin-left: 0; color: var(--ink-soft); }

/* PAGE HERO */
.page-hero {
  padding: clamp(56px, 9vh, 120px) 0 clamp(40px, 7vh, 80px);
  background: var(--bg-warm);
  position: relative;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--terracotta);
  margin-bottom: 16px;
}
.page-hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--terracotta); }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--ink);
  max-width: 22ch;
}
.page-hero__lede {
  font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid__media {
  aspect-ratio: 4 / 5;
  background: var(--media-fallback);
  overflow: hidden;
}
.about-grid__media img { width: 100%; height: 100%; object-fit: cover; }

.values {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) { .values { grid-template-columns: 1fr; gap: 28px; } }
.value__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--terracotta);
  line-height: 1;
}
.value__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 14px 0 8px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}
.value__desc { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }

/* SITEMAP */
.sitemap-list { display: grid; gap: 0; max-width: 60ch; margin: 32px 0; }
.sitemap-list a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: color 200ms var(--ease-soft), padding 200ms var(--ease-soft);
}
.sitemap-list a:hover { color: var(--terracotta); padding-left: 8px; }
.sitemap-list a span {
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-family: var(--sans);
}

/* 404 */
.notfound {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.notfound__num {
  font-family: var(--serif);
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-style: italic;
  margin-bottom: 20px;
}
.notfound__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: var(--tracking-tight);
}
.notfound__desc {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* CALLOUT, TABLE, MISC */
.callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--terracotta);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.disclaimer {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 24px;
  font-style: italic;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.price-table th, .price-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.price-table th {
  color: var(--ink-mute);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.price-table td.price { font-family: var(--serif); color: var(--terracotta); font-size: 18px; white-space: nowrap; }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
  .reveal, .timeline__step { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .hero__particles, .hero__cta-steam { display: none; }
}

/* UTILITY */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Image broken state hide */
img.is-broken { visibility: hidden; }

/* Long text safety */
table, pre { word-break: break-word; overflow-wrap: anywhere; }
pre, code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* table-scroll v2: horizontal overflow + parent shrink fix */
.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, rgba(0,0,0,0.12));
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
/* Allow grid/flex ancestors to shrink below their min-content (table) so the
   wrapper can actually scroll instead of pushing the column wider than the
   container. */
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}
