:root {
  --paper: #f3f0e8;
  --paper-2: #e8e2d7;
  --ink: #10131a;
  --navy: #111d38;
  --blue: #1648d8;
  --blue-soft: #bed0ff;
  --rust: #b84325;
  --sun: #f3c757;
  --line: rgba(16, 19, 26, .2);
  --line-light: rgba(255, 255, 255, .24);
  --gutter: clamp(20px, 4vw, 72px);
  --max: 1560px;
  --ease: cubic-bezier(.2, .75, .18, 1);
  --page-progress: 0;
  color-scheme: light;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(16,19,26,.035) 50%, transparent calc(50% + 1px)),
    var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: white; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: white;
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.progress-rail {
  position: fixed;
  z-index: 95;
  top: 0;
  right: 0;
  width: 5px;
  height: 100vh;
  background: rgba(16,19,26,.1);
  transform-origin: top;
}
.progress-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rust);
  transform: scaleY(var(--page-progress));
  transform-origin: top;
}

.site-header {
  position: absolute;
  z-index: 80;
  inset: 0 0 auto;
  color: white;
}
.header-inner {
  width: min(100%, var(--max));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line-light);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-emblem {
  width: 30px;
  aspect-ratio: 1;
  position: relative;
  border: 1px solid rgba(255,255,255,.75);
  transform: rotate(45deg);
}
.brand-emblem::before,
.brand-emblem::after {
  content: "";
  position: absolute;
  background: var(--sun);
}
.brand-emblem::before { width: 14px; height: 1px; left: 7px; top: 14px; }
.brand-emblem::after { width: 1px; height: 14px; left: 14px; top: 7px; }
.site-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--sun);
  transition: right .35s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-call {
  min-height: 86px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  border-inline: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 850;
}

.hero {
  min-height: min(900px, 100svh);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 35%), rgba(72,117,255,.45), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 54px 54px;
}
.hero::after {
  content: attr(data-word);
  position: absolute;
  z-index: -1;
  left: -1.5vw;
  bottom: -6vw;
  max-width: 100%;
  overflow: hidden;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(120px, 20vw, 340px);
  font-style: italic;
  line-height: .72;
  white-space: nowrap;
}
.hero-grid {
  width: min(100%, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 128px var(--gutter) 66px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
}
.hero-copy { position: relative; z-index: 2; padding-top: 40px; }
.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-label::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow { color: var(--sun); }
.hero h1 {
  margin: 28px 0 30px;
  font-size: clamp(54px, 7.2vw, 118px);
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
  word-break: keep-all;
}
.hero h1 span { display: block; }
.hero h1 .soft {
  margin-top: .13em;
  color: var(--blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
  word-break: keep-all;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.32);
  font-size: 14px;
  font-weight: 800;
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
  transform: translate(var(--mx, 0), var(--my, 0));
}
.button.primary { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.button:hover, .button:focus-visible { background: white; border-color: white; color: var(--ink); }
.button .arrow { font-size: 19px; }
.hero-facts {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
}
.hero-facts span { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts span::before { content: ""; width: 5px; height: 5px; background: var(--rust); transform: rotate(45deg); }

.hero-visual { position: relative; min-height: 610px; }
.hero-photo-shell {
  position: absolute;
  inset: 0 7% 0 0;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 91% 88%, 0 100%);
  background: #263354;
}
.hero-photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateY(calc(var(--parallax, 0) * -16px));
  filter: saturate(.82) contrast(1.05);
}
.js .hero-photo-shell { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
.js .hero-photo-shell.is-visible { animation: photoWipe 1.15s var(--ease) forwards; }
.visual-block {
  position: absolute;
  width: 44%;
  height: 24%;
  right: 0;
  bottom: 3%;
  background: var(--rust);
  mix-blend-mode: screen;
  opacity: .78;
}
.visual-code {
  position: absolute;
  left: -28px;
  bottom: 16%;
  padding: 16px 18px;
  background: var(--paper);
  color: var(--ink);
  border-left: 7px solid var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}
.visual-caption {
  position: absolute;
  top: 24px;
  right: -12px;
  width: 150px;
  padding-top: 12px;
  border-top: 1px solid white;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: .08em;
}

.route-strip {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: var(--rust);
  color: white;
  margin-block: -12px;
  padding-block: 12px;
  clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%);
}
.route-track {
  width: max-content;
  display: flex;
  animation: ticker 12s ease-in-out infinite alternate;
}
.route-track span {
  padding: 17px 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
}
.route-track span::after { content: "✦"; color: var(--sun); }

.section { position: relative; padding: clamp(86px, 10vw, 156px) 0; }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; padding-inline: var(--gutter); }
.section-label { color: var(--blue); }
.section-title {
  margin: 22px 0 0;
  max-width: 900px;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -.065em;
  word-break: keep-all;
  text-wrap: balance;
}
.section-title em { color: var(--rust); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-intro { max-width: 650px; font-size: 16px; line-height: 1.9; color: rgba(16,19,26,.68); word-break: keep-all; }

.brief-section { background: var(--paper); }
.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 160px);
}
.brief-sticky { align-self: start; position: sticky; top: 40px; }
.brief-list { border-top: 1px solid var(--line); }
.brief-item {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brief-item > span { color: var(--rust); font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.brief-item h3 { margin: 0 0 10px; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.04em; word-break: keep-all; }
.brief-item p { margin: 0; color: rgba(16,19,26,.68); line-height: 1.85; word-break: keep-all; }

.course-section { overflow: hidden; background: var(--blue); color: white; }
.course-section::before {
  content: "60  90  120";
  position: absolute;
  top: 8%;
  right: -1%;
  color: rgba(255,255,255,.08);
  font-family: Georgia, serif;
  font-size: clamp(80px, 13vw, 220px);
  white-space: nowrap;
}
.course-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; position: relative; }
.course-head .section-label { color: var(--sun); }
.course-head .section-intro { color: rgba(255,255,255,.72); justify-self: end; }
.course-lines { position: relative; margin-top: 70px; border-top: 1px solid var(--line-light); }
.course-line {
  min-height: 158px;
  display: grid;
  grid-template-columns: 80px minmax(220px, .7fr) 1fr auto;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line-light);
  transition: background .35s, padding .35s var(--ease);
}
.course-line:hover { padding-inline: 20px; background: rgba(255,255,255,.07); }
.course-line .index { color: var(--sun); font-family: Georgia, serif; font-style: italic; }
.course-line h3 { margin: 0; font-size: clamp(26px, 3vw, 46px); letter-spacing: -.055em; }
.course-line p { margin: 0; max-width: 600px; color: rgba(255,255,255,.68); line-height: 1.75; word-break: keep-all; }
.course-line .duration { font-size: 12px; font-weight: 850; letter-spacing: .12em; white-space: nowrap; }

.steps-section { background: var(--paper-2); }
.steps-layout { display: grid; grid-template-columns: minmax(300px,.68fr) 1fr; gap: clamp(50px, 9vw, 140px); }
.steps-list { counter-reset: visit; }
.step {
  counter-increment: visit;
  position: relative;
  padding: 34px 0 34px 76px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: "0" counter(visit);
  position: absolute;
  left: 0;
  top: 36px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}
.step h3 { margin: 0 0 9px; font-size: 23px; letter-spacing: -.04em; }
.step p { margin: 0; color: rgba(16,19,26,.66); line-height: 1.8; word-break: keep-all; }

.related-section { background: #f8f6f1; }
.related-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 54px; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-link {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s, color .3s;
}
.related-link small { color: var(--rust); font-weight: 850; letter-spacing: .1em; }
.related-link strong { font-size: clamp(18px, 1.7vw, 25px); line-height: 1.35; letter-spacing: -.04em; word-break: keep-all; }
.related-link span { align-self: flex-end; font-size: 20px; }
.related-link:hover, .related-link:focus-visible { background: var(--navy); color: white; }

.feature-section { background: var(--paper); }
.feature-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.feature:nth-child(1), .feature:nth-child(4) { grid-column: span 7; }
.feature:nth-child(2), .feature:nth-child(3) { grid-column: span 5; }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.feature::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(4,8,19,.88)); }
.feature-copy { position: absolute; z-index: 2; inset: auto 30px 28px; }
.feature-copy small { color: var(--sun); font-weight: 850; letter-spacing: .12em; }
.feature-copy h3 { margin: 10px 0 8px; font-size: clamp(30px, 4vw, 58px); letter-spacing: -.06em; }
.feature-copy p { max-width: 560px; margin: 0; color: rgba(255,255,255,.76); line-height: 1.75; word-break: keep-all; }
.feature:hover img { transform: scale(1.04); filter: saturate(1.1); }

.atlas-section { background: var(--navy); color: white; }
.atlas-section .section-label { color: var(--sun); }
.atlas-intro { display: grid; grid-template-columns: 1.15fr .7fr; gap: 50px; align-items: end; }
.atlas-intro .section-intro { color: rgba(255,255,255,.68); justify-self: end; }
.region-tabs { margin-top: 64px; display: flex; border-block: 1px solid var(--line-light); overflow-x: auto; scrollbar-width: none; }
.region-tabs::-webkit-scrollbar { display: none; }
.region-tab {
  flex: 1 0 180px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255,255,255,.58);
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
  text-align: left;
}
.region-tab small { margin-left: 8px; font-family: Georgia, serif; font-style: italic; }
.region-tab[aria-selected="true"] { background: var(--sun); color: var(--ink); }
.region-panel { padding-top: 44px; }
.region-panel[hidden] { display: none; }
.region-panel-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.region-panel-head h3 { margin: 0; font-size: 30px; letter-spacing: -.05em; }
.region-panel-head span { color: var(--blue-soft); font-size: 11px; letter-spacing: .12em; }
.cluster-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.cluster {
  min-width: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.cluster-title { display: block; padding: 22px; color: var(--sun); font-size: 17px; font-weight: 850; border-bottom: 1px solid var(--line-light); }
.cluster-links { padding: 15px 22px 22px; display: flex; flex-wrap: wrap; gap: 7px 14px; }
.cluster-links a { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.cluster-links a:hover, .cluster-links a:focus-visible { color: white; text-decoration: underline; text-underline-offset: 4px; }

.note-section { background: var(--rust); color: white; }
.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.note-section .section-label { color: var(--sun); }
.note-lines { border-top: 1px solid rgba(255,255,255,.34); }
.note-line { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.34); }
.note-line h3 { margin: 0 0 8px; font-size: 21px; }
.note-line p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.75; word-break: keep-all; }

.cta {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  width: min(70vw, 920px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(22,72,216,.035), 0 0 0 140px rgba(22,72,216,.025);
}
.cta-inner { position: relative; z-index: 2; padding: 80px var(--gutter); }
.cta h2 { margin: 20px auto 25px; max-width: 1000px; font-size: clamp(50px, 8vw, 126px); line-height: .93; letter-spacing: -.08em; text-wrap: balance; word-break: keep-all; }
.cta p { margin: 0 auto 30px; max-width: 640px; color: rgba(16,19,26,.68); line-height: 1.8; }
.cta .button { background: var(--blue); color: white; border-color: var(--blue); }
.cta .button:hover { background: var(--ink); border-color: var(--ink); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.68); }
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}
.footer-brand { margin-bottom: 7px; color: white; font-size: 21px; font-weight: 850; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: white; }
.mobile-call { display: none; }

.crumbs {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: 22px;
  display: flex;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}
.crumbs span::after { content: "/"; margin-left: 9px; }
.crumbs span:last-child::after { display: none; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js .brief-item:nth-child(2), .js .course-line:nth-child(2), .js .related-link:nth-child(2) { transition-delay: .08s; }
.js .brief-item:nth-child(3), .js .course-line:nth-child(3), .js .related-link:nth-child(3) { transition-delay: .14s; }
.js .brief-item:nth-child(4), .js .course-line:nth-child(4), .js .related-link:nth-child(4) { transition-delay: .2s; }

@keyframes photoWipe { to { clip-path: polygon(12% 0, 100% 0, 91% 88%, 0 100%); } }
@keyframes ticker { to { transform: translateX(-7%); } }

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(340px,.72fr); gap: 38px; }
  .hero-visual { min-height: 530px; }
  .related-grid, .cluster-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .course-line { grid-template-columns: 60px minmax(200px,.72fr) 1fr; }
  .course-line .duration { grid-column: 2 / -1; padding-bottom: 22px; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  body { padding-bottom: 68px; background: var(--paper); }
  .progress-rail { width: 3px; }
  .header-inner { min-height: 70px; }
  .brand { font-size: 16px; }
  .brand-emblem { width: 25px; }
  .header-call { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 104px; padding-bottom: 72px; grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { padding-top: 0; }
  .hero h1 { margin: 22px 0 24px; font-size: clamp(48px, 16vw, 72px); line-height: .94; }
  .hero-lead { font-size: 15px; line-height: 1.8; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 56px; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .hero-visual { min-height: 480px; }
  .hero-photo-shell { inset: 0 3% 0 0; }
  .visual-code { left: 0; bottom: 8%; }
  .visual-caption { right: 0; top: 12px; }
  .crumbs { position: static; margin-top: 22px; flex-wrap: wrap; }
  .route-strip { margin-block: -8px; padding-block: 8px; }
  .section { padding: 88px 0; }
  .section-title { font-size: clamp(38px, 12vw, 58px); }
  .brief-grid, .course-head, .steps-layout, .atlas-intro, .note-grid { grid-template-columns: 1fr; gap: 42px; }
  .brief-sticky { position: static; }
  .brief-item { padding: 28px 0; grid-template-columns: 48px 1fr; }
  .course-head .section-intro, .atlas-intro .section-intro { justify-self: start; }
  .course-lines { margin-top: 46px; }
  .course-line { padding: 28px 0; grid-template-columns: 42px 1fr; gap: 14px 18px; }
  .course-line p { grid-column: 2; }
  .course-line .duration { grid-column: 2; padding-bottom: 0; }
  .related-head { display: block; }
  .related-head .section-intro { margin-top: 22px; }
  .related-grid, .cluster-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .related-link { min-height: 145px; padding: 18px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature:nth-child(n) { grid-column: auto; min-height: 460px; }
  .feature-copy { inset: auto 22px 22px; }
  .region-tabs { margin-top: 44px; }
  .region-tab { flex-basis: 150px; padding: 19px; font-size: 17px; }
  .region-panel-head { display: block; }
  .region-panel-head span { display: block; margin-top: 9px; }
  .cluster-title { padding: 17px; }
  .cluster-links { padding: 12px 17px 18px; display: grid; gap: 8px; }
  .cta { min-height: 540px; }
  .cta h2 { font-size: clamp(48px, 15vw, 78px); }
  .footer-inner { display: block; padding-bottom: 48px; }
  .footer-links { margin-top: 24px; }
  .mobile-call {
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 10px;
    right: 10px;
    bottom: 8px;
    min-height: 56px;
    padding: 0 18px;
    background: var(--sun);
    color: var(--ink);
    box-shadow: 0 10px 35px rgba(0,0,0,.28);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (max-width: 430px) {
  .hero-facts { grid-template-columns: 1fr; }
  .related-grid, .cluster-grid { grid-template-columns: 1fr; }
  .related-link { min-height: 125px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .hero-photo-shell { clip-path: polygon(12% 0, 100% 0, 91% 88%, 0 100%); }
  .js [data-reveal] { opacity: 1; transform: none; }
}
