:root {
  --paper: oklch(0.958 0.012 87);
  --ink: oklch(0.12 0.008 74);
  --quiet: oklch(0.91 0.012 87);
  --muted-ink: oklch(0.42 0.012 73);
  --line: oklch(0.69 0.012 80);
  --page: clamp(1.5rem, 3.1vw, 3.5rem);
  --measure: 39rem;
  /*
   * Multiplier applied to the handful of display statements where a
   * translation's longest word empirically didn't fit at 1 — see the
   * selectors that use it below. Scales at every breakpoint uniformly
   * (unlike a fixed override), since it's just multiplying whatever
   * clamp()/vw value that breakpoint already computes. Every language
   * gets its own value below (measured empirically per language: clone
   * each display word with white-space:nowrap, compare its natural
   * width to its line's available content width at 320/375/768/1280px,
   * and lower the scale until every word fits with no mid-word break) —
   * this bare 1 is only a fallback for an untranslated future language.
   */
  --word-scale: 1;

  --color-background: var(--paper);
  --color-foreground: var(--ink);
  --color-muted: var(--quiet);
  --color-muted-foreground: var(--muted-ink);
  --color-border: var(--line);
  --color-primary: var(--ink);
  --color-primary-foreground: var(--paper);
  --color-accent: var(--quiet);
  --color-accent-foreground: var(--ink);
  --color-input: var(--line);
  --color-ring: var(--ink);
  --font-sans: "Arial", sans-serif;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-reading: "IBM Plex Mono", monospace;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
}

html[lang="nl"] { --word-scale: 0.75; }
html[lang="en"] { --word-scale: 0.65; }
html[lang="tr"] { --word-scale: 0.62; }
html[lang="tr"] .turkey-name { --word-scale: 0.48; }

/*
 * min-width:0 on every element neutralizes the default "flex/grid items
 * won't shrink below their content's intrinsic width" behavior — without
 * it, overflow-wrap/word-break do nothing for a long word inside any of
 * this page's many grid/flex containers, and the word just blows out the
 * layout instead of wrapping. A no-op for normal-flow elements (their
 * min-width:auto is already effectively 0), so this only ever helps.
 */
* { box-sizing: border-box; border-color: var(--line); min-width: 0; }
html { scroll-behavior: smooth; overflow-x: clip; background: var(--paper); }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: var(--font-sans); font-size: 19px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/*
 * Structural rhythm: every big statement on the page gets exactly one of
 * these three treatments, cycling left / right / center as you scroll down.
 * This replaces the old one-off magic-number offsets (52%, 33vw, 18%, ...)
 * with a single, predictable, reusable system.
 */
/*
 * max-width:100% matters here: an auto margin makes a flex/grid item size
 * to its own content (fit-content) instead of stretching to fill the
 * track, so an element with no max-width of its own (most of them) would
 * grow past its container for long enough text — this caps that.
 */
.beat-left { text-align: left; margin-left: 0; margin-right: auto; max-width: 100%; }
.beat-right { text-align: right; margin-left: auto; margin-right: 0; max-width: 100%; }
.beat-center { text-align: center; margin-left: auto; margin-right: auto; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 58px;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
  background: color-mix(in oklab, var(--paper) 93%, transparent);
  backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: .66rem;
  line-height: 1;
  text-transform: uppercase;
}
.wordmark { font-family: var(--font-display); font-size: .95rem; text-transform: lowercase; }
.site-nav { display: flex; gap: clamp(1rem, 2.4vw, 2.5rem); }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 1px; background: currentColor; transition: right .2s ease; }
.site-nav a:hover::after { right: 0; }
.lang-switch { display: flex; gap: .6em; padding-left: clamp(1rem, 2.4vw, 2.5rem); border-left: 1px solid var(--line); opacity: .6; }
.lang-switch a:hover { opacity: 1; }
.lang-current { font-weight: 700; text-decoration: underline; text-underline-offset: .25em; }

.pulse-dot { position: relative; display: inline-block; width: 5px; height: 5px; margin-right: .7em; border-radius: 50%; background: currentColor; vertical-align: 1px; }
.pulse-dot::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid currentColor; animation: pulse-ring 2.2s ease-out infinite; }
@keyframes pulse-ring {
  0% { transform: scale(.5); opacity: .8; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
.menu-toggle { display: none; height: auto; padding: 0; border: 0; background: transparent; box-shadow: none; font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; cursor: pointer; color: inherit; }

.onepager { overflow: clip; }
.opening {
  min-height: 100svh;
  padding: clamp(6.5rem, 10vh, 9rem) var(--page) clamp(1.5rem, 3vw, 3rem);
  display: grid;
  grid-template-rows: 1fr auto;
}
.opening-title {
  margin: 0;
  align-self: center;
  font-family: var(--font-display);
  font-size: calc(clamp(5.6rem, 17.5vw, 17.5rem) * var(--word-scale));
  line-height: .69;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
}
.opening-title > span { display: block; }
.opening-foot { display: flex; justify-content: space-between; align-items: end; gap: 2rem; font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; }
.opening-foot p { margin: 0; }
.opening-foot a { display: flex; gap: .7rem; }

.chapter { position: relative; padding: clamp(5rem, 9vw, 9rem) var(--page); scroll-margin-top: 56px; }
/*
 * Language safety net: nl/en copy was hand-fit to specific line breaks,
 * but tr (and any future language) can produce much longer single words
 * (Turkish agglutination) or different phrase lengths. overflow-wrap:
 * break-word only breaks a word when it truly doesn't fit — never
 * mid-word for normal text — so this never changes how nl/en render,
 * it just guarantees no language can ever overflow the viewport.
 */
.chapter, .opening, .site-header, .site-footer { overflow-wrap: break-word; }
.chapter-dark { background: var(--ink); color: var(--paper); }
.chapter-label { margin: 0 0 clamp(3rem, 6vw, 6rem); font-family: var(--font-mono); font-size: .65rem; font-weight: 500; text-transform: uppercase; }
.reading-copy { width: 100%; min-width: 0; max-width: var(--measure); font-family: var(--font-reading); font-size: clamp(1.02rem, 1.35vw, 1.22rem); line-height: 1.75; overflow-wrap: break-word; text-align: left; }
.reading-copy p { margin: 0 0 1.1em; }

.chapter-ferhat { min-height: 110svh; }
.ferhat-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: 6vw; align-items: start; }
.ferhat-grid h2, .year-copy h2, .father-intro h2, .faith-opening h2, .plans-opening h2, .why-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}
.ferhat-grid h2 { font-size: clamp(4.2rem, 10vw, 10rem); line-height: .82; }
.ferhat-copy { padding-top: 1rem; }
.ferhat-copy p:first-child { font-weight: 700; line-height: 1.4; }
.ferhat-statement { margin-top: clamp(8rem, 16vw, 18rem); max-width: 60rem; }
.ferhat-statement > p { margin: 0; font-family: var(--font-display); font-size: calc(clamp(3.8rem, 9.3vw, 10rem) * var(--word-scale)); line-height: .85; text-transform: uppercase; }
.ferhat-statement small { display: block; margin: 4rem 0 0; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; }

.chapter-build { border-top: 1px solid var(--line); }
.year-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr); gap: 4vw; }
.year-mark { margin: 0; font-family: var(--font-display); font-size: clamp(6rem, 19vw, 20rem); line-height: .69; }
.year-copy { padding-top: 1rem; }
.year-copy h2 { margin-bottom: 4rem; font-size: clamp(3.2rem, 5.8vw, 6.5rem); line-height: .88; }
.build-mantra { margin: clamp(6rem, 11vw, 12rem) calc(var(--page) * -1); font-family: var(--font-display); font-size: calc(clamp(3.3rem, 9vw, 9.5rem) * var(--word-scale)); line-height: .82; text-transform: uppercase; }
.build-mantra > span { display: block; padding: .08em var(--page); }
.career-flow { max-width: var(--measure); }

.chapter-events { min-height: 280svh; }
.event-statements { margin: 7rem 0 20rem; }
.event-statements p { max-width: 72rem; margin: 0 0 24vh; font-family: var(--font-display); font-size: calc(clamp(3.1rem, 8vw, 8rem) * var(--word-scale)); line-height: .88; text-transform: uppercase; }
.events-turn { max-width: 65rem; margin: 0 0 16rem; font-size: clamp(2.3rem, 5vw, 5rem); line-height: 1.08; }
.site-mantra { margin: 0; font-family: var(--font-display); font-size: calc(clamp(5.3rem, 16vw, 17rem) * var(--word-scale)); line-height: .72; text-transform: uppercase; overflow-wrap: break-word; }
.mantra-explained { max-width: 50rem; margin: 6rem auto 0; font-size: clamp(1.55rem, 3vw, 3rem); line-height: 1.25; text-align: left; }
.mantra-explained p { margin: .4em 0; }

.chapter-father { min-height: 150svh; }
.father-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .7fr); gap: 6vw; }
.father-intro h2 { font-size: clamp(4rem, 9vw, 9.5rem); line-height: .84; }
.life-question { margin: clamp(9rem, 17vw, 19rem) 0; max-width: 60rem; font-family: var(--font-display); font-size: calc(clamp(3.6rem, 9.5vw, 10rem) * var(--word-scale)); line-height: .84; text-transform: uppercase; }
.life-question > span { display: block; }
.for-whom { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6vw; font-size: clamp(1.2rem, 2vw, 1.8rem); }
.for-whom p { margin: .45em 0; }
.for-real { font-family: var(--font-display); font-size: calc(clamp(2.4rem, 4.6vw, 5rem) * var(--word-scale)); line-height: 1; }

.chapter-faith { border-top: 1px solid var(--line); min-height: 190svh; }
.faith-opening { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .65fr); gap: 6vw; }
.faith-opening h2 { font-size: clamp(4rem, 9vw, 9.5rem); line-height: .84; }
.direction-words { margin: clamp(8rem, 15vw, 16rem) 0; }
.direction-words p { margin: 0; font-family: var(--font-display); font-size: calc(clamp(4rem, 12vw, 12rem) * var(--word-scale)); line-height: .78; text-transform: uppercase; }
.direction-words p:last-child { margin-top: .6em; font-size: clamp(3rem, 8vw, 8rem); line-height: .86; }
.faith-close { max-width: var(--measure); }

.chapter-turkey { padding-top: clamp(8rem, 12vw, 12rem); }
.departure { min-height: 100svh; display: flex; justify-content: flex-start; align-items: center; }
.departure h2 { margin: 0; max-width: 60rem; font-family: var(--font-display); font-size: calc(clamp(5rem, 15vw, 15rem) * var(--word-scale)); font-weight: 400; line-height: .72; text-transform: uppercase; }
.departure h2 > span { display: block; }
.turkey-name { min-height: 85svh; margin: 0 calc(var(--page) * -1); padding: 22vh var(--page) 0; font-family: var(--font-display); font-size: calc(clamp(5rem, 18vw, 19rem) * var(--word-scale)); line-height: .72; text-transform: uppercase; overflow-wrap: break-word; }
.departure-facts { margin: 3rem 0 14rem; font-family: var(--font-display); font-size: calc(clamp(2.5rem, 5vw, 5.4rem) * var(--word-scale)); line-height: .96; }
.departure-facts p { margin: .2em 0; }
.turkey-story { max-width: var(--measure); }
.regret-statement { margin: clamp(9rem, 17vw, 19rem) 0; max-width: 65rem; font-family: var(--font-display); font-size: calc(clamp(4rem, 12vw, 13rem) * var(--word-scale)); line-height: .76; text-transform: uppercase; }
.regret-statement > span { display: block; }
.do-it { margin: 0; min-height: 60svh; display: flex; justify-content: flex-end; align-items: center; font-family: var(--font-display); font-size: calc(clamp(4rem, 10vw, 10rem) * var(--word-scale)); line-height: .82; text-transform: uppercase; }
.others { min-height: 90svh; display: flex; flex-direction: column; justify-content: space-between; padding: 15vh 0 10vh; }
.others p { max-width: 65rem; margin: 0 auto 0 0; font-size: calc(clamp(2.8rem, 7vw, 7rem) * var(--word-scale)); line-height: .96; }
.others small { align-self: flex-end; font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; }
.site-mantra-final { min-height: 60svh; display: flex; justify-content: flex-start; align-items: center; text-transform: lowercase; }

.chapter-plans { min-height: 170svh; }
.plans-opening { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .68fr); gap: 6vw; }
.plans-opening h2 { font-size: clamp(4rem, 9vw, 9rem); line-height: .84; }
.want-block { margin: clamp(8rem, 15vw, 16rem) 0; display: grid; grid-template-columns: .35fr 1fr; gap: 5vw; align-items: start; }
.want-label { margin: 0; position: sticky; top: 7rem; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; }
.want-block > div p { margin: 0; font-family: var(--font-display); font-size: calc(clamp(3rem, 7.2vw, 7.5rem) * var(--word-scale)); line-height: .87; text-transform: uppercase; }
.especially { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; }
.my-life { margin: 2.5rem 0 0; max-width: 60rem; font-family: var(--font-display); font-size: calc(clamp(3.8rem, 10vw, 10rem) * var(--word-scale)); line-height: .82; text-transform: uppercase; }
.my-life > span { display: block; }

.chapter-why { border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .65fr); gap: 6vw; }
.why-grid h2 { font-size: clamp(4rem, 9vw, 9.5rem); line-height: .84; }
.why-mantra { margin-top: clamp(8rem, 16vw, 18rem); }
.signature { margin: 6rem 0 0 auto; max-width: 38rem; text-align: left; font-family: var(--font-serif); font-size: clamp(2rem, 3.7vw, 4rem); font-style: italic; line-height: 1.1; }
.signature p:last-child { margin-top: 4rem; }

.chapter-now { min-height: 80svh; display: flex; flex-direction: column; }
.chapter-now .chapter-label { margin-bottom: auto; }

.timeline { margin: 4rem 0; padding: 0; list-style: none; }
.timeline-item {
  display: grid;
  grid-template-columns: minmax(9rem, .3fr) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-top: 1px solid color-mix(in oklab, var(--paper) 22%, transparent);
}
.timeline-item:last-child { border-bottom: 1px solid color-mix(in oklab, var(--paper) 22%, transparent); }
.timeline-date {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-reading);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  opacity: .7;
}
.timeline-text { margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.05; text-transform: uppercase; }
.timeline-next { padding: 2.3rem 0; }
.timeline-next .timeline-date { opacity: 1; font-weight: 500; }
.timeline-next .timeline-text { font-size: clamp(2.2rem, 5.2vw, 4.6rem); }

.now-updated { margin: auto 0 0; font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; }

/* Verhalen (blog): list + single post pages */
.chapter-verhalen-intro h1,
.chapter-verhalen-post h1 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: calc(clamp(3rem, 7vw, 6.5rem) * var(--word-scale));
  line-height: .88;
  text-transform: uppercase;
}
.chapter-verhalen-post .chapter-label a { border-bottom: 1px solid currentColor; }
.chapter-verhalen-post .chapter-label a:hover { opacity: .7; }

.post-list { margin: 0; padding: 0; list-style: none; }
.post-item {
  display: grid;
  grid-template-columns: minmax(9rem, .3fr) 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.post-item:last-child { border-bottom: 1px solid var(--line); }
.post-date { margin: .4em 0 0; font-family: var(--font-reading); font-size: .8rem; text-transform: uppercase; letter-spacing: .02em; opacity: .65; }
.post-title { margin: 0 0 .6rem; font-family: var(--font-display); font-size: calc(clamp(1.6rem, 3.2vw, 2.6rem) * var(--word-scale)); line-height: 1.05; text-transform: uppercase; }
.post-title a { display: block; }
.post-title a:hover { text-decoration: underline; text-underline-offset: .18em; }
.post-excerpt { margin: 0; max-width: var(--measure); font-family: var(--font-reading); font-size: 1rem; line-height: 1.65; opacity: .85; }
.post-categories { margin: .4em 0 0; font-family: var(--font-reading); font-size: .75rem; text-transform: uppercase; letter-spacing: .02em; opacity: .55; }

.chapter-verhalen-post .post-categories { margin: -1rem 0 2rem; }

.post-body h2, .post-body h3 { margin: 2em 0 .6em; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 1.05; }
.post-body h2 { font-size: calc(clamp(1.6rem, 3vw, 2.4rem) * var(--word-scale)); }
.post-body h3 { font-size: calc(clamp(1.3rem, 2.2vw, 1.8rem) * var(--word-scale)); }
.post-body strong { font-weight: 700; }
.post-body blockquote { margin: 1.6em 0; max-width: 34rem; font-family: var(--font-serif); font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic; line-height: 1.25; }
.post-body blockquote p { margin: 0; }
.post-body a { border-bottom: 1px solid currentColor; }
.post-body a:hover { opacity: .7; }

.post-next-label { margin: 4rem 0 0; font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; opacity: .6; }
.post-next { margin: .6rem 0 0; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; text-transform: uppercase; }
.post-next a:hover { text-decoration: underline; text-underline-offset: .18em; }

.site-footer { min-height: 35svh; padding: clamp(3rem, 6vw, 6rem) var(--page) 2rem; display: flex; flex-direction: column; justify-content: flex-end; background: var(--paper); }
.footer-top { padding-top: 1.3rem; }
.footer-wordmark { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; }
.footer-top p { margin: 1rem 0 0; font-size: .92rem; }
.footer-note { margin-top: 3rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; font-family: var(--font-mono); font-size: .6rem; text-transform: uppercase; }
.footer-note p { margin: 0; }

/*
 * break-word (not the parent's occasional overflow-wrap:anywhere, and not
 * a flat "normal") — never breaks a word that fits, but still lets a
 * genuinely-too-long word (long Turkish compounds) wrap as a last resort
 * instead of overflowing the viewport.
 */
.kw { opacity: .26; overflow-wrap: break-word; word-break: normal; white-space: normal; transition: opacity .35s ease; }
.kw-lit { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .pulse-dot::after { animation: none; opacity: 0; }
}

.not-found { min-height: 100svh; padding: 9rem var(--page) 4rem; display: flex; flex-direction: column; justify-content: center; }
.not-found .chapter-label { margin-bottom: 3rem; }
.not-found h1 { max-width: 70rem; margin: 0; font-family: var(--font-display); font-size: calc(clamp(4rem, 10vw, 10rem) * var(--word-scale)); font-weight: 400; line-height: .82; text-transform: uppercase; }
.not-found > p:not(.chapter-label) { font-size: 1.3rem; }
.not-found > a, .error-actions a { width: fit-content; border-bottom: 1px solid currentColor; font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; }
.error-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }
.error-actions button { border-radius: 0; }

@media (prefers-reduced-motion: no-preference) {
  .opening-title > span { animation: title-in .8s cubic-bezier(.2,.7,.2,1) both; }
  .opening-title > span:nth-child(2) { animation-delay: .08s; }
  .opening-title > span:nth-child(3) { animation-delay: .16s; }
  .reveal { animation: section-in linear both; animation-timeline: view(); animation-range: entry 0% entry 18%; }
  @keyframes title-in { from { opacity: 0; transform: translateY(.3em); } to { opacity: 1; transform: translateY(0); } }
  @keyframes section-in { from { opacity: .5; transform: translateY(2rem); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 760px) {
  /*
   * Mobile always reads left-to-right, flush left — no alternating rhythm.
   * At this width, right/center-aligned multi-line headlines wrap
   * unpredictably and get hard to scan, so every beat resets to left.
   */
  .beat-left, .beat-right, .beat-center {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
  .departure, .do-it, .site-mantra-final { justify-content: flex-start; }

  :root { --page: clamp(1.5rem, 6.2vw, 2rem); }
  body { font-size: 18px; }
  .site-header { min-height: 54px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem var(--page) 1.15rem; grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 1rem .5rem; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.is-open { display: grid; }
  .site-nav a { font-size: .56rem; }
  .lang-switch { grid-column: 1 / -1; padding: .75rem 0 0; margin-top: .25rem; border-left: 0; border-top: 1px solid var(--line); }
  .opening { min-height: 100svh; padding-top: 6rem; }
  .opening-title { font-size: calc(clamp(5.5rem, 29vw, 8.4rem) * var(--word-scale)); line-height: .69; }
  .opening-foot { align-items: end; font-size: .54rem; }
  .opening-foot p { max-width: 11rem; }
  .chapter { padding-top: 8rem; padding-bottom: 8rem; }
  .chapter-label { margin-bottom: 5rem; }
  .ferhat-grid, .year-layout, .father-intro, .faith-opening, .plans-opening, .why-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }
  .ferhat-grid > *, .year-layout > *, .father-intro > *, .faith-opening > *, .plans-opening > *, .why-grid > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .ferhat-grid h2, .father-intro h2, .faith-opening h2, .plans-opening h2, .why-grid h2 {
    font-size: clamp(3.1rem, 14.2vw, 5rem);
    overflow-wrap: break-word;
    word-break: normal;
  }
  .plans-opening h2 { font-size: 12vw; }
  .chapter-ferhat { min-height: auto; }
  .ferhat-statement { margin-top: 8rem; max-width: 100%; }
  .ferhat-statement > p { font-size: calc(clamp(2.85rem, 13vw, 4.65rem) * var(--word-scale)); overflow-wrap: break-word; }
  .ferhat-statement small { margin-top: 3rem; }
  .year-mark { font-size: 30vw; }
  .year-copy h2 { font-size: 15vw; }
  .build-mantra { margin-top: 6rem; margin-bottom: 6rem; font-size: calc(clamp(2.2rem, 10.4vw, 4.1rem) * var(--word-scale)); }
  .build-mantra > span { padding-top: .18em; padding-bottom: .18em; overflow-wrap: break-word; word-break: normal; }
  .chapter-events { min-height: auto; }
  .event-statements { margin: 5rem 0 10rem; }
  .event-statements p { margin-bottom: 18vh; font-size: calc(clamp(2.7rem, 13.5vw, 4.7rem) * var(--word-scale)); }
  .events-turn { margin-bottom: 8rem; font-size: 9vw; }
  .site-mantra { font-size: calc(21vw * var(--word-scale)); }
  .mantra-explained { margin-top: 4rem; font-size: 1.55rem; }
  .chapter-father, .chapter-faith, .chapter-plans { min-height: auto; }
  .life-question { margin: 8rem 0; font-size: calc(13.5vw * var(--word-scale)); max-width: 100%; }
  .for-whom { grid-template-columns: 1fr; gap: 4rem; }
  .direction-words { margin: 8rem 0; }
  .direction-words p { font-size: calc(11vw * var(--word-scale)); line-height: .84; overflow-wrap: break-word; word-break: normal; }
  .direction-words p:last-child { max-width: 100%; font-size: 8.2vw; }
  .departure { min-height: 70svh; }
  .departure h2 { width: 100%; min-width: 0; max-width: 100%; font-size: calc(16.5vw * var(--word-scale)); }
  .turkey-name {
    min-height: 70svh;
    padding-top: 15vh;
    font-size: calc(17vw * var(--word-scale));
    overflow-wrap: break-word;
    word-break: normal;
  }
  .departure-facts { margin: 2rem 0 6rem; font-size: calc(10vw * var(--word-scale)); }
  .regret-statement { margin: 8rem 0; font-size: calc(15vw * var(--word-scale)); max-width: 100%; }
  .do-it { min-height: 50svh; font-size: calc(17vw * var(--word-scale)); }
  .others { min-height: 70svh; }
  .others p { font-size: calc(11.5vw * var(--word-scale)); }
  .want-block { margin: 6rem 0; grid-template-columns: 1fr; gap: 3rem; }
  .want-label { position: static; }
  .want-block > div p { font-size: calc(10.5vw * var(--word-scale)); overflow-wrap: break-word; word-break: normal; }
  .my-life { font-size: calc(13vw * var(--word-scale)); max-width: 100%; }
  .why-mantra { margin-top: 8rem; }
  .signature { margin-top: 5rem; font-size: 2.2rem; }
  .chapter-now { min-height: 60svh; }
  .timeline { margin: 2.5rem 0; }
  .timeline-item, .timeline-next { grid-template-columns: 1fr; gap: .6rem; padding: 1.3rem 0; }
  .timeline-text { font-size: 8vw; }
  .timeline-next .timeline-text { font-size: 9.5vw; }
  .post-item { grid-template-columns: 1fr; gap: .8rem; padding: 1.6rem 0; }
  .site-footer { min-height: 30svh; padding-top: 4rem; }
  .footer-note { flex-direction: column; gap: .35rem; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .opening-title { font-size: calc(17vw * var(--word-scale)); }
  .ferhat-grid, .year-layout, .father-intro, .faith-opening, .plans-opening, .why-grid { grid-template-columns: 1fr; gap: 5rem; }
  .turkey-name { font-size: calc(14vw * var(--word-scale)); overflow-wrap: break-word; word-break: normal; }
}

