:root {
  --gold: #c8a24a;
  --gold-bright: #e7cb83;
  --gold-deep: #7a6020;
  --gold-soft: #f0e6c9;
  --gold-line: rgba(200, 162, 74, .34);
  --gold-grad: linear-gradient(135deg, #efdca2 0%, #d7b461 28%, #c8a24a 52%, #9a7a2c 100%);
  --gold-ink: #2a2113;
  --ink: #3c3835;
  --ink-2: #5a544f;
  --muted: #6b625a;
  --paper: #f8f4ea;
  --paper-2: #f1e9d8;
  --paper-3: #eae0cc;
  --cream: #fcfaf3;
  --white: #fff;
  --espresso: #16120e;
  --espresso-2: #211b15;
  --espresso-3: #2c241c;
  --line: rgba(60, 56, 53, .12);
  --line-strong: rgba(60, 56, 53, .2);
  --line-light: rgba(255, 255, 255, .12);
  --display: "Bricolage Grotesque", "Avenir Next", "Gill Sans", sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  --app: 900px;
  --radius-sm: 4px;
  --radius: 7px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(40, 32, 18, .05), 0 6px 18px rgba(40, 32, 18, .06);
  --shadow-md: 0 10px 30px rgba(40, 32, 18, .1), 0 26px 60px rgba(40, 32, 18, .1);
  --shadow-lg: 0 24px 70px rgba(28, 22, 12, .2), 0 50px 130px rgba(28, 22, 12, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  background: var(--paper-3);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  inset: .75rem auto auto .75rem;
  z-index: 400;
  padding: .65rem .9rem;
  color: var(--espresso);
  background: var(--gold-bright);
  border-radius: var(--radius-sm);
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.5rem;
  background: var(--gold-grad);
  transition: opacity .45s var(--ease), visibility .45s;
}

.loading-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-screen img { width: 92px; height: 92px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(42, 33, 19, .18)); }
.loading-screen__line { width: 92px; height: 2px; overflow: hidden; background: rgba(42, 33, 19, .18); }
.loading-screen__line::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--espresso);
  animation: load 1s ease-in-out infinite alternate;
}

@keyframes load { to { transform: translateX(100%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-height: 62px;
  padding: .55rem 1rem;
  background: rgba(248, 244, 234, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: .7rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; flex: none; object-fit: contain; }
.brand span { display: grid; min-width: 0; line-height: 1.1; }
.brand strong { font-family: var(--display); font-size: .98rem; font-weight: 600; }
.brand small {
  max-width: 190px;
  margin-top: .22rem;
  overflow: hidden;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 38px;
  padding: .25rem .55rem .25rem .28rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 600;
}

.language-button__flag {
  width: 32px;
  height: 22px;
  padding: 1px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}

.language-button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.language-button__chevron { width: 12px !important; color: var(--muted); }

main { min-height: calc(100dvh - 62px); overflow: clip; }
.home-view, .detail-view { animation: view-in .48s var(--ease) both; }

@keyframes view-in {
  from { opacity: 0; transform: translateY(9px); }
}

.hero {
  position: relative;
  min-height: 0;
  padding: clamp(2.2rem, 7vw, 3.8rem) 1.1rem 1.5rem;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(200, 162, 74, .12), transparent 16rem),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  top: 2.2rem;
  right: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  opacity: .7;
}

.hero__content { position: relative; z-index: 2; }
.hero h1 {
  max-width: 15ch;
  color: var(--ink);
  font-size: clamp(2.2rem, 9vw, 3.55rem);
}
.hero__content > p {
  max-width: 38ch;
  margin-top: 1rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 3vw, 1.22rem);
  line-height: 1.6;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.4rem;
}
.hero__stats span { display: flex; align-items: baseline; gap: .3rem; }
.hero__stats strong { color: var(--gold-deep); font-family: var(--display); font-size: 1.2rem; }
.hero__stats small { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__stats i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.hero__drop { display: none; }

.progress-card {
  width: calc(100% - 2.2rem);
  margin: .25rem auto 0;
  padding: .9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.progress-card > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.progress-card__label { color: var(--muted); font-family: var(--display); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.progress-card strong { color: var(--ink); font-family: var(--display); font-size: .9rem; direction: ltr; unicode-bidi: isolate; }
.progress-track { height: 4px; margin-top: .65rem; overflow: hidden; background: var(--paper-3); border-radius: 99px; }
.progress-track i { display: block; width: 0; height: 100%; background: var(--gold-grad); transition: width .45s var(--ease); }

.journey { width: 100%; padding: 2.5rem 1rem 3.5rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.section-heading h2 { margin-top: 0; font-size: clamp(1.65rem, 6vw, 2.1rem); }
.section-heading__count { color: var(--gold-deep); font-family: var(--display); font-size: .88rem; }

.section-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: .72rem; }
.section-list::before, .section-card__node { display: none; }

.section-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 32px;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-width: 0;
  min-height: 100px;
  padding: .45rem .6rem .45rem .45rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}

.section-card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.section-card.is-complete { border-color: rgba(122, 96, 32, .38); }
.section-card__image {
  width: 104px;
  height: 86px;
  object-fit: cover;
  background: var(--paper-3);
  border-radius: var(--radius-sm);
  transition: transform .7s var(--ease);
}
.section-card:hover .section-card__image { transform: scale(1.035); }
.section-card__copy { min-width: 0; padding: .35rem .15rem; }
.section-card__number {
  display: block;
  margin-bottom: .3rem;
  padding: 0;
  color: var(--gold-deep);
  background: transparent;
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-card.is-complete .section-card__number::after { content: " ✓"; color: var(--gold-deep); }
.section-card__title { display: block; font-family: var(--display); font-size: 1.04rem; font-weight: 600; line-height: 1.18; }
.section-card__meta { display: block; margin-top: .35rem; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.section-card__arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--gold-deep);
  background: var(--paper-2);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}
.section-card__arrow svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.detail-view {
  min-height: 100dvh;
  padding-bottom: 154px;
  animation: detail-fade .4s var(--ease) both;
}
@keyframes detail-fade { from { opacity: 0; } }
.detail-hero {
  position: relative;
  height: clamp(180px, 48vw, 230px);
  overflow: hidden;
  background: var(--espresso);
}
.detail-hero > img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__wash { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16, 18, 14, .9) 4%, rgba(16, 18, 14, .25) 54%, rgba(16, 18, 14, .1)); }
.round-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.round-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.detail-back {
  position: absolute;
  z-index: 4;
  top: .75rem;
  inset-inline-start: .75rem;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(22, 18, 14, .58);
  border-color: var(--line-light);
  backdrop-filter: blur(6px);
}
.detail-hero__number {
  display: block;
  margin-bottom: .35rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
  text-transform: uppercase;
}
.detail-hero__cap { position: absolute; z-index: 3; inset: auto 1.1rem .9rem; }
.detail-hero__cap h1 {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(1.65rem, 7vw, 2.45rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, .25);
}

.detail-content { width: 100%; padding: 0 1.1rem 4rem; }

.player {
  position: fixed;
  z-index: 70;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(100%, var(--app));
  margin: 0;
  padding: .8rem 1rem max(.75rem, env(safe-area-inset-bottom));
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--espresso-3), var(--espresso-2));
  border: 1px solid rgba(231, 203, 131, .16);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}
.player::after { content: none; }
.player__topline, .player__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.player__label { color: var(--gold-bright); font-family: var(--display); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.player__time { color: rgba(255, 255, 255, .6); font-size: .7rem; font-variant-numeric: tabular-nums; direction: ltr; unicode-bidi: isolate; }
.player__scrubber { display: block; width: 100%; padding: .55rem 0; background: transparent; border: 0; cursor: pointer; }
.player__scrubber > span { display: block; height: 4px; overflow: hidden; background: rgba(255, 255, 255, .13); border-radius: 99px; }
.player__scrubber i { display: block; width: 0; height: 100%; background: var(--gold-grad); transition: width .2s linear; }
.player__controls { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.player__side { width: 40px; height: 40px; color: #fff; background: transparent; border-color: var(--line-light); }
.player__side:disabled { opacity: .25; cursor: default; }
.player__play {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: var(--gold-ink);
  background: var(--gold-grad);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(200, 162, 74, .34);
  cursor: pointer;
  transition: transform .25s;
}
.player__play:hover { transform: scale(1.04); }
.player__play svg { grid-area: 1 / 1; width: 24px; fill: currentColor; }
.player__play .icon-pause { display: none; }
.player__play.is-playing .icon-play { display: none; }
.player__play.is-playing .icon-pause { display: block; }
.player__foot { margin-top: .55rem; color: rgba(255, 255, 255, .52); font-size: .66rem; }
.player__foot button { padding: .22rem .48rem; color: #fff; background: rgba(255, 255, 255, .07); border: 1px solid var(--line-light); border-radius: var(--radius-sm); cursor: pointer; font-size: .68rem; }

.complete-button {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  margin-top: 1rem;
  padding: .85rem .9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: start;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 600;
}
.complete-button__check { display: grid; place-items: center; width: 27px; height: 27px; flex: none; color: var(--gold-deep); background: var(--paper); border: 1px solid var(--gold-line); border-radius: 50%; }
.complete-button__check svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.complete-button:not(.is-complete) .complete-button__check svg { opacity: 0; }
.complete-button.is-complete { color: var(--gold-deep); border-color: var(--gold-line); background: var(--gold-soft); }
.complete-button.is-complete .complete-button__check { color: var(--cream); background: var(--gold-deep); }

.completion-panel {
  margin-top: 1rem;
  padding: 1.35rem;
  color: var(--cream);
  background: linear-gradient(145deg, var(--espresso-2), var(--espresso-3));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.completion-panel[hidden] { display: none; }
.completion-panel__eyebrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .85rem;
  color: var(--gold-ink);
  background: var(--gold-grad);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
}
.completion-panel h2 { color: #fff; font-size: 1.45rem; }
.completion-panel p { margin-top: .45rem; color: rgba(255, 255, 255, .68); font-family: var(--serif); line-height: 1.55; }
.completion-panel__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.1rem; }
.completion-panel__actions a,
.completion-panel__actions button {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: .7rem .8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.completion-panel__survey { color: var(--gold-ink); background: var(--gold-grad); border: 1px solid transparent; }
.completion-panel__home { color: #fff; background: transparent; border: 1px solid var(--line-light); }

.transcript-block { margin-top: 0; border-top: 0; border-bottom: 1px solid var(--line); }
.transcript-block__toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 0; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-family: var(--display); font-weight: 600; }
.transcript-block__toggle > span { display: inline-flex; align-items: center; gap: .55rem; }
.transcript-block__toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.transcript-block__chevron { transition: transform .25s; }
.transcript-block__toggle[aria-expanded="true"] .transcript-block__chevron { transform: rotate(180deg); }
.transcript-block__body { padding: .3rem 0 1.5rem; }
.transcript-block__body p { color: var(--muted); font-family: var(--serif); font-size: 1.16rem; line-height: 1.75; }

.section-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 2rem; }
.section-nav button { min-height: 104px; padding: .9rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; text-align: start; }
.section-nav button:last-child { text-align: end; }
.section-nav button:disabled { opacity: .35; cursor: default; }
.section-nav span { display: block; margin-bottom: .4rem; color: var(--gold-deep); font-family: var(--display); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.section-nav strong { display: block; font-family: var(--display); font-size: .9rem; line-height: 1.2; }

.language-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: stretch center; overflow: hidden; }
.language-modal[hidden] { display: none; }
.language-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, .58);
  border: 0;
  backdrop-filter: blur(10px);
}
.language-sheet {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  height: 100dvh;
  padding: max(1.4rem, env(safe-area-inset-top)) 1.15rem max(1.4rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  color: var(--gold-ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(200, 162, 74, .18), transparent 20rem),
    var(--paper);
  animation: splash-in .45s var(--ease) both;
}
@keyframes splash-in { from { opacity: 0; transform: scale(.985); } }
.language-sheet__handle { display: none; }
.language-sheet__logo {
  width: 54px;
  height: 54px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(42, 33, 19, .1));
}
.language-sheet__heading {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding-inline: 2.75rem;
  text-align: center;
}
.language-sheet__heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.05;
}
.language-sheet__heading p { margin-top: .45rem; color: var(--muted); font-size: .78rem; }
.language-sheet__heading .round-button {
  position: absolute;
  top: -4.25rem;
  inset-inline-end: -.25rem;
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
  border-color: var(--line);
}
.language-grid { display: grid; gap: .55rem; margin-top: 1.45rem; padding-bottom: 1rem; direction: ltr; }
.language-choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 60px;
  padding: .58rem .68rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s;
}
.language-choice:hover { transform: translateY(-1px); background: var(--cream); border-color: var(--gold-line); }
.language-choice[aria-pressed="true"] {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.language-choice__flag {
  width: 44px;
  height: 30px;
  padding: 1px;
  flex: none;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}
.language-choice__copy { flex: 1; min-width: 0; padding-inline-end: .6rem; }
.language-choice strong { display: block; font-family: var(--display); font-size: .92rem; line-height: 1.15; text-align: left; }
.language-choice small { display: block; margin-top: .16rem; color: var(--muted); font-size: .64rem; line-height: 1.2; text-align: left; }
.language-choice__check {
  position: absolute;
  inset-inline-end: .7rem;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  background: var(--gold-deep);
  border-radius: 50%;
  opacity: 0;
}
.language-choice[aria-pressed="true"] .language-choice__check { opacity: 1; }

.toast {
  position: fixed;
  z-index: 250;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: .72rem 1rem;
  color: #fff;
  background: var(--espresso);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: .76rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

html[dir="rtl"] { text-align: right; }
html[dir="rtl"] .section-card__arrow svg,
html[dir="rtl"] .detail-back svg,
html[dir="rtl"] #previous-section svg,
html[dir="rtl"] #next-section svg { transform: scaleX(-1); }

@media (min-width: 600px) {
  body { background: var(--paper-3); }
  .site-header, main {
    width: 100%;
    max-width: var(--app);
    margin-inline: auto;
  }
  main { background: var(--paper); box-shadow: 0 0 0 1px var(--line), var(--shadow-md); }
  .site-header { box-shadow: 0 0 0 1px var(--line); }
}

@media (max-width: 380px) {
  .brand small { max-width: 116px; }
  .language-button > #active-language-label { display: none; }
  .section-card { grid-template-columns: 88px minmax(0, 1fr) 28px; gap: .45rem; }
  .section-card__image { width: 88px; height: 76px; }
  .section-card__title { font-size: .93rem; }
  .section-card__arrow { width: 27px; height: 27px; }
}

@media (min-width: 700px) {
  .site-header { min-height: 72px; padding-inline: 1.6rem; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.08rem; }
  .brand small { max-width: none; font-size: .66rem; }
  .language-button { min-height: 43px; padding-inline-end: .75rem; font-size: .82rem; }

  .hero { padding: 4rem clamp(2.2rem, 6vw, 4.2rem) 2.4rem; }
  .hero::after { width: 240px; height: 240px; right: -75px; }
  .hero__content { max-width: 650px; }
  .hero h1 { font-size: clamp(3.2rem, 7vw, 5.1rem); }
  .hero__content > p { max-width: 48ch; font-size: 1.28rem; }
  .progress-card { width: calc(100% - clamp(4.4rem, 12vw, 8.4rem)); padding: 1rem 1.2rem; }

  .journey { max-width: 780px; margin-inline: auto; padding: 3.4rem 2rem 5rem; }
  .section-heading { margin-bottom: 1.25rem; }
  .section-heading h2 { font-size: 2.5rem; }
  .section-card {
    grid-template-columns: 154px minmax(0, 1fr) 42px;
    min-height: 124px;
    gap: 1rem;
    padding: .55rem .85rem .55rem .55rem;
  }
  .section-card__image { width: 154px; height: 108px; border-radius: var(--radius-sm); }
  .section-card__copy { padding-inline: .3rem; }
  .section-card__number { font-size: .68rem; }
  .section-card__title { font-size: 1.24rem; }
  .section-card__meta { font-size: .76rem; }
  .section-card__arrow { width: 38px; height: 38px; }

  .detail-hero { height: clamp(220px, 28vw, 270px); }
  .detail-hero__cap { inset-inline: clamp(2rem, 6vw, 4rem); bottom: 1.25rem; }
  .detail-hero__cap h1 { font-size: clamp(2.35rem, 5vw, 3.35rem); }
  .detail-content { max-width: 720px; margin-inline: auto; padding: 0 2rem 5rem; }

  .language-modal { place-items: center; padding: 1.5rem; }
  .language-sheet {
    display: block;
    width: min(100%, 820px);
    height: auto;
    max-height: min(92dvh, 820px);
    padding: 2.1rem;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .language-sheet__logo { width: 62px; height: 62px; }
  .language-sheet__heading { max-width: 560px; margin: 1rem auto 0; }
  .language-sheet__heading h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
  .language-sheet__heading .round-button { top: -5.2rem; inset-inline-end: -5.5rem; }
  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    padding: 0;
  }
  .language-choice { min-height: 62px; }
}

@media (min-width: 850px) {
  .language-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .language-choice { min-width: 0; }
  .language-choice strong,
  .language-choice small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
