:root {
  --white: #fffdfd;
  --paper: #fff7fa;
  --blush: #f6c6d8;
  --pink: #ef8fb6;
  --hot: #dc3f82;
  --ink: #181315;
  --muted: #74656b;
  --line: rgba(24, 19, 21, 0.16);
  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { top: 16px; }

.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 38px;
  color: var(--ink);
  border-bottom: 1px solid rgba(220,63,130,0.16);
  background: rgba(255, 253, 253, 0.88);
  backdrop-filter: blur(14px);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease;
}
.monogram {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}
.monogram strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  background: var(--hot);
  font-family: var(--serif);
  font-size: 18px;
}
.monogram span { font-size: 10px; font-weight: 800; line-height: 1.25; letter-spacing: 0.12em; text-transform: uppercase; }
.school-marks { display: flex; align-items: center; gap: 10px; }
.school-marks img:first-child { width: 80px; height: auto; filter: none; }
.school-marks img:nth-of-type(2) { width: 38px; height: 38px; object-fit: contain; filter: none; }
.school-marks > span { width: 1px; height: 30px; background: var(--line); }
.school-marks strong { font-size: 9px; line-height: 1.15; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-trigger {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 28px;
  align-items: center;
  gap: 3px 14px;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-trigger span { grid-row: 1 / span 2; }
.menu-trigger i { display: block; width: 28px; height: 1px; background: currentColor; transition: transform 240ms ease; }
.menu-trigger[aria-expanded="true"] i:first-of-type { transform: translateY(2px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] i:last-of-type { transform: translateY(-2px) rotate(-45deg); }
.masthead.is-scrolled {
  color: var(--ink);
  border-color: rgba(24,19,21,0.12);
  background: rgba(255,253,253,0.94);
}
.masthead.is-scrolled .monogram strong { color: white; background: var(--ink); }
.masthead.is-scrolled .school-marks img { filter: none; }
.masthead.is-scrolled .school-marks > span { background: var(--line); }

.menu-panel {
  position: fixed;
  inset: 78px 0 0;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0 8vw;
  padding: 6vh 12vw;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7fa, var(--blush));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
}
.menu-panel.open { opacity: 1; visibility: visible; transform: none; }
.menu-caption { grid-column: 1 / -1; margin-bottom: 30px; color: var(--pink); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.menu-panel a {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24,19,21,0.18);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.12;
  text-decoration: none;
}
.menu-panel a span { color: var(--pink); font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }

.cover {
  min-height: 100svh;
  position: relative;
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(239,143,182,0.38), transparent 30%),
    radial-gradient(circle at 14% 34%, rgba(246,198,216,0.52), transparent 23%),
    linear-gradient(128deg, #fffefe 0%, #fff6fa 57%, #f9dce7 100%);
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background-image: linear-gradient(105deg, transparent 0 45%, rgba(255,255,255,0.78) 45% 46%, transparent 46% 100%);
}
.cover-border { position: absolute; inset: 92px 18px 18px; z-index: 7; border: 1px solid rgba(220,63,130,0.34); pointer-events: none; }
.cover-mast {
  position: absolute;
  left: 4.3vw;
  right: 4.3vw;
  top: 102px;
  z-index: 4;
}
.cover-mast span { display: block; margin-left: 8px; font-family: var(--serif); font-size: 15px; font-style: italic; letter-spacing: 0.04em; }
.cover-mast strong {
  display: block;
  font-family: var(--serif);
  color: var(--hot);
  font-size: clamp(46px, 4.2vw, 80px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: nowrap;
}
.cover-image { position: absolute; inset: 78px 0 0; z-index: 2; }
.spotlight {
  position: absolute;
  width: min(48vw, 820px);
  height: 92%;
  left: 50%;
  bottom: -9%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at 50% 37%, rgba(255,255,255,0.2), rgba(246,198,216,0.07) 44%, transparent 70%);
  filter: blur(2px);
}
.cover-image img {
  position: absolute;
  left: 50%;
  bottom: -9%;
  transform: translateX(-50%);
  height: min(88vh, 950px);
  width: auto;
  max-width: 63vw;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 28px rgba(96,37,64,0.2));
}
.cover-story { position: absolute; z-index: 5; width: 220px; }
.cover-story span { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 25px; line-height: 1; }
.cover-story p { margin: 0; color: #755966; font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.4; }
.story-left { left: 6vw; top: 39%; }
.story-right { right: 6vw; bottom: 16%; text-align: right; }
.cover-copy { position: absolute; left: 50%; bottom: 8%; z-index: 6; width: min(940px, 72vw); transform: translateX(-50%); text-align: center; }
.name-caption { margin: 0 0 8px; color: white; font-family: var(--serif); font-size: 15px; font-style: italic; text-shadow: 0 2px 14px rgba(0,0,0,0.72); }
.kicker { margin: 0 0 18px; color: var(--hot); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
h1 {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(84px, 9vw, 170px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.065em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.72);
}
h1 span {
  display: block;
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.18em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cover-enter { position: absolute; left: 6vw; bottom: 5%; z-index: 7; padding-bottom: 5px; border-bottom: 1px solid rgba(220,63,130,0.7); color: var(--hot); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-decoration: none; text-transform: uppercase; }
.cover-enter span { margin-left: 12px; }
.cover-formula { position: absolute; right: 4.3vw; top: 29%; z-index: 1; color: rgba(220,63,130,0.12); font-family: var(--serif); font-size: clamp(38px, 4vw, 76px); writing-mode: vertical-rl; }
.issue-label { position: absolute; right: 4.3vw; top: 24%; z-index: 5; font-size: 9px; font-weight: 800; line-height: 1.8; letter-spacing: 0.16em; text-align: right; text-transform: uppercase; }
.issue-label strong { color: var(--pink); font-size: 12px; }

.chapter { position: relative; padding: 140px max(6vw, 70px); }
.chapter-label { display: flex; align-items: center; gap: 16px; color: var(--hot); }
.chapter-label span { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; }
.chapter-label p { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.chapter-label.light { color: var(--pink); }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(56px, 6vw, 112px); font-weight: 600; line-height: 0.96; letter-spacing: -0.055em; }

.profile { min-height: 920px; display: grid; grid-template-columns: 86px 1.1fr 0.72fr; gap: clamp(40px, 6vw, 110px); align-items: start; background: var(--white); }
.profile .chapter-label { writing-mode: vertical-rl; transform: rotate(180deg); padding-top: 10px; }
.profile-title { max-width: 900px; }
.profile-title h2 { font-size: clamp(54px, 5.6vw, 100px); }
.profile-body { grid-column: 3; padding-top: 34px; }
.profile-body p { color: var(--muted); }
.profile-body .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 2vw, 36px); line-height: 1.28; }
.profile-quote { grid-column: 2 / 3; margin: 62px 0 0; max-width: 680px; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(27px, 2.4vw, 42px); font-style: italic; line-height: 1.25; }
.molecule-caption { position: absolute; right: 3vw; bottom: 3%; color: rgba(220,63,130,0.08); font-family: var(--serif); font-size: 84px; white-space: nowrap; }

.education { background: var(--paper); padding: 120px 0 0; }
.education-head { display: grid; grid-template-columns: 160px 1fr; gap: 5vw; align-items: start; padding: 0 max(6vw,70px) 74px; }
.education-head > div { color: var(--hot); }
.education-head span { font-size: 12px; font-weight: 800; }
.education-head p { margin: 5px 0 0; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.education-spread { display: grid; grid-template-columns: 1fr 1fr; }
.education-panel { min-height: 650px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(44px, 6vw, 96px); overflow: hidden; }
.education-panel.dlsud { color: var(--ink); background: white; border-top: 8px solid var(--ink); }
.education-panel.mcu { color: var(--ink); background: #fff0f6; border-top: 8px solid var(--hot); }
.panel-year { margin: 0; font-family: var(--serif); font-size: clamp(70px, 8vw, 150px); line-height: 1; }
.education-panel span { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.education-panel h3 { max-width: 620px; margin: 16px 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 70px); line-height: 1.04; }
.education-panel div > p { color: inherit; opacity: 0.7; }
.panel-formula { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }

.experience { display: grid; grid-template-columns: 46% 54%; min-height: 1050px; color: var(--ink); background: #fff8fb; }
.runway-frame { position: sticky; top: 78px; height: calc(100svh - 78px); overflow: hidden; }
.runway-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(66,28,46,0.72)); }
.runway-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.runway-frame > p { position: absolute; left: 38px; right: 38px; bottom: 30px; z-index: 2; margin: 0; display: flex; justify-content: space-between; gap: 30px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.runway-frame > p span { color: var(--pink); }
.experience-copy { padding: 130px clamp(42px, 6vw, 100px); }
.experience-copy h2 { margin: 38px 0 90px; }
.role-list { border-top: 1px solid var(--line); }
.role-list article { display: grid; grid-template-columns: 120px 1fr; gap: 10px 28px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.role-list article > span { grid-row: 1 / span 3; color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.role-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 44px); line-height: 1.1; }
.role-list p { margin: 0; color: var(--muted); }
.role-list h3 + p { color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.learning { display: grid; grid-template-columns: 78px minmax(0, 1.1fr) minmax(320px, 0.72fr); gap: 54px; background: var(--white); }
.learning > .chapter-label { writing-mode: vertical-rl; transform: rotate(180deg); }
.learning-head { grid-column: 2; }
.learning-head h2 { max-width: 900px; }
.sequence { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.sequence-step { padding: 22px 14px 22px 0; border: 0; border-bottom: 1px solid var(--line); color: var(--muted); background: none; text-align: left; cursor: pointer; }
.sequence-step + .sequence-step { padding-left: 18px; border-left: 1px solid var(--line); }
.sequence-step span { display: block; margin-bottom: 16px; color: var(--pink); font-size: 10px; font-weight: 800; }
.sequence-step strong { font-family: var(--serif); font-size: clamp(25px, 2.4vw, 38px); }
.sequence-step.active { color: var(--hot); }
.sequence-copy { grid-column: 2; min-height: 230px; padding-top: 34px; }
.sequence-copy p { display: none; max-width: 790px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(24px, 2.1vw, 34px); line-height: 1.35; }
.sequence-copy p.active { display: block; animation: copyIn 350ms ease both; }
@keyframes copyIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.editorial-photo { grid-column: 3; grid-row: 1 / span 4; align-self: stretch; margin: -70px 0 0; }
.editorial-photo img { width: 100%; height: calc(100% - 70px); min-height: 760px; object-fit: cover; object-position: center top; }
.editorial-photo figcaption { margin-top: 18px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.achievement { min-height: 850px; position: relative; display: grid; grid-template-columns: 1fr 0.35fr; align-content: center; gap: 50px; padding: 100px max(6vw,70px); overflow: hidden; color: var(--ink); background: linear-gradient(132deg, white 0%, #fff4f8 62%, #f8d6e3 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.achievement-label { grid-column: 1 / -1; color: var(--hot); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.achievement h2 { color: var(--hot); font-size: clamp(110px, 16vw, 300px); line-height: 0.72; }
.achievement-years { margin: 0; align-self: end; font-family: var(--serif); font-size: clamp(48px, 5vw, 88px); line-height: 0.9; }
.achievement-school { grid-column: 1; max-width: 520px; margin: 42px 0 0; padding-top: 22px; border-top: 1px solid rgba(24,19,21,0.24); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.achievement-code { position: absolute; right: -1%; bottom: 3%; color: rgba(220,63,130,0.08); font-family: var(--serif); font-size: clamp(58px, 8vw, 140px); white-space: nowrap; }

.reflection { min-height: 920px; position: relative; display: grid; grid-template-columns: 120px 1.2fr 0.62fr; align-items: center; gap: 70px; padding: 130px max(6vw,70px); overflow: hidden; background: var(--paper); }
.reflection-number { align-self: start; color: var(--hot); font-size: 12px; font-weight: 800; }
.reflection-copy { max-width: 900px; }
.reflection-copy > p:not(.kicker) { max-width: 700px; color: var(--muted); }
.reflection-goal { align-self: end; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reflection-goal span { color: var(--hot); font-size: 10px; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.reflection-goal strong { display: block; margin: 10px 0; font-family: var(--serif); font-size: clamp(32px, 3vw, 50px); line-height: 1.1; }
.reflection-goal p { color: var(--muted); }
.reflection-word { position: absolute; left: 2%; bottom: -7%; color: rgba(220,63,130,0.055); font-family: var(--serif); font-size: clamp(100px, 17vw, 310px); white-space: nowrap; }

.contact { min-height: 780px; display: grid; grid-template-columns: 1fr 0.8fr; align-content: center; gap: 9vw; padding: 120px max(6vw,70px) 70px; color: var(--ink); background: linear-gradient(135deg, #f8cada, #fff4f8); }
.contact-name > p { margin: 0 0 22px; color: var(--pink); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-name h2 { font-size: clamp(56px, 6.2vw, 112px); }
.contact-links { display: grid; align-self: center; }
.contact-links a { display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(24,19,21,0.2); color: #5d414e; text-decoration: none; }
.contact-links span { color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-footer { grid-column: 1 / -1; align-self: end; display: flex; justify-content: space-between; gap: 24px; margin-top: 100px; padding-top: 24px; border-top: 1px solid rgba(24,19,21,0.18); color: #775c68; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.cover-copy.reveal { transform: translate(-50%, 26px); }
.cover-copy.reveal.is-visible { transform: translateX(-50%); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .cover-mast strong { font-size: clamp(72px, 10vw, 110px); }
  .cover-story { width: 180px; }
  .cover-story span { font-size: 21px; }
  .cover-image img { max-width: 72vw; }
  .profile { grid-template-columns: 58px 1fr 0.78fr; gap: 44px; }
  .learning { grid-template-columns: 56px 1fr 0.68fr; gap: 36px; }
  .reflection { grid-template-columns: 60px 1fr; }
  .reflection-goal { grid-column: 2; max-width: 620px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 68px; }
  .masthead { height: 68px; grid-template-columns: 1fr auto; padding: 0 16px; }
  .monogram span { display: none; }
  .monogram strong { width: 36px; height: 36px; }
  .school-marks { display: none; }
  .menu-panel { inset: 68px 0 0; grid-template-columns: 1fr; padding: 5vh 24px; overflow-y: auto; }
  .menu-panel a { font-size: 38px; padding: 10px 0; }
  .cover { min-height: 100svh; padding-top: 68px; }
  .cover-border { inset: 80px 10px 10px; }
  .cover-mast { left: 18px; right: 18px; top: 91px; }
  .cover-mast span { margin-left: 3px; font-size: 11px; }
  .cover-mast strong { margin-top: 2px; font-size: clamp(34px, 9.2vw, 39px); letter-spacing: -0.045em; }
  .cover-image { inset: 68px 0 0; }
  .cover-image img { bottom: -4%; height: 77svh; max-width: 124vw; }
  .spotlight { width: 125vw; height: 82%; bottom: -5%; }
  .story-left { left: 24px; top: 27%; width: 145px; }
  .cover-story span { font-size: 18px; }
  .cover-story p { font-size: 13px; }
  .story-right { display: none; }
  .cover-copy { bottom: 9.5%; width: 92vw; }
  .name-caption { margin-bottom: 6px; font-size: 12px; }
  h1 { font-size: clamp(63px, 20vw, 82px); line-height: 0.8; }
  h1 span { margin-bottom: 9px; font-size: 0.2em; }
  .cover-enter { left: 24px; bottom: 26px; }
  .issue-label { top: 176px; right: 22px; }
  .cover-formula { top: 37%; right: 18px; font-size: 32px; }
  .chapter { padding: 90px 22px; }
  h2 { font-size: clamp(50px, 14vw, 72px); }
  .profile { min-height: auto; display: block; }
  .profile .chapter-label, .learning > .chapter-label { writing-mode: initial; transform: none; padding: 0; }
  .profile-title { margin: 32px 0 42px; }
  .profile-title h2 { font-size: clamp(47px, 13vw, 68px); }
  .profile-body { padding: 0; }
  .profile-quote { margin-top: 42px; }
  .molecule-caption { font-size: 42px; }
  .education { padding-top: 86px; }
  .education-head { display: block; padding: 0 22px 46px; }
  .education-head h2 { margin-top: 28px; }
  .education-spread { grid-template-columns: 1fr; }
  .education-panel { min-height: 520px; padding: 42px 24px; }
  .experience { display: flex; flex-direction: column; }
  .runway-frame { position: relative; top: auto; height: 720px; }
  .runway-frame > p { left: 20px; right: 20px; }
  .experience-copy { padding: 86px 22px; }
  .experience-copy h2 { margin: 30px 0 54px; }
  .role-list article { grid-template-columns: 1fr; }
  .role-list article > span { grid-row: auto; }
  .learning { display: block; }
  .learning-head { margin-top: 30px; }
  .sequence { grid-template-columns: 1fr; margin-top: 48px; }
  .sequence-step + .sequence-step { padding-left: 0; border-left: 0; }
  .sequence-step { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; }
  .sequence-step span { margin: 0; }
  .sequence-copy { min-height: 310px; }
  .editorial-photo { margin: 54px 0 0; }
  .editorial-photo img { min-height: 0; height: 580px; }
  .achievement { min-height: 720px; grid-template-columns: 1fr; gap: 30px; padding: 86px 22px; }
  .achievement h2 { font-size: clamp(105px, 34vw, 150px); }
  .achievement-years { font-size: 56px; }
  .achievement-code { font-size: 48px; }
  .reflection { min-height: auto; display: block; padding: 90px 22px; }
  .reflection-copy { margin-top: 32px; }
  .reflection-goal { margin-top: 54px; }
  .reflection-word { font-size: 78px; }
  .contact { min-height: auto; grid-template-columns: 1fr; gap: 64px; padding: 90px 22px 54px; }
  .contact-name h2 { font-size: clamp(48px, 13vw, 66px); }
  .contact-links a { grid-template-columns: 72px minmax(0,1fr); gap: 12px; }
  .contact-footer { flex-direction: column; margin-top: 50px; }
}

@media (max-width: 430px) {
  .cover-image img { height: 75svh; }
  .runway-frame { height: 650px; }
  .editorial-photo img { height: 520px; }
}
