:root {
  --blue: #0055c8;
  --blue-dark: #062f70;
  --blue-ink: #071b3d;
  --gold: #f3b719;
  --red: #c9342a;
  --green: #277653;
  --leaf: #e7f1e6;
  --paper: #fbf7ed;
  --warm: #efe0c6;
  --white: #ffffff;
  --muted: #5c6574;
  --line: rgba(7, 27, 61, 0.14);
  --shadow: 0 24px 70px rgba(7, 27, 61, 0.18);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--blue-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  display: grid;
  grid-template-columns: 196px 1fr auto;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 7px clamp(18px, 5vw, 78px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 196px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  min-width: 0;
  color: var(--blue-dark);
  font-size: clamp(0.82rem, 0.78vw, 0.88rem);
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover {
  border-bottom-color: var(--gold);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 900;
}

.language-switch a {
  padding: 4px;
  color: var(--blue-dark);
  text-decoration: none;
}

.language-switch a.active {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}

.mobile-break {
  display: none;
}

main > section,
.site-footer {
  scroll-margin-top: 82px;
  padding: clamp(54px, 6.2vw, 92px) clamp(20px, 5vw, 80px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  overflow: hidden;
  background: #fbf7ed;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 247, 237, 0.98) 0%, rgba(251, 247, 237, 0.93) 24%, rgba(251, 247, 237, 0.42) 43%, rgba(251, 247, 237, 0.06) 68%),
    linear-gradient(180deg, rgba(251, 247, 237, 0.18) 0%, rgba(251, 247, 237, 0) 54%, rgba(251, 247, 237, 0.2) 100%);
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(42px, 7vw, 96px);
  background:
    linear-gradient(155deg, transparent 52%, rgba(39, 118, 83, 0.28) 52% 64%, transparent 64%),
    linear-gradient(170deg, transparent 40%, rgba(243, 183, 25, 0.28) 40% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0%, rgba(251, 247, 237, 0.95) 84%);
}

.hero-copy,
.section-copy,
.copy-stack {
  max-width: 690px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  align-self: center;
}

.section-kicker,
.location-line {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 1rem;
  text-transform: none;
}

.location-line::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 50% 76%, 18% 100%, 0 38%);
}

h1,
h2 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.55rem, 4.25vw, 4.35rem);
  overflow-wrap: break-word;
}

html[lang="vi"] .hero h1 {
  font-size: clamp(2.25rem, 3.3vw, 3.35rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.6rem);
}

p {
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.25vw, 1.17rem);
}

.lead {
  color: var(--green);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 850;
}

.hero-subheadline {
  margin: 22px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1.14;
}

.age-line {
  display: inline-block;
  margin: 22px 0 0;
  padding: 0;
  background: transparent;
  border-left: 0;
  color: var(--blue-dark);
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  font-weight: 900;
}

.format-line {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 950;
  line-height: 1.25;
}

.promise-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--blue-dark);
  font-size: clamp(1.12rem, 1.65vw, 1.46rem);
  font-weight: 900;
  line-height: 1.22;
  list-style: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 24px;
  padding: 14px 20px;
  border: 2px solid var(--blue-dark);
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(6, 47, 112, 0.22);
}

.hero .button {
  display: flex;
  width: max-content;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hero-actions .button,
.section-actions .button {
  margin-top: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.button.secondary {
  background: var(--gold);
  color: #251b00;
  border-color: #c78d00;
}

.hero-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
}

.hero-caption {
  display: none;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(420px, 0.6fr);
  gap: clamp(50px, 7vw, 118px);
  align-items: center;
  max-width: 1760px;
  margin-inline: auto;
  background: var(--white);
  border-bottom: 0;
}

.story-section:nth-of-type(odd) {
  background: var(--paper);
  grid-template-columns: minmax(420px, 0.6fr) minmax(300px, 0.4fr);
}

.story-heading {
  max-width: 680px;
}

.story-heading p {
  max-width: 620px;
  color: var(--blue-ink);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.story-body {
  max-width: 880px;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-label::before {
  content: "";
  width: 38px;
  height: 4px;
  background: var(--gold);
}

.anchor-marker {
  position: absolute;
  top: 0;
}

.story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.value-photo img {
  object-position: 66% 48%;
}

.safety-photo img,
.help-photo img {
  min-height: 520px;
  object-position: 48% 50%;
}

.value-list,
.simple-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin-top: 32px;
}

.value-list li,
.simple-list li {
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.28;
}

.value-list li {
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(39, 118, 83, 0.48);
  font-size: clamp(0.98rem, 1.22vw, 1.1rem);
}

.plain-note {
  margin-top: 30px;
  color: var(--blue-dark);
  font-weight: 850;
}

div.plain-note {
  display: grid;
  gap: 8px;
}

.plain-note p,
.plain-note {
  font-size: clamp(1.02rem, 1.18vw, 1.12rem);
}

.plain-note p {
  margin: 0;
}

.supporting-line {
  max-width: 760px;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: clamp(0.94rem, 1.04vw, 1.02rem);
  font-weight: 760;
}

.photo-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-moments li {
  display: grid;
  align-content: start;
}

.photo-moments img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 6px;
}

.photo-moments li:first-child img {
  object-position: 42% 52%;
}

.photo-moments li:nth-child(2) img {
  object-position: 52% 52%;
}

.photo-moments li:nth-child(3) img {
  object-position: 78% 48%;
}

.photo-moments strong {
  margin-top: 18px;
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-moments span {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-size: clamp(1.02rem, 1.38vw, 1.22rem);
  font-weight: 900;
  line-height: 1.24;
}

.day-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-list li {
  display: grid;
  grid-template-columns: minmax(100px, 0.22fr) minmax(0, 0.78fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.day-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.day-list strong {
  color: var(--red);
  font-size: 0.98rem;
  line-height: 1.25;
}

.day-list span {
  color: var(--blue-dark);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 900;
  line-height: 1.24;
}

.simple-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 38px;
}

.simple-blocks article {
  padding-left: 20px;
  border-left: 1px solid rgba(39, 118, 83, 0.55);
}

.simple-blocks h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.18;
}

.simple-blocks p,
.compact-copy p {
  max-width: 760px;
}

.simple-blocks p {
  margin-top: 8px;
}

.compact-copy {
  margin-top: 34px;
}

.compact-copy p {
  margin-top: 12px;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin-bottom: 26px;
}

.two-column-list li {
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(243, 183, 25, 0.88);
}

.format-section,
.take-home-section,
.intro-section,
.split-section,
.idea-section,
.audience-band,
.involved-section,
.about-section,
.contact-section,
.disclaimer-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(360px, 0.58fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
  max-width: 1760px;
  margin-inline: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.take-home-section,
.split-section,
.audience-band {
  grid-template-columns: minmax(360px, 0.58fr) minmax(280px, 0.42fr);
}

.idea-section,
.involved-section,
.disclaimer-section {
  background: var(--leaf);
}

.about-section {
  grid-template-columns: minmax(320px, 0.54fr) minmax(280px, 0.46fr);
  align-items: center;
  border-bottom: 0;
}

.format-section,
.intro-section,
.split-section,
.involved-section,
.contact-section {
  background: var(--white);
}

.take-home-section,
.idea-section,
.audience-band,
.disclaimer-section {
  background: var(--paper);
}

.idea-section > :first-child,
.disclaimer-section > :first-child {
  order: 2;
}

.idea-section > :last-child,
.disclaimer-section > :last-child {
  order: 1;
}

.format-schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.format-schedule li {
  min-height: 0;
  padding: 22px 24px;
  background: rgba(231, 241, 230, 0.72);
  border-bottom: 1px solid var(--line);
}

.format-schedule li:last-child {
  border-bottom: 0;
}

.format-schedule strong,
.format-schedule span {
  display: block;
}

.format-schedule strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.format-schedule span {
  margin-top: 12px;
  color: var(--blue-ink);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.4;
}

.take-home-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.take-home-list li {
  min-height: 76px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 6px;
  color: var(--blue-dark);
  font-weight: 850;
  line-height: 1.25;
}

.check-list,
.compact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li,
.compact-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  color: var(--blue-ink);
  font-size: 1.01rem;
}

.check-list li::before,
.compact-list li::before {
  content: "";
  margin-top: 0.32em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 3px solid var(--blue-dark);
}

.note {
  margin-top: 28px;
  padding: 0 0 0 20px;
  background: transparent;
  border-left: 4px solid var(--green);
  border-radius: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.outcome-panel {
  padding: clamp(24px, 3.2vw, 34px);
  background: var(--leaf);
  border: 1px solid rgba(39, 118, 83, 0.16);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  color: var(--blue-ink);
}

.value-side {
  display: grid;
  gap: 18px;
}

.outcome-panel p {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.outcome-panel strong {
  display: block;
  max-width: 620px;
  color: var(--blue-dark);
  font-size: clamp(1.28rem, 2.15vw, 1.9rem);
  line-height: 1.16;
}

.outcome-panel span {
  display: block;
  margin-top: 22px;
  color: var(--blue-ink);
  font-size: 1.04rem;
}

.certificate-panel {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
}

.certificate-panel h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.certificate-panel .compact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-note,
.parent-disclaimer {
  color: var(--blue-dark);
  font-weight: 800;
}

.certificate-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.narrow {
  max-width: 760px;
}

.learning-path {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.learning-path li {
  counter-increment: path;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(7, 27, 61, 0.12);
  color: var(--blue-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 900;
}

.learning-path li:last-child {
  border-bottom: 0;
}

.learning-path li::before {
  content: counter(path);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  font-size: 1rem;
}

.audience-band .parent-lead {
  color: var(--blue-dark);
  font-size: clamp(1.18rem, 1.7vw, 1.46rem);
  font-weight: 950;
  line-height: 1.25;
}

.audience-band .parent-lead.secondary {
  margin-top: 30px;
  color: var(--green);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.parent-safety-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.parent-help-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.audience-band .parent-disclaimer {
  margin-top: 24px;
  color: var(--blue-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-grid article {
  min-height: 74px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-weight: 850;
}

.about-visual {
  position: relative;
  justify-self: start;
  width: min(440px, 100%);
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.profile-card {
  position: absolute;
  left: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: min(420px, calc(100% - 36px));
  margin: 0;
  padding: 14px;
  background: rgba(251, 247, 237, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.profile-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(7, 27, 61, 0.22);
}

.profile-card figcaption {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.profile-card strong {
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.15;
}

.profile-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.disclaimer-section h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
}

.disclaimer-section p {
  color: #263650;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
}

.contact-action {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
}

.contact-action p {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 950;
}

.contact-action > a:not(.button) {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.38rem, 2.8vw, 1.9rem);
  font-weight: 950;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px minmax(220px, 1fr) auto;
  align-items: start;
  gap: 24px 34px;
  background: #071b3d;
  color: var(--white);
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
}

.footer-disclaimer {
  grid-column: 2 / -1;
  max-width: 980px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-disclaimer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.2;
}

.footer-disclaimer p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.map-page {
  background: var(--white);
}

.map-page .site-header {
  position: relative;
  z-index: 700;
}

.main-nav a[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--gold);
}

.locations-shell {
  min-height: calc(100vh - 64px);
  background: var(--paper);
}

.map-intro {
  display: block;
  max-width: 1760px;
  margin-inline: auto;
  padding: clamp(42px, 5vw, 76px) clamp(20px, 5vw, 80px) clamp(26px, 3.4vw, 44px);
  background: var(--paper);
}

.map-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.map-intro h1 {
  max-width: 1320px;
  color: var(--blue-dark);
  font-size: clamp(3.2rem, 4.7vw, 4.45rem);
  line-height: 0.98;
}

.map-intro h1 span {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98em;
  line-height: 0.98;
}

.map-copy-column {
  max-width: 980px;
  margin-top: 24px;
}

.map-copy-column p {
  margin-top: 0;
  color: var(--blue-ink);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.42;
}

.map-copy-column p + p {
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 900;
}

.text-action,
.map-action {
  display: inline-block;
  margin-top: 8px;
}

.text-action {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-action {
  min-height: 52px;
  padding: 15px 24px;
  background: var(--green);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
  text-decoration: none;
}

.map-action:hover,
.map-action:focus-visible {
  background: var(--blue-dark);
}

.map-action span {
  margin-left: 10px;
}

.map-workspace {
  position: relative;
  max-width: 1760px;
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(36px, 4vw, 62px);
}

.map-prelude {
  margin: 0 0 14px;
  color: rgba(7, 27, 61, 0.7);
  font-size: 0.95rem;
  font-weight: 800;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.26fr);
  gap: 24px;
  align-items: stretch;
}

.locations-map {
  position: relative;
  contain: layout paint;
  min-height: min(76vh, 800px);
  height: min(76vh, 800px);
  overflow: hidden;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  background: #cfe6e8;
}

.locations-map .leaflet-pane,
.locations-map .leaflet-tile,
.locations-map .leaflet-marker-icon,
.locations-map .leaflet-marker-shadow,
.locations-map .leaflet-tile-container,
.locations-map .leaflet-pane > svg,
.locations-map .leaflet-pane > canvas,
.locations-map .leaflet-zoom-box,
.locations-map .leaflet-image-layer,
.locations-map .leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.locations-map .leaflet-map-pane {
  z-index: 400;
}

.locations-map .leaflet-tile-pane {
  z-index: 200;
}

.locations-map .leaflet-overlay-pane {
  z-index: 400;
}

.locations-map .leaflet-shadow-pane {
  z-index: 500;
}

.locations-map .leaflet-marker-pane {
  z-index: 600;
}

.locations-map .leaflet-popup-pane {
  z-index: 700;
}

.locations-map .leaflet-marker-icon,
.locations-map .leaflet-marker-shadow {
  display: block;
  pointer-events: auto;
}

.locations-map .leaflet-interactive {
  cursor: pointer;
}

.panel-eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-marker {
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 50%;
  pointer-events: auto;
}

.school-marker span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--blue-dark);
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(7, 27, 61, 0.32);
  transform: rotate(-45deg);
}

.school-marker span::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.partner-marker span {
  background: var(--gold);
}

.partner-marker span::after {
  background: var(--green);
}

.map-legend {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.map-legend li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--blue-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.map-legend span {
  width: 16px;
  height: 16px;
  background: var(--blue-dark);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(7, 27, 61, 0.18);
}

.map-legend .partner-dot {
  background: var(--gold);
  border-color: var(--green);
}

.map-detail-panel {
  display: grid;
  align-content: start;
  min-height: min(76vh, 800px);
  padding: 22px 0 0 2px;
  color: var(--blue-ink);
}

.map-panel-guide p,
.map-detail-panel .map-clarification {
  margin: 0;
  color: var(--blue-ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.map-detail-panel .map-clarification {
  margin-top: 14px;
  color: rgba(7, 27, 61, 0.68);
  font-size: 0.82rem;
}

.map-location-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.map-location-details h2 {
  margin: 4px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.05;
}

.map-location-details p {
  margin-top: 14px;
  color: var(--blue-ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.map-location-details .detail-type {
  margin: 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.map-location-details .detail-partner {
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 1.04rem;
  font-weight: 900;
}

.map-location-details .detail-meta {
  color: rgba(7, 27, 61, 0.72);
  font-size: 0.9rem;
}

.map-location-details .detail-block {
  color: rgba(7, 27, 61, 0.78);
  font-size: 0.92rem;
}

.map-location-details .detail-block strong,
.map-location-details .detail-source strong {
  color: var(--blue-dark);
  font-weight: 900;
}

.map-location-details .detail-source {
  font-size: 0.86rem;
}

.map-location-details .detail-source a {
  color: rgba(7, 27, 61, 0.72);
  font-weight: 760;
}

.map-location-details .button {
  margin-top: 18px;
}

.detail-section-label {
  margin-top: 20px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.school-cluster {
  display: grid;
  place-items: center;
  background: rgba(39, 118, 83, 0.84);
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 27, 61, 0.24);
  color: var(--white);
  font-weight: 950;
}

.school-cluster span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.leaflet-control-zoom a {
  color: var(--blue-dark);
}

.locations-map .leaflet-top,
.locations-map .leaflet-bottom {
  z-index: 650;
}

.locations-map .leaflet-control {
  position: relative;
  z-index: 700;
}

.location-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  color: var(--blue-ink);
  box-shadow: 0 30px 80px rgba(7, 27, 61, 0.32);
}

.location-dialog::backdrop {
  background: rgba(7, 27, 61, 0.46);
}

.location-dialog form {
  display: flex;
  justify-content: flex-end;
  padding: 12px 12px 0;
}

.dialog-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

#location-dialog-content {
  padding: 0 clamp(22px, 4vw, 34px) clamp(26px, 4vw, 36px);
}

#location-dialog-content h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3rem);
}

#location-dialog-content p {
  font-size: 1rem;
}

.location-directory {
  max-width: 1760px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 5vw, 80px) clamp(58px, 6vw, 92px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.directory-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(360px, 0.54fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: end;
}

.directory-heading h2 {
  max-width: 720px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.directory-heading p {
  max-width: 760px;
  color: var(--blue-ink);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.directory-filters {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 360px);
  gap: 18px;
  margin-top: clamp(26px, 3.6vw, 42px);
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.directory-filters label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.directory-filters input,
.directory-filters select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(7, 27, 61, 0.22);
  border-radius: 6px;
  color: var(--blue-ink);
  font: inherit;
  font-weight: 700;
}

.directory-filters input:focus,
.directory-filters select:focus {
  outline: 3px solid rgba(243, 183, 25, 0.34);
  border-color: var(--green);
}

.directory-count {
  margin-top: 18px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.directory-grid {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
  margin-top: 28px;
}

.directory-group > h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(34px, 5vw, 72px);
  margin-top: 10px;
}

.directory-item {
  display: grid;
  gap: 7px;
  min-height: 0;
  padding: 26px 0 28px;
  border-top: 1px solid var(--line);
}

.directory-item.priority-item {
  margin-top: 14px;
  padding: 24px;
  background: var(--paper);
  border-top: 0;
}

.directory-priority {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.directory-item h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.04;
}

.directory-type {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
}

.directory-partner {
  margin: 6px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 900;
}

.directory-reason {
  margin: 6px 0 0;
  max-width: 680px;
  color: var(--blue-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.directory-locality {
  margin: 2px 0 0;
  color: rgba(7, 27, 61, 0.72);
  font-size: 0.92rem;
  line-height: 1.38;
}

.directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 8px;
  color: rgba(7, 27, 61, 0.58);
  font-size: 0.9rem;
}

.directory-actions a,
.directory-actions button {
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(7, 27, 61, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
}

.directory-actions a::after {
  content: "·";
  margin-left: 10px;
  color: rgba(7, 27, 61, 0.42);
}

.directory-actions a:hover,
.directory-actions button:hover,
.directory-actions a:focus-visible,
.directory-actions button:focus-visible {
  color: var(--blue-dark);
  text-decoration: underline;
}

.directory-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 850;
}

.apps-shell {
  background: var(--paper);
}

.starter-browser {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  max-width: 1760px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 42px) clamp(20px, 5vw, 80px) clamp(56px, 6vw, 94px);
}

.starter-filter-rail {
  position: sticky;
  top: 98px;
  align-self: start;
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 27, 61, 0.08);
  border-radius: 6px;
}

.starter-filter-rail fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
  background: rgba(251, 247, 237, 0.72);
  border: 0;
  border-radius: 5px;
}

.starter-filter-rail fieldset + fieldset {
  margin-top: 12px;
}

.starter-filter-rail fieldset:last-child {
  padding-bottom: 12px;
}

.starter-filter-rail legend {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.starter-filter-rail label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 24px;
  margin-inline: -6px;
  padding: 4px 6px;
  border-radius: 4px;
  color: var(--blue-ink);
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.2;
}

.starter-filter-rail label:has(input:checked) {
  background: rgba(39, 118, 83, 0.16);
  color: var(--blue-dark);
  font-weight: 850;
}

.starter-filter-rail input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--green);
}

.starter-catalogue {
  min-width: 0;
}

.starter-catalogue-head {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
  padding: 20px 22px 22px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.catalogue-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.starter-catalogue-head h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.starter-catalogue-head p {
  max-width: 820px;
  margin-top: 8px;
  color: var(--blue-ink);
  font-size: clamp(1rem, 1.16vw, 1.12rem);
  line-height: 1.36;
}

.starter-catalogue-head .starter-count {
  flex: 0 0 auto;
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.starter-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.starter-tile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 27, 61, 0.08);
  border-radius: 6px;
}

.starter-tile[hidden] {
  display: none;
}

.starter-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  background: var(--white);
}

.starter-tile h2 {
  margin: 12px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1rem, 1.12vw, 1.22rem);
  line-height: 1.12;
}

.starter-tile p {
  flex: 1;
  margin: 0;
  padding-top: 8px;
  color: rgba(7, 27, 61, 0.82);
  font-size: clamp(0.86rem, 0.9vw, 0.94rem);
  line-height: 1.36;
}

.starter-tile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.starter-tile li {
  padding: 4px 7px;
  background: rgba(6, 47, 112, 0.08);
  border-radius: 3px;
  color: rgba(7, 27, 61, 0.76);
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1;
}

.starter-tile a {
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.starter-tile a:hover,
.starter-tile a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.starter-empty {
  margin: 28px 0 0;
  color: var(--blue-dark);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 184px 1fr auto;
    gap: 16px;
  }

  .brand,
  .brand img {
    width: 184px;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-bottom: 0;
    font-size: 0.84rem;
  }

  .language-switch {
    justify-self: end;
  }

  .hero,
  .story-section,
  .format-section,
  .take-home-section,
  .intro-section,
  .split-section,
  .idea-section,
  .audience-band,
  .about-section,
  .involved-section,
  .contact-section,
  .disclaimer-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-section:nth-of-type(odd) {
    grid-template-columns: 1fr;
  }

  .image-left .story-photo {
    order: 2;
  }

  .image-left .story-heading {
    order: 1;
  }

  .take-home-section > :first-child,
  .split-section > :first-child,
  .audience-band > :first-child,
  .idea-section > :first-child,
  .disclaimer-section > :first-child,
  .take-home-section > :last-child,
  .split-section > :last-child,
  .audience-band > :last-child,
  .idea-section > :last-child,
  .disclaimer-section > :last-child {
    order: 0;
  }

  .about-section > :first-child {
    order: 2;
  }

  .about-section > :last-child {
    order: 1;
  }

  .hero {
    min-height: calc(100vh - 80px);
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-panel img {
    height: 100%;
    min-height: 0;
    object-position: 69% 50%;
  }

  .site-footer {
    align-items: start;
  }

  .site-footer,
  .footer-disclaimer {
    grid-column: 1;
  }

  .map-intro,
  .directory-heading {
    grid-template-columns: 1fr;
  }

  .starter-browser {
    grid-template-columns: 1fr;
  }

  .starter-filter-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .starter-filter-rail fieldset,
  .starter-filter-rail fieldset + fieldset {
    margin-top: 0;
  }

  .map-copy-column {
    max-width: 680px;
  }

  .map-intro h1 {
    max-width: 840px;
    font-size: clamp(3rem, 7vw, 4.1rem);
  }

  .map-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-detail-panel {
    min-height: 0;
    padding-top: 0;
  }

  .map-location-details {
    margin-top: 22px;
  }

  .directory-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .starter-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .locations-map {
    min-height: 62vh;
    height: 62vh;
  }

  .photo-moments {
    gap: 22px;
  }

  .story-photo img {
    min-height: 340px;
  }

  .safety-photo img,
  .help-photo img {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 7px 16px;
  }

  .brand,
  .brand img {
    width: 154px;
  }

  html[lang="en"] .brand,
  html[lang="en"] .brand img {
    width: 132px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav {
    display: none;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    gap: 4px;
    font-size: 0.94rem;
  }

  .language-switch a {
    padding: 3px;
  }

  .mobile-menu-button {
    position: relative;
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    z-index: 30;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: rgba(243, 183, 25, 0.16);
    box-shadow: inset 0 0 0 1px rgba(6, 47, 112, 0.08);
    cursor: pointer;
    list-style: none;
  }

  .site-header:has(.mobile-menu-panel:popover-open) .mobile-menu-button,
  .mobile-menu-button:hover {
    background: var(--white);
    box-shadow: none;
  }

  .mobile-menu-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
    transform: translate(-50%, -50%);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-menu-button span:first-child {
    transform: translate(-50%, calc(-50% - 6px));
  }

  .mobile-menu-button span:last-child {
    transform: translate(-50%, calc(-50% + 6px));
  }

  .site-header:has(.mobile-menu-panel:popover-open) .mobile-menu-button span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header:has(.mobile-menu-panel:popover-open) .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header:has(.mobile-menu-panel:popover-open) .mobile-menu-button span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 67px 0 auto auto;
    z-index: 20;
    width: min(72vw, 240px);
    height: calc(100vh - 67px);
    align-content: start;
    padding: 18px 0;
    background: var(--white);
    border-left: 1px solid rgba(7, 27, 61, 0.08);
    border-radius: 0 0 0 8px;
    box-shadow: -20px 22px 42px rgba(7, 27, 61, 0.16);
  }

  .mobile-menu-panel:popover-open {
    display: grid;
  }

  .mobile-menu-panel a {
    padding: 12px 26px;
    color: var(--blue-dark);
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-menu-panel a:hover {
    background: rgba(243, 183, 25, 0.18);
  }

  main > section,
  .site-footer {
    padding: 30px 16px;
  }

  .hero {
    align-items: start;
    min-height: calc(100vh - 68px);
  }

  h1 {
    max-width: 340px;
    font-size: clamp(1.62rem, 7.4vw, 1.98rem);
  }

  .hero-copy {
    max-width: 340px;
    align-self: start;
    padding-top: clamp(48px, 12vh, 82px);
  }

  .hero-copy p {
    margin-top: 12px;
  }

  .age-line {
    margin-top: 12px;
    max-width: 100%;
    padding: 0;
    background: transparent;
    font-size: 0.95rem;
    line-height: 0.92;
  }

  .format-line {
    margin-top: 12px;
    max-width: 320px;
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .mobile-break {
    display: block;
  }

  .promise-list {
    gap: 5px;
    margin-top: 14px;
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(1.86rem, 10vw, 2.85rem);
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-panel img {
    height: 100%;
    min-height: 0;
    object-position: 70% 50%;
  }

  .button {
    width: 100%;
  }

  .hero .button {
    width: auto;
    min-width: 172px;
    align-self: flex-start;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .check-list,
  .value-list,
  .photo-moments,
  .simple-blocks,
  .day-list li,
  .two-column-list,
  .certificate-panel .compact-list,
  .parent-safety-list,
  .parent-help-list,
  .format-schedule,
  .take-home-list,
  .support-grid,
  .directory-filters,
  .directory-list {
    grid-template-columns: 1fr;
  }

  .story-label {
    gap: 12px;
    font-size: 0.7rem;
  }

  .story-label::before {
    width: 30px;
    height: 3px;
  }

  .value-list {
    margin-top: 26px;
  }

  .photo-moments img {
    aspect-ratio: 1.7;
  }

  .simple-blocks {
    gap: 18px;
  }

  .simple-blocks article {
    padding-left: 14px;
  }

  .day-list li {
    gap: 6px;
    padding: 18px 0;
  }

  .about-visual {
    width: min(420px, 100%);
    min-height: 320px;
  }

  .profile-card {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .profile-card img {
    width: 70px;
    height: 70px;
  }

  .contact-action {
    padding: 20px;
  }

  .format-schedule li,
  .take-home-list li {
    min-height: 0;
  }

  .map-intro {
    padding: 30px 16px 24px;
  }

  .starter-browser {
    padding: 18px 16px 42px;
  }

  .starter-filter-rail {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .starter-catalogue-head {
    display: grid;
    gap: 10px;
  }

  .starter-catalogue-head h1 {
    max-width: 360px;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .starter-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-directory {
    padding-inline: 16px;
  }

  .directory-filters {
    padding-bottom: 18px;
  }

  .directory-item.priority-item {
    margin-inline: -6px;
    padding: 20px;
  }

  .map-intro h1 {
    font-size: clamp(2.2rem, 9.8vw, 3rem);
  }

  .map-intro h1 span {
    font-size: 0.92em;
  }

  .map-action {
    min-height: 46px;
    padding: 13px 18px;
  }

  .map-workspace {
    padding: 0 16px 34px;
  }

  .locations-map {
    min-height: 68vh;
    height: 68vh;
  }

  .map-panel-guide p,
  .map-legend li {
    font-size: 0.82rem;
  }

  .map-detail-panel .map-clarification {
    font-size: 0.76rem;
  }
}
