:root {
  color-scheme: light;
  --navy: #0f1f3d;
  --navy-900: #091327;
  --navy-50: #f4f6fa;
  --white: #ffffff;
  --cream: #fafaf8;
  --platinum: #f3f2ef;
  --line: #e2e2e2;
  --line-strong: #d4d4d4;
  --gold: #c9a96e;
  --gold-strong: #b8924b;
  --emerald: #1b4d3e;
  --pink: #f5e6e0;
  --text: #1a1a1a;
  --muted: #5e6470;
  --error: #a23b2a;
  --shadow: 0 4px 12px rgb(15 31 61 / 0.05);
  --shadow-soft: 0 1px 2px rgb(15 31 61 / 0.04);
  --radius: 6px;
  --container: 1320px;
  --header: 66px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgb(201 169 110 / 0.55);
  outline-offset: 3px;
}

.skip-link {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  color: var(--white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  z-index: 100;
}

.site-header.is-solid,
.site-header.force-solid {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.header-inner,
.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 32px;
  width: 100%;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 26px;
  min-height: var(--header);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
}

.brand-name::after {
  background: var(--gold);
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.brand:focus-visible .brand-name::after {
  transform: scaleX(1);
}

.brand-caption {
  color: inherit;
  font-size: 12px;
  opacity: 0.72;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.nav-menu-button {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
  padding: 9px 10px;
  position: relative;
}

.nav-link:hover,
.nav-menu-button:hover,
.nav-link.is-active,
.nav-menu-button.is-active {
  color: inherit;
  background: transparent;
}

.nav-link::after,
.nav-menu-button::after {
  background: var(--gold);
  bottom: 4px;
  content: "";
  height: 1px;
  left: 10px;
  position: absolute;
  right: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-menu-button:hover::after,
.nav-link.is-active::after,
.nav-menu-button.is-active::after {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.nav-popover,
.language-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  display: none;
  min-width: 240px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
}

.nav-menu:hover .nav-popover,
.nav-menu:focus-within .nav-popover,
.language.is-open .language-menu {
  display: grid;
}

.nav-popover a,
.language-menu a {
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  padding: 10px 12px;
}

.nav-popover a:hover,
.language-menu a:hover,
.language-menu a.is-active {
  background: var(--platinum);
  color: var(--navy);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.age-badge {
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 7px;
}

.language {
  position: relative;
}

.language-trigger,
.menu-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  min-height: 40px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.menu-trigger {
  display: none;
}

.mobile-sheet {
  background: var(--cream);
  color: var(--navy);
  display: none;
  inset: 0;
  overflow-y: auto;
  padding: 22px;
  position: fixed;
  z-index: 200;
}

.mobile-sheet.is-open {
  display: block;
}

.mobile-sheet-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  min-height: 44px;
  min-width: 44px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  padding: 14px 0;
}

.mobile-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mobile-languages a {
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.86);
  font-size: 13px;
  padding: 7px 10px;
}

main {
  min-height: 70vh;
}

.hero {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  min-height: 80svh;
  overflow: hidden;
  padding: calc(var(--header) + 80px) 0 80px;
  position: relative;
}

.hero-content {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-media::after {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  content: "";
  inset: 12px -12px -12px 12px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 32px;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 5.5vw, 76px);
  max-width: 920px;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 48px);
}

h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 620px;
}

.hero-actions,
.section-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: #1a2f52;
  border-color: #1a2f52;
}

.hero .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.hero .button-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.button-text {
  color: var(--navy);
  font-weight: 700;
  padding: 0;
}

.icon {
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.hero-badges,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  align-items: center;
  background: var(--platinum);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  padding: 7px 11px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero .badge {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  padding: 0;
}

.hero .badge .icon {
  color: var(--gold);
  font-weight: 700;
}

.badge-gold {
  border-color: rgba(201, 169, 110, 0.5);
}

.badge-emerald {
  background: rgba(27, 77, 62, 0.1);
  border-color: rgba(27, 77, 62, 0.18);
  color: var(--emerald);
}

.section {
  padding: 84px 0;
}

.section-muted {
  background: var(--platinum);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-pink {
  background: var(--pink);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  margin-bottom: 42px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-navy .section-head p,
.section-navy .lead {
  color: rgb(255 255 255 / 0.75);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-width: 0;
  padding: 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(201, 169, 110, 0.55);
  box-shadow: var(--shadow);
}

.direction-card {
  align-content: start;
  display: grid;
  gap: 18px;
  min-height: auto;
}

.direction-card-top {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.direction-title {
  min-width: 0;
}

.direction-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.direction-thumb {
  aspect-ratio: 1;
  background: var(--platinum);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 26px rgb(15 31 61 / 0.14);
  flex: 0 0 98px;
  outline: 1px solid rgba(201, 169, 110, 0.55);
  overflow: hidden;
  width: 98px;
}

.direction-thumb img {
  filter: saturate(0.88) contrast(1.03);
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
  width: 100%;
}

.direction-card:hover .direction-thumb img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.05);
}

.direction-card h3 {
  margin-top: 4px;
}

.direction-card p,
.card p,
.list p,
.timeline p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.card-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.card-media img {
  filter: saturate(0.85);
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
  width: 100%;
}

.card:hover .card-media img {
  filter: saturate(1);
}

.stats-bar {
  background: var(--platinum);
  color: var(--navy);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat {
  border-left: 1px solid var(--line);
  padding: 8px 28px;
  text-align: center;
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  color: var(--navy);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-transform: uppercase;
}

.split {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.split-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.split-media-caption {
  background: rgb(15 31 61 / 0.88);
  bottom: 18px;
  color: var(--white);
  left: 18px;
  padding: 14px 16px;
  position: absolute;
  right: 18px;
}

.list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.list-item {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 28px 1fr;
}

.check {
  align-items: center;
  color: var(--navy);
  display: grid;
  font-weight: 700;
  height: 28px;
  place-items: center;
  width: 28px;
}

.partners-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-logo {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 72px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.partner-logo:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.faq-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 22px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--gold);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 22px;
}

.cta-band {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 64px;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 54px);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
  max-width: 640px;
}

.cta-band .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.cta-band .button-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.form-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.candidate-quiz {
  display: grid;
  gap: 24px;
}

.quiz-progress {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.quiz-progress-item {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex: 1;
  gap: 12px;
  position: relative;
}

.quiz-progress-item:not(:last-child)::after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
  margin: 0 12px;
}

.quiz-progress-bar {
  display: none;
}

.quiz-progress-kicker {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  place-items: center;
  width: 32px;
}

.quiz-progress-item strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.quiz-progress-item.is-active .quiz-progress-kicker {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.quiz-progress-item.is-active strong {
  color: var(--navy);
}

.quiz-progress-item.is-complete .quiz-progress-kicker {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.quiz-progress-item.is-complete strong {
  color: var(--emerald);
}

.quiz-step:not(.is-active) {
  display: none;
}

.quiz-actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 24px;
}

.quiz-actions-end {
  justify-content: flex-end;
}

.quiz-actions .button-outline {
  color: var(--navy);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.form-subsection {
  border: 1px solid rgb(15 31 61 / 0.1);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: 18px;
}

.form-subsection.full {
  grid-column: 1 / -1;
}

label,
.field-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-pill {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-weight: 600;
  gap: 7px;
  min-height: 42px;
  padding: 8px 14px;
}

.radio-pill input {
  accent-color: var(--navy);
  min-height: 16px;
  width: 16px;
}

.radio-pill:has(input:checked) {
  border-color: var(--navy);
  color: var(--navy);
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
  outline: 0;
}

.checkbox-field {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 22px 1fr;
}

.checkbox-field input {
  height: 20px;
  margin-top: 2px;
  min-height: 20px;
  padding: 0;
  width: 20px;
}

.help,
.error-text {
  color: var(--muted);
  font-size: 13px;
}

.error-text {
  color: var(--error);
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.checkbox-field.has-error input {
  border-color: var(--error);
}

.field.has-error .error-text,
.checkbox-field.has-error .error-text {
  display: block;
}

.category-matrix {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  overflow: hidden;
}

.category-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(76px, auto));
  padding: 11px 12px;
}

.category-row:last-child {
  border-bottom: 0;
}

.category-row legend {
  color: var(--navy);
  font-weight: 800;
}

.category-row label {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-weight: 700;
  gap: 6px;
}

.form-status {
  border-radius: var(--radius);
  color: var(--muted);
  min-height: 24px;
}

.form-status[data-status="success"] {
  color: var(--emerald);
  font-weight: 800;
}

.form-status[data-status="error"] {
  color: #a23b2a;
  font-weight: 800;
}

.form-panel.is-loading {
  opacity: 0.72;
}

.info-banner {
  background: rgb(15 31 61 / 0.05);
  border: 1px solid rgb(15 31 61 / 0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--text);
  padding: 18px;
}

.info-banner.success {
  background: rgb(27 77 62 / 0.08);
  border-color: rgb(27 77 62 / 0.16);
  border-left-color: var(--emerald);
}

.info-banner.fashion {
  background: rgb(245 230 224 / 0.75);
  border-color: rgb(201 169 110 / 0.25);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--platinum);
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.tabs {
  display: grid;
  gap: 22px;
}

.tab-list {
  background: var(--platinum);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
}

.tab-button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
  min-height: 42px;
  padding: 8px 13px;
}

.tab-button[aria-selected="true"] {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 1px 4px rgb(15 31 61 / 0.08);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.editorial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.25fr 0.75fr;
}

.editorial-feature {
  min-height: 560px;
}

.editorial-feature img,
.editorial-small img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-small {
  display: grid;
  gap: 20px;
}

.editorial-small figure,
.editorial-feature {
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.lookbook-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lookbook-item {
  background: var(--white);
  border: 1px solid rgb(201 169 110 / 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.lookbook-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.lookbook-item figcaption {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 13px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: 42px 1fr;
  padding: 18px;
}

.step-number {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  font-weight: 900;
  height: 42px;
  place-items: center;
  width: 42px;
}

.contact-channel-panel {
  display: grid;
  gap: 24px;
}

.contact-icons {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-icon {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  min-height: 82px;
  padding: 13px 14px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-icon:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-icon-mark {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  display: grid;
  flex: 0 0 auto;
  height: 48px;
  place-items: center;
  width: 48px;
}

.contact-icon-mark svg {
  display: block;
  fill: currentColor;
  height: 27px;
  width: 27px;
}

.contact-icon:nth-child(4) .contact-icon-mark svg,
.contact-icon:nth-child(5) .contact-icon-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-icon span:last-child {
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.map-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgb(15 31 61 / 0.08), rgb(201 169 110 / 0.12));
  border: 1px dashed rgb(15 31 61 / 0.22);
  border-radius: var(--radius);
  color: var(--navy);
  display: grid;
  gap: 6px;
  margin-top: 24px;
  min-height: 180px;
  padding: 24px;
  text-align: center;
}

.map-placeholder strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

.map-placeholder span {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.legal-nav {
  align-self: start;
  background: var(--platinum);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 12px;
  position: sticky;
  top: 100px;
}

.legal-nav a {
  border-radius: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 10px;
}

.legal-nav a:hover {
  background: var(--white);
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.legal-content h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.footer-col {
  align-content: start;
  display: grid;
  gap: 12px;
}

.footer-col h3 {
  color: rgba(255, 255, 255, 0.56);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 24px;
}

.chat-widget {
  align-items: center;
  background: var(--navy);
  border: 1px solid rgb(201 169 110 / 0.55);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: inline-flex;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  position: fixed;
  right: 22px;
  z-index: 80;
}

.chat-widget span:last-child {
  display: none;
}

.chat-widget.is-ready span:last-child {
  display: inline;
}

.sticky-apply {
  background: var(--gold);
  bottom: 0;
  color: var(--navy);
  display: none;
  font-weight: 900;
  left: 0;
  padding: 12px 18px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 70;
}

.modal-backdrop {
  align-items: center;
  background: rgb(9 19 39 / 0.62);
  display: none;
  inset: 0;
  padding: 20px;
  position: fixed;
  z-index: 300;
}

.modal-backdrop.is-open {
  display: grid;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 520px;
  padding: 28px;
  width: min(100%, 520px);
}

.modal h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 24px;
}

.modal p {
  color: var(--muted);
  margin-top: 10px;
}

.modal-actions {
  display: flex;
  justify-content: end;
  margin-top: 24px;
}

.noscript {
  padding: 40px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .header-inner {
    gap: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

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

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

  .section-head,
  .split,
  .form-layout,
  .legal-layout,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

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

  .legal-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .header-inner,
  .container {
    padding: 0 18px;
  }

  .brand-caption,
  .language {
    display: none;
  }

  .hero {
    min-height: 70svh;
    padding: calc(var(--header) + 46px) 0 56px;
  }

  .hero::before,
  .hero.hero-soft::before {
    background: rgb(9 19 39 / 0.72);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 260px;
    order: -1;
  }

  .section {
    padding: 66px 0;
  }

  .contact-channels-section {
    padding-top: 24px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .partners-grid,
  .lookbook-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .card,
  .form-panel {
    padding: 22px;
  }

  body.form-section-in-view {
    padding-bottom: 0;
  }

  body.form-section-in-view .sticky-apply {
    display: none;
  }

  .candidate-quiz {
    gap: 20px;
  }

  .candidate-quiz input,
  .candidate-quiz select,
  .candidate-quiz textarea {
    font-size: 16px;
    min-height: 52px;
  }

  .candidate-quiz textarea {
    min-height: 128px;
  }

  .candidate-quiz .form-grid {
    gap: 16px;
  }

  .candidate-quiz .form-subsection {
    gap: 16px;
    padding: 16px;
  }

  .candidate-quiz .radio-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .candidate-quiz .radio-pill {
    border-radius: var(--radius);
    min-height: 48px;
    width: 100%;
  }

  .direction-card-top {
    gap: 14px;
  }

  .direction-thumb {
    border-width: 3px;
    flex-basis: 76px;
    width: 76px;
  }

  .quiz-progress {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -4px -2px 4px;
    padding: 0 0 12px;
    position: sticky;
    top: var(--header);
    z-index: 20;
  }

  .quiz-progress-item {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    min-width: 0;
    text-align: center;
  }

  .quiz-progress-item:not(:last-child)::after {
    display: none;
  }

  .quiz-progress-kicker {
    flex: 0 0 28px;
    font-size: 10px;
    height: 28px;
    width: 28px;
  }

  .category-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .category-row label {
    min-height: 34px;
  }

  .quiz-progress-item strong {
    font-size: 12px;
  }

  .quiz-actions,
  .quiz-actions-end {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .quiz-actions .button,
  .quiz-actions-end .button {
    min-height: 52px;
    width: 100%;
  }

  .candidate-quiz .checkbox-field {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    grid-template-columns: 28px 1fr;
    padding: 14px;
  }

  .candidate-quiz .checkbox-field input {
    height: 22px;
    min-height: 22px;
    width: 22px;
  }

  .candidate-quiz .checkbox-field label {
    line-height: 1.35;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

  .chat-widget {
    display: none;
  }

  .sticky-apply {
    display: block;
  }

  body {
    padding-bottom: 52px;
  }
}

@media (max-width: 420px) {
  .contact-icons {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 22px;
  }

  h1 {
    font-size: 40px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
