:root {
  --navy: #071d3d;
  --navy-2: #0d2a4f;
  --navy-3: #173e68;
  --ink: #13243a;
  --cream: #f5f1e9;
  --paper: #ffffff;
  --gold: #c7a35b;
  --gold-bright: #d8b86f;
  --sky: #79bde3;
  --muted: #667180;
  --line: rgba(7, 29, 61, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 22px 60px rgba(11, 30, 53, 0.12);
  --radius: 22px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

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

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.announcement {
  min-height: 34px;
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 34px;
  text-align: center;
}

.announcement span {
  color: var(--gold-bright);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 216px;
  width: 216px;
  height: 56px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 276px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

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

.main-nav > a,
.nav-group > summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: #344153;
  border-radius: 9px;
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.main-nav > a:hover,
.nav-group > summary:hover,
.main-nav > a[aria-current="page"] {
  color: var(--navy);
  background: rgba(180, 150, 97, 0.12);
}

.nav-group {
  position: relative;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 8px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.nav-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 268px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-popover a {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-popover a:hover,
.nav-popover a[aria-current="page"] {
  color: var(--navy);
  background: var(--cream);
}

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

.language-link {
  min-width: 38px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 4px auto;
  content: "";
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

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

.button--gold:hover {
  background: #e0c58d;
}

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

.button--navy:hover {
  background: var(--navy-2);
}

.button--outline {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.44);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.button--text {
  min-height: auto;
  padding: 0;
  color: var(--navy);
  border-radius: 0;
}

.button--text::after,
.arrow-link::after {
  content: "→";
  font-size: 1.1em;
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  top: -260px;
  left: -180px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(210, 175, 109, 0.22);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  bottom: -340px;
  left: 150px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(121, 189, 227, 0.16);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  min-height: 680px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 68px 96px max(20px, calc((100vw - var(--max)) / 2));
}

.hero-media {
  position: relative;
  min-height: 620px;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 30, 53, 0.4) 22%, transparent 58%);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  width: min(330px, calc(100% - 64px));
  padding: 20px 22px;
  background: rgba(11, 30, 53, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 5.65rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.35;
}

.hero .lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.microline span {
  position: relative;
}

.microline span + span::before {
  position: absolute;
  left: -11px;
  content: "•";
  color: var(--gold);
}

.metric-strip {
  position: relative;
  z-index: 4;
  color: var(--navy);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

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

.metric {
  min-height: 138px;
  padding: 30px 32px;
  border-left: 1px solid var(--line);
}

.metric:last-child {
  border-right: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

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

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

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

.section--navy p {
  color: rgba(255, 255, 255, 0.72);
}

.section--compact {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p,
.intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section--navy .section-heading p,
.section--navy .intro {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.split--reverse > :first-child {
  order: 2;
}

.split__content p {
  color: var(--muted);
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 16px 18px;
  color: white;
  background: rgba(11, 30, 53, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.81rem;
  font-weight: 750;
}

.card__number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

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

.card--navy h3,
.card--navy .arrow-link {
  color: white;
}

.card--navy p {
  color: rgba(255, 255, 255, 0.68);
}

.card--gold {
  background: #e7d4ad;
  border-color: #dac08a;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  padding: 38px;
  border-left: 1px solid var(--line);
}

.principle:last-child {
  border-right: 1px solid var(--line);
}

.principle strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.quote-block blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.13;
}

.quote-block__aside {
  padding-top: 14px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  min-height: 500px;
  padding-top: 90px;
  padding-bottom: 88px;
  gap: 80px;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.page-hero__index {
  padding: 26px 0 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.page-hero__index span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero__index strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.28;
}

.page-hero--image {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.page-hero--image::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 30, 53, 0.98) 0%, rgba(11, 30, 53, 0.86) 46%, rgba(11, 30, 53, 0.35) 100%);
}

.page-hero--image .container {
  z-index: 1;
}

.page-hero--image .page-hero__copy {
  max-width: 760px;
}

.page-hero--image .page-hero__index {
  align-self: end;
  background: rgba(11, 30, 53, 0.62);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 29px;
  width: 1px;
  content: "";
  background: rgba(180, 150, 97, 0.4);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 0.42fr 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--navy);
  background: var(--gold-bright);
  border: 8px solid var(--paper);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.timeline-title span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-title strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.timeline-copy p {
  margin: 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  padding: 20px 0;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list strong {
  color: var(--navy);
  font-weight: 700;
}

.notice {
  padding: 22px 24px;
  color: #655538;
  background: #f6ecd5;
  border: 1px solid #dec99b;
  border-radius: 14px;
  font-size: 0.87rem;
}

.notice strong {
  color: var(--navy);
}

.feature-band {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.feature-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  min-height: 560px;
}

.feature-band__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 80px 80px max(20px, calc((100vw - var(--max)) / 2));
}

.feature-band__copy h2 {
  color: white;
}

.feature-band__copy p {
  color: rgba(255, 255, 255, 0.7);
}

.feature-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 60px;
  padding: 44px;
  background: var(--cream);
  border-radius: var(--radius);
}

.profile__identity {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}

.profile__monogram {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 30px;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
}

.profile__photo {
  display: block;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin-bottom: 30px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(11, 30, 53, 0.16);
}

.profile__role {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile__content blockquote {
  margin: 0 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.3;
}

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

.tag {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px 62px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(210, 175, 109, 0.25);
  border-radius: 50%;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 12px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #071426;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  padding-top: 76px;
  padding-bottom: 64px;
  gap: 100px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.footer-brand p {
  max-width: 360px;
  font-size: 0.9rem;
}

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

.footer-column strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.86rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  padding: 24px;
  background: rgba(3, 13, 25, 0.76);
  backdrop-filter: blur(8px);
}

.modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.modal__dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 48px);
  padding: 42px;
  overflow: auto;
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal h2 {
  padding-right: 50px;
  font-size: 2.5rem;
}

.modal .intro {
  margin-bottom: 28px;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.field label {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(11, 30, 53, 0.2);
  border-radius: 9px;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 18px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  color: #205f3c;
  background: #e7f4eb;
  border-radius: 8px;
}

.form-status.is-visible {
  display: block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: 114px;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(390px, 100%);
    padding: 24px;
    overflow: auto;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -24px 30px 60px rgba(11, 30, 53, 0.15);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .nav-open .main-nav {
    transform: none;
  }

  .main-nav > a,
  .nav-group > summary {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .nav-group {
    width: 100%;
  }

  .nav-popover {
    position: static;
    width: auto;
    padding: 2px 0 10px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .hero-copy {
    padding-right: 38px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand {
    flex-basis: 176px;
    width: 176px;
    height: 48px;
  }

  .brand img {
    width: 224px;
  }

  .hero-grid,
  .feature-band__inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 570px;
    padding: 72px 24px 76px;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, var(--navy) 0%, transparent 34%);
  }

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

  .metric:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .split,
  .quote-block,
  .profile,
  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .split--reverse > :first-child {
    order: initial;
  }

  .cards,
  .cards--2 {
    grid-template-columns: 1fr;
  }

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

  .principle,
  .principle:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .page-hero .container {
    min-height: 500px;
    padding-top: 70px;
    padding-bottom: 66px;
  }

  .page-hero__index {
    max-width: 440px;
  }

  .feature-band__copy {
    padding: 72px 24px;
  }

  .feature-band__image {
    height: 430px;
  }

  .profile__identity {
    padding-right: 0;
    padding-bottom: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 44px 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 560px) {
  .announcement {
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    flex-basis: 158px;
    width: 158px;
    height: 44px;
  }

  .brand img {
    width: 202px;
  }

  .main-nav {
    top: 104px;
  }

  .language-link {
    min-width: 32px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-copy {
    min-height: 540px;
  }

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

  .hero-media {
    min-height: 360px;
  }

  .hero-note {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .metric {
    min-height: 118px;
    padding: 24px 18px;
  }

  .metric strong {
    font-size: 1.55rem;
  }

  .metric span {
    font-size: 0.65rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .card {
    min-height: 240px;
    padding: 25px;
  }

  .cards--4 {
    grid-template-columns: 1fr;
  }

  .split__media img {
    min-height: 350px;
  }

  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    border-width: 6px;
  }

  .timeline-copy {
    grid-column: 2;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .profile {
    padding: 28px;
  }

  .profile__content blockquote {
    font-size: 1.55rem;
  }

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

  .footer-bottom,
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    padding: 10px;
  }

  .modal__dialog {
    max-height: calc(100vh - 20px);
    padding: 32px 22px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
