:root {
  --paper: #eef2f3;
  --paper-deep: #dce5e8;
  --white: #f8faf9;
  --ink: #112532;
  --navy: #081c2d;
  --navy-soft: #17384d;
  --rain: #4f7f9c;
  --steel: #9cabb2;
  --rule: #b8c4c8;
  --signal: #e7c341;
  --warm-fog: #c8bbb0;
  --header-height: 76px;
  --frame: 1520px;
  --side: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Clash Grotesk", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
dl,
dd,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - (var(--side) * 2)), var(--frame));
  margin-inline: auto;
}

.section-code,
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-code {
  color: var(--rain);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 36px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 500;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--strong {
  min-height: 44px;
  padding-inline: 16px;
  border: 1px solid currentColor;
}

.site-header {
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--side);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--navy);
}

.site-header--solid {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  border-bottom-color: var(--rule);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.wordmark span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.wordmark small {
  padding-left: 14px;
  border-left: 1px solid currentColor;
  font-size: 9px;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.header-reading {
  font-size: 9px;
}

.bag-trigger,
.menu-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bag-trigger {
  min-width: 58px;
  height: 34px;
  border: 1px solid currentColor;
  font-size: 10px;
}

.menu-trigger {
  display: none;
  width: 34px;
  height: 34px;
  padding: 8px 6px;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 112px 26px 36px;
  background: var(--paper);
  color: var(--navy);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 30px;
  line-height: 1;
}

.mobile-nav small {
  position: absolute;
  bottom: 30px;
  left: 26px;
  font-size: 10px;
}

/* Home */

.home-hero {
  position: relative;
  height: calc(100svh - 80px);
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-media,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 54%;
}

.hero-copy {
  position: absolute;
  top: 23%;
  left: var(--side);
  z-index: 2;
  max-width: 760px;
  color: var(--navy);
}

.hero-copy h1 {
  margin-top: 24px;
  font-size: 86px;
  font-weight: 400;
}

.hero-korean {
  margin-top: 26px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 20px;
}

.hero-copy .text-link {
  margin-top: 38px;
}

.hero-observation {
  position: absolute;
  right: var(--side);
  bottom: 110px;
  z-index: 2;
  width: 210px;
  padding: 18px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
}

.hero-observation > span {
  font-size: 10px;
}

.hero-observation > strong {
  display: block;
  margin: 8px 0 20px;
  font-size: 21px;
  font-weight: 500;
}

.hero-observation dl div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 10px;
}

.hero-observation dd {
  font-weight: 600;
}

.hero-floor {
  position: absolute;
  right: var(--side);
  bottom: 26px;
  left: var(--side);
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  color: var(--navy);
}

.hero-rule {
  height: 1px;
  background: rgba(8, 28, 45, 0.4);
}

.condition-ticker {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  min-height: 48px;
  background: var(--navy);
  color: var(--white);
}

.condition-ticker span {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 9px;
}

.condition-ticker span:first-child {
  color: var(--signal);
}

.weather-dial {
  padding-block: 124px 110px;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.section-intro h2,
.records-heading h2,
.material-copy h2,
.route-heading h2,
.component-heading h2,
.lab-intro h2,
.anatomy-copy h2,
.product-facts h2 {
  font-size: 56px;
}

.section-intro > p:last-child,
.lab-intro > p:last-child {
  max-width: 440px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 18px;
  line-height: 1.7;
}

.dial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.75fr;
  align-items: stretch;
  min-height: 690px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.instrument {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 42px 38px 0;
  border-right: 1px solid var(--rule);
}

.instrument-face {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.instrument-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid var(--rule);
  border-radius: 50%;
}

.instrument-tick {
  position: absolute;
  top: 2%;
  left: calc(50% - 1px);
  width: 1px;
  height: 9%;
  background: var(--navy);
  transform-origin: 50% 533%;
}

.instrument-tick:nth-of-type(4n) {
  width: 2px;
  height: 12%;
}

.instrument-axis {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 2;
  font-size: 10px;
  transform: translateX(-50%);
}

.instrument-axis--e {
  top: 50%;
  right: 8%;
  left: auto;
  transform: translateY(-50%);
}

.instrument-axis--s {
  top: auto;
  bottom: 8%;
}

.instrument-axis--w {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.instrument-needle {
  position: absolute;
  top: 49.5%;
  left: 50%;
  z-index: 4;
  width: 39%;
  height: 2px;
  background: var(--signal);
  transform: rotate(-44deg);
  transform-origin: 0 50%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.instrument-needle::after {
  position: absolute;
  top: -3px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.instrument-center {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  z-index: 5;
  width: 16px;
  height: 16px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--navy);
}

.instrument-face strong {
  position: absolute;
  top: 59%;
  left: 50%;
  font-size: 62px;
  font-weight: 400;
  transform: translateX(-50%);
}

.instrument-face small {
  position: absolute;
  top: 77%;
  left: 50%;
  font-size: 9px;
  transform: translateX(-50%);
}

.instrument-readout {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
}

.instrument-readout strong {
  font-weight: 500;
}

.dial-look {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.dial-look img {
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.dial-look.is-switching img {
  opacity: 0.2;
}

.dial-look figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  background: rgba(8, 28, 45, 0.86);
  color: var(--white);
  font-size: 9px;
}

.dial-register {
  display: flex;
  flex-direction: column;
  padding: 52px 0 38px 42px;
  border-left: 1px solid var(--rule);
}

.dial-register h3 {
  margin: 62px 0 34px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 34px;
}

.dial-register ul {
  border-top: 1px solid var(--rule);
}

.dial-register li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
}

.dial-register > p:not(.section-code) {
  margin: 28px 0;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.7;
}

.dial-register .text-link {
  margin-top: auto;
}

.dial-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dial-button {
  min-height: 76px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
}

.dial-button:first-child {
  border-left: 1px solid var(--rule);
}

.dial-button span {
  display: block;
  margin-bottom: 8px;
  color: var(--rain);
  font-size: 9px;
}

.dial-button.is-active {
  background: var(--navy);
  color: var(--white);
}

.dial-button.is-active span {
  color: var(--signal);
}

.pressure-passage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.pressure-passage > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  opacity: 0.82;
}

.pressure-passage::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 45, 0.24);
  content: "";
}

.passage-copy {
  position: absolute;
  top: 70px;
  left: var(--side);
  z-index: 2;
  max-width: 560px;
}

.passage-copy .section-code {
  color: var(--signal);
}

.passage-copy h2 {
  margin: 24px 0 30px;
  font-size: 54px;
}

.passage-copy p:last-child {
  max-width: 420px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 17px;
  line-height: 1.7;
}

.passage-index {
  position: absolute;
  right: var(--side);
  bottom: 44px;
  z-index: 2;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.8;
  text-align: right;
}

.shell-records {
  padding-block: 124px;
}

.records-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 0.9fr;
  margin-bottom: 88px;
}

.records-heading h2 {
  grid-column: 2;
}

.shell-record {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  min-height: 570px;
  margin-top: 72px;
  border-top: 1px solid var(--navy);
}

.shell-record--reverse {
  grid-template-columns: 1.38fr 0.62fr;
}

.shell-record--reverse .record-copy {
  grid-column: 2;
  grid-row: 1;
  padding-right: 0;
  padding-left: 48px;
  border-right: 0;
  border-left: 1px solid var(--rule);
}

.shell-record--reverse img {
  grid-column: 1;
  grid-row: 1;
}

.record-copy {
  display: flex;
  flex-direction: column;
  padding: 34px 48px 34px 0;
  border-right: 1px solid var(--rule);
}

.record-number {
  color: var(--rain);
  font-size: 10px;
}

.record-copy h3 {
  margin: 74px 0 22px;
  font-size: 42px;
}

.record-copy > p {
  max-width: 420px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.75;
}

.record-copy dl {
  margin-top: 42px;
  border-top: 1px solid var(--rule);
}

.record-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
}

.record-copy .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.shell-record > img {
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.material-field {
  display: grid;
  grid-template-columns: 0.66fr 1fr 1fr;
  background: var(--navy);
  color: var(--white);
}

.material-copy {
  padding: 64px 48px;
}

.material-copy .section-code {
  color: var(--signal);
}

.material-copy h2 {
  margin: 60px 0 30px;
}

.material-copy > p:last-child {
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.7;
}

.material-shot {
  position: relative;
  min-height: 600px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.material-shot img {
  height: 100%;
  object-fit: cover;
}

.material-shot figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding: 10px 12px;
  background: rgba(8, 28, 45, 0.82);
  font-size: 9px;
}

.field-note {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  padding-block: 124px;
}

.field-note-copy {
  display: flex;
  flex-direction: column;
  padding: 20px 70px 20px 0;
}

.field-note blockquote {
  margin: 110px 0 36px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 40px;
  line-height: 1.35;
}

.field-note-copy > p:not(.section-code) {
  font-size: 13px;
}

.field-note-copy > p span {
  color: var(--rain);
  font-size: 10px;
}

.field-note-copy .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.field-note > img {
  height: 760px;
  object-fit: cover;
}

.forecast-signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
  padding: 76px var(--side);
  background: var(--rain);
  color: var(--white);
}

.forecast-signup .section-code {
  color: var(--navy);
}

.forecast-signup h2 {
  margin-top: 18px;
  font-size: 44px;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  border-bottom: 1px solid var(--white);
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.newsletter-form input {
  width: 100%;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.form-status {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  font-size: 11px;
}

/* Forecast Lab */

.lab-hero {
  position: relative;
  height: calc(100svh - 72px);
  min-height: 680px;
  max-height: 940px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.lab-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 45, 0.18);
  content: "";
}

.lab-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lab-hero-title {
  position: absolute;
  top: 22%;
  left: var(--side);
  z-index: 2;
}

.lab-hero-title h1 {
  margin: 24px 0;
  font-size: 106px;
}

.lab-hero-title > p:last-child {
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 18px;
}

.lab-hero-log {
  position: absolute;
  right: var(--side);
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 220px;
  padding: 16px 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  font-size: 9px;
}

.lab-hero-log strong {
  color: var(--signal);
  font-size: 18px;
  font-weight: 500;
}

.condition-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 72px;
  border-bottom: 1px solid var(--rule);
}

.condition-index a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--rule);
  font-size: 11px;
}

.condition-index a:last-child {
  border-right: 0;
}

.condition-index span {
  color: var(--rain);
  font-size: 9px;
}

.lab-intro {
  display: grid;
  grid-template-columns: 0.42fr 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  padding-block: 124px;
}

.condition-chapter {
  position: relative;
  display: grid;
  min-height: 680px;
  border-top: 1px solid var(--navy);
}

.chapter-code {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
}

.chapter-code span {
  color: var(--rain);
  font-size: 10px;
}

.chapter-code strong {
  font-size: 27px;
  font-weight: 500;
  line-height: 0.95;
}

.chapter-copy {
  padding: 64px 50px;
}

.chapter-copy h2 {
  margin: 74px 0 26px;
  font-size: 48px;
}

.chapter-copy > p:not(.section-code) {
  max-width: 430px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.75;
}

.chapter-copy dl {
  margin-top: 54px;
  border-top: 1px solid var(--rule);
}

.chapter-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
}

.condition-chapter > img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.condition-chapter--clear {
  grid-template-columns: 0.18fr 1.18fr 0.74fr;
}

.condition-chapter--wind {
  grid-template-columns: 0.18fr 0.76fr 1.2fr;
}

.condition-chapter--wind .chapter-copy {
  grid-column: 2;
}

.condition-chapter--wind > img {
  grid-column: 3;
}

.condition-chapter--rain {
  grid-template-columns: 0.18fr 1.32fr 0.62fr;
  background: var(--navy);
  color: var(--white);
}

.condition-chapter--rain .chapter-code,
.condition-chapter--rain .chapter-copy {
  border-color: rgba(255, 255, 255, 0.22);
}

.condition-chapter--rain .chapter-copy dl {
  border-color: rgba(255, 255, 255, 0.28);
}

.condition-chapter--rain .chapter-copy dl div {
  border-color: rgba(255, 255, 255, 0.18);
}

.condition-chapter--rain .section-code,
.condition-chapter--rain .chapter-code span {
  color: var(--signal);
}

.condition-chapter--cold {
  display: block;
  padding: 0 var(--side) 96px;
}

.condition-chapter--cold header {
  display: grid;
  grid-template-columns: 0.24fr 1fr;
  min-height: 360px;
  margin-inline: calc(var(--side) * -1);
  border-bottom: 1px solid var(--rule);
}

.condition-chapter--cold .chapter-code {
  padding-left: var(--side);
}

.condition-chapter--cold .chapter-copy {
  display: grid;
  grid-template-columns: 0.46fr 1fr 1fr;
  align-items: start;
}

.condition-chapter--cold .chapter-copy h2 {
  margin: 0;
}

.condition-chapter--cold .chapter-copy > p:last-child {
  padding-left: 30px;
}

.condition-chapter--cold > img {
  height: min(72vw, 900px);
  min-height: 620px;
  margin-top: 64px;
  object-position: center;
}

.cold-register {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}

.cold-register div {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-right: 1px solid var(--rule);
  font-size: 10px;
}

.cold-register div:last-child {
  border-right: 0;
}

.anatomy-spread {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 70px;
  padding-block: 124px;
}

.anatomy-copy h2 {
  margin: 72px 0 30px;
}

.anatomy-copy > p:not(.section-code) {
  font-family: "Zodiak", "Noto Serif KR", serif;
  line-height: 1.75;
}

.anatomy-copy ol {
  margin: 50px 0 38px;
  border-top: 1px solid var(--rule);
}

.anatomy-copy li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
}

.anatomy-copy li span {
  color: var(--rain);
}

.anatomy-spread > img {
  border: 1px solid var(--rule);
}

.station-scene {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.station-scene::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 45, 0.2);
  content: "";
}

.station-scene > img {
  height: 760px;
  object-fit: cover;
}

.station-caption {
  position: absolute;
  bottom: 50px;
  left: var(--side);
  z-index: 2;
  max-width: 520px;
}

.station-caption .section-code {
  color: var(--signal);
}

.station-caption h2 {
  margin: 22px 0;
  font-size: 52px;
}

.station-caption p:last-child {
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
}

.station-coordinate {
  position: absolute;
  right: var(--side);
  bottom: 50px;
  z-index: 2;
  font-size: 11px;
  text-align: right;
}

.next-front {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr 1.1fr 1fr 72px;
  align-items: center;
  min-height: 240px;
  padding: 38px var(--side);
  background: var(--signal);
  color: var(--navy);
}

.next-front > span,
.next-front > p {
  font-size: 11px;
}

.next-front h2 {
  font-size: 46px;
}

.square-link {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--navy);
  font-size: 25px;
}

/* Product */

.product-dossier {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.78fr;
  min-height: 820px;
  border-bottom: 1px solid var(--rule);
}

.dossier-copy,
.dossier-controls {
  padding: 72px 42px;
}

.dossier-copy {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
}

.dossier-copy h1 {
  margin: 70px 0 28px;
  font-size: 72px;
}

.product-lead {
  max-width: 360px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 18px;
  line-height: 1.7;
}

.dossier-copy dl {
  margin-top: 46px;
  border-top: 1px solid var(--rule);
}

.dossier-copy dl div,
.related-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
}

.add-to-bag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.add-to-bag span {
  font-size: 24px;
}

.add-to-bag--outline {
  margin-top: 38px;
  background: transparent;
  color: var(--navy);
}

.bag-feedback {
  min-height: 22px;
  padding-top: 8px;
  color: var(--rain);
  font-size: 11px;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 46px;
  background: var(--white);
}

.product-stage img {
  width: 100%;
  height: 710px;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.product-stage.is-switching img {
  opacity: 0.2;
}

.product-stage-code {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--rain);
  font-size: 9px;
}

.dossier-controls {
  border-left: 1px solid var(--rule);
}

.control-block {
  margin-bottom: 46px;
}

.control-block > span {
  display: block;
  margin-bottom: 14px;
  color: var(--rain);
  font-size: 10px;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--navy);
}

.segmented-control button {
  min-height: 44px;
  border: 0;
  border-right: 1px solid var(--navy);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.is-active {
  background: var(--navy);
  color: var(--white);
}

.condition-selector {
  border-top: 1px solid var(--rule);
}

.condition-selector button {
  display: grid;
  grid-template-columns: 36px 1fr;
  width: 100%;
  min-height: 54px;
  align-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  text-align: left;
  font-size: 11px;
  cursor: pointer;
}

.condition-selector button span {
  color: var(--rain);
  font-size: 9px;
}

.condition-selector button.is-active {
  color: var(--rain);
}

.condition-selector button.is-active::after {
  justify-self: end;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.condition-note {
  padding-top: 24px;
  border-top: 1px solid var(--navy);
}

.condition-note strong {
  font-size: 18px;
  font-weight: 500;
}

.condition-note p {
  margin-top: 12px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 14px;
  line-height: 1.65;
}

.product-route {
  padding-block: 124px;
}

.route-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr 0.8fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}

.route-heading > p:last-child {
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 17px;
}

.product-route > img {
  width: 100%;
  border: 1px solid var(--rule);
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.route-steps li {
  min-height: 150px;
  padding: 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.route-steps li:first-child {
  border-left: 1px solid var(--rule);
}

.route-steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--rain);
  font-size: 9px;
}

.route-steps strong {
  font-size: 13px;
  font-weight: 500;
}

.route-steps p {
  margin-top: 10px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 13px;
}

.worn-state {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.worn-state::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 45, 0.1);
  content: "";
}

.worn-state > img {
  height: 720px;
  object-fit: cover;
}

.worn-copy {
  position: absolute;
  top: 50%;
  right: var(--side);
  z-index: 2;
  width: 42%;
  max-width: 620px;
  transform: translateY(-50%);
}

.worn-copy .section-code {
  color: var(--signal);
}

.worn-copy h2 {
  margin: 22px 0 28px;
  font-size: 48px;
}

.worn-copy p:last-child {
  max-width: 450px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 16px;
  line-height: 1.75;
}

.worn-coordinate {
  position: absolute;
  right: var(--side);
  bottom: 30px;
  z-index: 2;
  font-size: 9px;
}

.component-register {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 124px;
}

.component-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.48fr 1fr 0.8fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
}

.component-heading > p:last-child {
  font-family: "Zodiak", "Noto Serif KR", serif;
}

.component {
  display: grid;
  grid-template-rows: auto minmax(150px, auto);
  border-top: 1px solid var(--navy);
}

.component:nth-of-type(odd) {
  border-right: 1px solid var(--rule);
}

.component img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.component > div {
  padding: 18px 22px 28px;
  border-bottom: 1px solid var(--rule);
}

.component > div span {
  color: var(--rain);
  font-size: 9px;
}

.component h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.component p {
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 14px;
}

.product-facts {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding-block: 30px 124px;
}

.product-facts h2 {
  margin-top: 68px;
}

.fact-accordion {
  border-top: 1px solid var(--navy);
}

.fact-accordion article {
  border-bottom: 1px solid var(--rule);
}

.fact-accordion h3 button {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}

.fact-accordion h3 button span {
  color: var(--rain);
  font-size: 9px;
}

.fact-accordion h3 button b {
  font-size: 20px;
  font-weight: 400;
}

.accordion-panel {
  padding: 0 44px 26px;
}

.accordion-panel p {
  max-width: 650px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  line-height: 1.75;
}

.related-product {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--warm-fog);
  color: var(--navy);
}

.related-image {
  position: relative;
  min-height: 780px;
  padding: 40px;
  background: var(--white);
}

.related-image img {
  height: 700px;
  object-fit: contain;
}

.related-image span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 9px;
}

.related-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.related-copy h2 {
  margin: 38px 0 26px;
  font-size: 58px;
}

.related-copy > p:not(.section-code) {
  max-width: 430px;
  font-family: "Zodiak", "Noto Serif KR", serif;
  font-size: 17px;
  line-height: 1.7;
}

.related-copy dl {
  margin-top: 44px;
  border-top: 1px solid rgba(8, 28, 45, 0.3);
}

.return-forecast {
  min-height: 430px;
  padding: 90px var(--side);
  background: var(--navy);
  color: var(--white);
}

.return-forecast .section-code {
  color: var(--signal);
}

.return-forecast h2 {
  margin: 46px 0 48px;
  font-size: 58px;
}

/* Footer and bag */

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding: 70px var(--side) 42px;
  background: var(--paper);
  color: var(--navy);
}

.site-footer > div:not(.footer-mark) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.site-footer > div > span {
  margin-bottom: 10px;
  color: var(--rain);
  font-size: 9px;
}

.footer-mark strong {
  font-size: 26px;
  font-weight: 600;
}

.footer-mark p {
  margin-top: 18px;
  font-size: 11px;
}

.site-footer > small {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 9px;
}

.site-footer--compact {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.field-bag {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(420px, 100%);
  padding: 30px;
  background: var(--paper);
  color: var(--navy);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.field-bag.is-open {
  transform: translateX(0);
}

.bag-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy);
}

.bag-head strong {
  font-size: 18px;
}

.bag-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.bag-content {
  min-height: 230px;
  padding: 26px 0;
}

.bag-content > p {
  color: var(--rain);
  font-family: "Zodiak", "Noto Serif KR", serif;
}

.bag-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.bag-item strong {
  display: block;
  font-size: 14px;
}

.bag-item span {
  color: var(--rain);
  font-size: 9px;
}

.bag-item button {
  align-self: start;
  width: 32px;
  height: 32px;
  border: 1px solid var(--navy);
  background: transparent;
  cursor: pointer;
}

.bag-link {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
}

.bag-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 28, 45, 0.54);
}

.bag-scrim[hidden] {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --side: 30px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .header-reading {
    display: none;
  }

  .hero-copy h1 {
    font-size: 68px;
  }

  .section-intro h2,
  .records-heading h2,
  .material-copy h2,
  .route-heading h2,
  .component-heading h2,
  .lab-intro h2,
  .anatomy-copy h2,
  .product-facts h2 {
    font-size: 46px;
  }

  .dial-layout {
    grid-template-columns: 0.78fr 1.12fr 0.7fr;
    min-height: 620px;
  }

  .instrument {
    padding-right: 28px;
  }

  .dial-register {
    padding-left: 28px;
  }

  .instrument-face strong {
    font-size: 48px;
  }

  .field-note blockquote {
    margin-top: 70px;
    font-size: 34px;
  }

  .condition-chapter--clear,
  .condition-chapter--rain {
    grid-template-columns: 0.14fr 1.08fr 0.78fr;
  }

  .condition-chapter--wind {
    grid-template-columns: 0.14fr 0.78fr 1.08fr;
  }

  .chapter-copy {
    padding: 50px 32px;
  }

  .chapter-copy h2 {
    font-size: 40px;
  }

  .product-dossier {
    grid-template-columns: 0.72fr 1.1fr 0.76fr;
  }

  .dossier-copy,
  .dossier-controls {
    padding: 54px 28px;
  }

  .dossier-copy h1 {
    font-size: 58px;
  }

  .product-stage {
    padding: 24px;
  }

  .product-stage img {
    height: 650px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
    --side: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: block;
  }

  .wordmark small {
    display: none;
  }

  .home-hero {
    min-height: 650px;
  }

  .hero-copy {
    top: 22%;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-observation {
    right: var(--side);
    bottom: 92px;
    width: 170px;
  }

  .condition-ticker {
    grid-template-columns: repeat(5, 1fr);
  }

  .condition-ticker span:first-child {
    display: none;
  }

  .condition-ticker span:last-child {
    display: none;
  }

  .section-intro,
  .lab-intro,
  .route-heading,
  .component-heading {
    grid-template-columns: 0.45fr 1.05fr;
  }

  .section-intro > p:last-child,
  .lab-intro > p:last-child,
  .route-heading > p:last-child,
  .component-heading > p:last-child {
    grid-column: 2;
    margin-top: 12px;
  }

  .dial-layout {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .dial-register {
    grid-column: 1 / -1;
    min-height: 360px;
    padding: 34px 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .dial-register h3 {
    margin: 34px 0 24px;
  }

  .dial-register .text-link {
    margin-top: 28px;
  }

  .dial-look {
    min-height: 620px;
  }

  .shell-record,
  .shell-record--reverse {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .shell-record--reverse .record-copy {
    grid-column: 1;
    padding-right: 40px;
    padding-left: 0;
    border-right: 1px solid var(--rule);
    border-left: 0;
  }

  .shell-record--reverse img {
    grid-column: 2;
  }

  .material-field {
    grid-template-columns: 1fr 1fr;
  }

  .material-copy {
    grid-column: 1 / -1;
  }

  .material-shot {
    min-height: 460px;
  }

  .field-note {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .field-note-copy {
    padding-right: 38px;
  }

  .field-note blockquote {
    font-size: 29px;
  }

  .field-note > img {
    height: 650px;
  }

  .lab-hero-title h1 {
    font-size: 82px;
  }

  .condition-chapter--clear,
  .condition-chapter--wind,
  .condition-chapter--rain {
    grid-template-columns: 0.16fr 1.1fr;
  }

  .condition-chapter--clear .chapter-copy,
  .condition-chapter--rain .chapter-copy {
    grid-column: 2;
    grid-row: 2;
  }

  .condition-chapter--clear > img,
  .condition-chapter--rain > img {
    grid-column: 2;
    grid-row: 1;
  }

  .condition-chapter--wind .chapter-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .condition-chapter--wind > img {
    grid-column: 2;
    grid-row: 2;
  }

  .chapter-code {
    grid-row: 1 / span 2;
  }

  .condition-chapter > img {
    min-height: 560px;
  }

  .condition-chapter--cold .chapter-copy {
    grid-template-columns: 0.4fr 1fr;
  }

  .condition-chapter--cold .chapter-copy > p:last-child {
    grid-column: 2;
    padding: 20px 0 0;
  }

  .anatomy-spread {
    grid-template-columns: 0.74fr 1.26fr;
    gap: 34px;
  }

  .next-front {
    grid-template-columns: 1fr 1fr 72px;
  }

  .next-front > span {
    display: none;
  }

  .product-dossier {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .dossier-controls {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr;
    gap: 32px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .control-block {
    margin-bottom: 0;
  }

  .product-stage {
    border-left: 0;
  }

  .component-register {
    width: 100%;
  }

  .component-heading {
    padding-inline: var(--side);
  }

  .product-facts {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .related-copy {
    padding: 60px 40px;
  }

  .related-copy h2 {
    font-size: 46px;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer > div:nth-of-type(4) {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --side: 18px;
    --header-height: 64px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .wordmark span {
    font-size: 19px;
  }

  .header-tools {
    gap: 5px;
  }

  .bag-trigger {
    min-width: 52px;
    border: 0;
  }

  .home-hero {
    height: calc(100svh - 56px);
    min-height: 660px;
    max-height: 820px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-copy {
    top: 122px;
    right: var(--side);
    left: var(--side);
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: 48px;
  }

  .hero-korean {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-copy .text-link {
    margin-top: 26px;
  }

  .hero-observation {
    right: var(--side);
    bottom: 86px;
    width: 145px;
    padding: 12px 0;
  }

  .hero-observation > strong {
    margin: 4px 0 10px;
    font-size: 16px;
  }

  .hero-observation dl div {
    padding: 2px 0;
    font-size: 8px;
  }

  .hero-floor {
    right: var(--side);
    bottom: 18px;
    left: var(--side);
  }

  .condition-ticker {
    grid-template-columns: repeat(4, minmax(125px, 1fr));
    overflow-x: auto;
  }

  .condition-ticker span {
    min-height: 48px;
    padding-inline: 14px;
  }

  .weather-dial,
  .shell-records,
  .product-route {
    padding-block: 88px;
  }

  .section-intro,
  .lab-intro,
  .route-heading,
  .component-heading {
    display: block;
  }

  .section-intro h2,
  .records-heading h2,
  .material-copy h2,
  .route-heading h2,
  .component-heading h2,
  .lab-intro h2,
  .anatomy-copy h2,
  .product-facts h2 {
    margin-top: 34px;
    font-size: 39px;
  }

  .section-intro > p:last-child,
  .lab-intro > p:last-child,
  .route-heading > p:last-child,
  .component-heading > p:last-child {
    margin-top: 24px;
    font-size: 15px;
  }

  .dial-layout {
    display: block;
    min-height: 0;
  }

  .instrument {
    min-height: 470px;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .instrument-face {
    width: min(90%, 360px);
  }

  .dial-look {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .dial-register {
    min-height: 340px;
    padding: 34px 0;
  }

  .dial-controls {
    grid-template-columns: 1fr 1fr;
  }

  .dial-button:nth-child(3) {
    border-left: 1px solid var(--rule);
  }

  .pressure-passage,
  .pressure-passage > img {
    min-height: 620px;
    height: 620px;
  }

  .pressure-passage > img {
    object-position: 56% center;
  }

  .passage-copy {
    top: 42px;
    right: var(--side);
  }

  .passage-copy h2 {
    font-size: 39px;
  }

  .passage-copy p:last-child {
    font-size: 15px;
  }

  .passage-index {
    font-size: 44px;
  }

  .records-heading {
    display: block;
    margin-bottom: 48px;
  }

  .shell-record,
  .shell-record--reverse {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 56px;
  }

  .record-copy,
  .shell-record--reverse .record-copy {
    order: 2;
    min-height: 470px;
    padding: 28px 0;
    border-right: 0;
    border-left: 0;
  }

  .record-copy h3 {
    margin-top: 52px;
    font-size: 35px;
  }

  .shell-record > img,
  .shell-record--reverse img {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 8 / 5;
    object-fit: cover;
  }

  .material-field {
    display: block;
  }

  .material-copy {
    padding: 58px 18px;
  }

  .material-shot {
    min-height: 0;
    aspect-ratio: 7 / 5;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .field-note {
    display: flex;
    flex-direction: column;
    padding-block: 88px;
  }

  .field-note-copy {
    order: 2;
    min-height: 520px;
    padding: 44px 0 0;
  }

  .field-note blockquote {
    margin: 60px 0 30px;
    font-size: 30px;
  }

  .field-note > img {
    order: 1;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .forecast-signup {
    display: block;
    padding: 62px 18px 78px;
  }

  .forecast-signup h2 {
    font-size: 36px;
  }

  .newsletter-form {
    margin-top: 44px;
  }

  .lab-hero {
    height: calc(100svh - 56px);
    min-height: 660px;
  }

  .lab-hero > img {
    object-position: 54% center;
  }

  .lab-hero-title {
    top: 120px;
    right: var(--side);
  }

  .lab-hero-title h1 {
    font-size: 68px;
  }

  .lab-hero-log {
    right: var(--side);
    bottom: 22px;
    left: var(--side);
    width: auto;
  }

  .condition-index {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .condition-index a {
    min-height: 64px;
  }

  .lab-intro {
    padding-block: 88px;
  }

  .condition-chapter--clear,
  .condition-chapter--wind,
  .condition-chapter--rain {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .chapter-code {
    order: 1;
    flex-direction: row;
    min-height: 72px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .condition-chapter > img {
    order: 2;
    min-height: 0;
    aspect-ratio: 7 / 5;
  }

  .condition-chapter .chapter-copy {
    order: 3;
    padding: 50px 18px 72px;
  }

  .chapter-copy h2 {
    margin-top: 42px;
    font-size: 38px;
  }

  .condition-chapter--cold {
    padding: 0 18px 76px;
  }

  .condition-chapter--cold header {
    display: block;
    margin-inline: -18px;
  }

  .condition-chapter--cold .chapter-code {
    padding-inline: 18px;
  }

  .condition-chapter--cold .chapter-copy {
    display: block;
  }

  .condition-chapter--cold .chapter-copy > p:last-child {
    padding: 22px 0 0;
  }

  .condition-chapter--cold > img {
    min-height: 0;
    height: auto;
    margin-top: 44px;
    aspect-ratio: 7 / 5;
  }

  .cold-register {
    grid-template-columns: 1fr 1fr;
  }

  .cold-register div:nth-child(2) {
    border-right: 0;
  }

  .anatomy-spread {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
    padding-block: 88px;
  }

  .station-scene,
  .station-scene > img {
    min-height: 640px;
    height: 640px;
  }

  .station-scene > img {
    object-position: 55% center;
  }

  .station-caption {
    right: var(--side);
    bottom: 48px;
  }

  .station-caption h2 {
    font-size: 40px;
  }

  .station-coordinate {
    display: none;
  }

  .next-front {
    display: grid;
    grid-template-columns: 1fr 58px;
    gap: 18px;
    min-height: 230px;
    padding: 34px 18px;
  }

  .next-front h2 {
    font-size: 35px;
  }

  .next-front > p {
    grid-column: 1;
  }

  .square-link {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
  }

  .product-dossier {
    display: flex;
    flex-direction: column;
  }

  .dossier-copy {
    order: 1;
    min-height: 610px;
    padding: 54px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .dossier-copy h1 {
    margin-top: 56px;
    font-size: 60px;
  }

  .product-stage {
    order: 2;
    min-height: 610px;
    padding: 20px;
  }

  .product-stage img {
    height: 570px;
  }

  .dossier-controls {
    order: 3;
    display: block;
    padding: 50px 18px;
  }

  .control-block {
    margin-bottom: 42px;
  }

  .route-heading {
    margin-bottom: 48px;
  }

  .route-steps {
    grid-template-columns: 1fr 1fr;
  }

  .route-steps li:nth-child(3) {
    border-left: 1px solid var(--rule);
  }

  .worn-state,
  .worn-state > img {
    min-height: 680px;
    height: 680px;
  }

  .worn-state > img {
    object-position: 42% center;
  }

  .worn-copy {
    top: auto;
    right: 18px;
    bottom: 54px;
    left: 18px;
    width: auto;
    padding: 22px;
    background: rgba(8, 28, 45, 0.8);
    transform: none;
  }

  .worn-copy h2 {
    font-size: 34px;
  }

  .worn-coordinate {
    display: none;
  }

  .component-register {
    display: block;
    padding-block: 88px;
  }

  .component-heading {
    padding-inline: 18px;
    margin-bottom: 48px;
  }

  .component {
    border-right: 0;
  }

  .component > div {
    min-height: 150px;
  }

  .product-facts {
    display: block;
    padding: 40px 18px 88px;
  }

  .fact-accordion {
    margin-top: 54px;
  }

  .related-product {
    display: flex;
    flex-direction: column;
  }

  .related-image {
    min-height: 0;
    padding: 26px 18px;
  }

  .related-image img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
  }

  .related-copy {
    min-height: 550px;
    padding: 68px 18px;
  }

  .related-copy h2 {
    font-size: 44px;
  }

  .return-forecast {
    min-height: 390px;
    padding: 76px 18px;
  }

  .return-forecast h2 {
    font-size: 42px;
  }

  .site-footer,
  .site-footer--compact {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
    padding: 56px 18px 30px;
  }

  .footer-mark {
    grid-column: 1 / -1;
  }

  .site-footer > small {
    margin-top: 18px;
  }
}

@media (max-width: 410px) {
  .hero-copy h1 {
    font-size: 42px;
  }

  .section-intro h2,
  .records-heading h2,
  .material-copy h2,
  .route-heading h2,
  .component-heading h2,
  .lab-intro h2,
  .anatomy-copy h2,
  .product-facts h2 {
    font-size: 35px;
  }

  .hero-observation {
    display: none;
  }

  .dial-button {
    min-height: 72px;
    font-size: 10px;
  }

  .lab-hero-title h1 {
    font-size: 58px;
  }

  .dossier-copy h1 {
    font-size: 52px;
  }

  .route-steps {
    grid-template-columns: 1fr;
  }

  .route-steps li,
  .route-steps li:nth-child(3) {
    border-left: 1px solid var(--rule);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Brand differentiation tune: frame the weather dial with paired pressure lines. */
.dial-layout {
  border-top: 3px double var(--rain);
  border-bottom: 3px double var(--rain);
}

@media (max-width: 767px) {
  .dial-layout {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}
