:root {
  --petrol: #004c54;
  --petrol-dark: #003c42;
  --anthracite: #303436;
  --mid: #5f6668;
  --line: #d6d9d8;
  --warm: #f4f2ef;
  --white: #ffffff;
  --serif: Georgia, "Nimbus Roman", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, Arial, "Nimbus Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.phase-strip {
  padding: 8px 24px;
  background: var(--warm);
  color: var(--mid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  text-align: center;
  text-transform: uppercase;
}

.site-header,
.hero,
.contact,
.notice,
.legal-main,
footer {
  width: min(100% - 84px, 1196px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 42px 0 30px;
  border-bottom: 1px solid var(--line);
}

.identity {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.identity-mark,
.short-rule {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--petrol);
}

.identity-mark {
  margin-bottom: 25px;
}

.identity-name {
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(28px, 3.25vw, 45px);
  line-height: 1.08;
}

.identity-line {
  margin-top: 9px;
  color: var(--mid);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
  padding-bottom: 3px;
}

nav a {
  color: var(--mid);
  font-size: 12px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.contact-details a:hover,
.contact-details a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--petrol-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(70px, 10vw, 145px);
  min-height: 720px;
  padding: 92px 0 126px;
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

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

h1,
h2,
.status-title,
.footer-identity > span {
  color: var(--petrol);
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 38px;
  font-size: clamp(72px, 9.3vw, 126px);
  line-height: .92;
  letter-spacing: -.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--anthracite);
  font-size: clamp(20px, 2.15vw, 27px);
  line-height: 1.5;
}

.supporting {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--mid);
  font-size: 17px;
  line-height: 1.75;
}

.status-card {
  min-height: 458px;
  padding: 48px 40px 42px;
  background: var(--warm);
}

.status-card .short-rule {
  margin-bottom: 34px;
}

.status-label {
  margin-bottom: 29px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.status-title {
  margin-bottom: 125px;
  font-size: 42px;
  line-height: 1.12;
}

.status-note {
  margin-bottom: 0;
  color: var(--mid);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: 8vw;
  padding: 76px 0 82px;
  border-top: 1px solid var(--line);
}

.contact .eyebrow,
.notice .eyebrow {
  margin-bottom: 16px;
}

.contact-details {
  padding-top: 6px;
}

.contact-details a {
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.2;
  text-decoration: none;
}

.contact-details p {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--mid);
  font-size: 13px;
}

.contact-details .contact-action {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--petrol);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.notice {
  padding: 62px 42px 66px;
  background: var(--warm);
}

.notice h2 {
  margin-bottom: 23px;
  font-size: clamp(28px, 3vw, 40px);
}

.notice > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--mid);
  font-size: 15px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 0 55px;
  border-bottom: 10px solid var(--petrol);
  color: var(--mid);
}

.footer-identity,
.footer-meta {
  display: flex;
  flex-direction: column;
}

.footer-identity > span {
  font-size: 20px;
}

.footer-identity small,
.footer-meta {
  font-size: 11px;
}

.footer-meta {
  gap: 5px;
  text-align: right;
}

.legal-links {
  display: inline-flex;
  gap: 5px;
  justify-content: flex-end;
}

.legal-links a,
.footer-meta > a {
  color: var(--petrol);
  text-decoration: none;
}

.legal-header {
  padding-bottom: 30px;
}

.legal-main {
  padding: 86px 0 96px;
}

.legal-hero {
  max-width: 920px;
  padding-bottom: 65px;
}

.legal-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(60px, 8vw, 108px);
}

.legal-intro {
  margin-bottom: 0;
  color: var(--mid);
  font-size: clamp(17px, 1.8vw, 22px);
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 92px;
  border-top: 1px solid var(--line);
}

.legal-section {
  padding: 42px 0 46px;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li,
.legal-section dd,
.legal-section dt {
  font-size: 14px;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section dl:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--petrol);
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.legal-address {
  padding: 27px 30px;
  background: var(--warm);
}

.legal-address p:last-child {
  margin-bottom: 0;
}

.legal-note {
  color: var(--mid);
  font-size: 12px !important;
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  grid-template-columns: minmax(135px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data > div:last-child {
  border-bottom: 0;
}

.legal-data dt {
  color: var(--mid);
}

.legal-data dd {
  margin: 0;
}

.legal-list {
  padding-left: 21px;
}

.contact-main {
  padding-bottom: 0;
}

.contact-hero {
  max-width: 1060px;
}

.contact-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 7.2vw, 96px);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 9vw, 132px);
  padding: 72px 0 84px;
  border-top: 1px solid var(--line);
}

.form-guidance {
  padding-top: 7px;
}

.form-guidance .short-rule {
  margin-bottom: 31px;
}

.form-guidance h2 {
  margin-bottom: 27px;
  font-size: clamp(29px, 3vw, 41px);
}

.form-guidance p {
  max-width: 440px;
  color: var(--mid);
  font-size: 14px;
}

.contact-form {
  position: relative;
}

.form-field {
  margin-bottom: 35px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--petrol);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  margin: 0;
  padding: 8px 0 13px;
  border: 0;
  border-bottom: 1px solid #aeb4b3;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--anthracite);
  font: inherit;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--petrol);
  box-shadow: 0 1px 0 var(--petrol);
}

.form-field small {
  display: block;
  margin-top: 9px;
  color: var(--mid);
  font-size: 10px;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.55;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--petrol);
}

.form-check a {
  color: var(--petrol);
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 37px;
}

.form-actions button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--petrol);
  border-radius: 0;
  background: var(--petrol);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.form-actions button:hover,
.form-actions button:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  background: var(--petrol-dark);
}

.form-actions p {
  margin: 0;
  color: var(--mid);
  font-size: 10px;
}

.contact-alternative {
  padding: 60px 42px 64px;
  background: var(--warm);
}

.contact-alternative .eyebrow {
  margin-bottom: 13px;
}

.contact-alternative h2 {
  margin-bottom: 22px;
  font-size: clamp(27px, 2.8vw, 38px);
}

.contact-alternative > a {
  color: var(--petrol);
  font-family: var(--serif);
  font-size: clamp(23px, 2.8vw, 34px);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.response-main {
  min-height: 630px;
}

.response-panel {
  max-width: 900px;
  padding: 65px 0 76px;
}

.response-panel .short-rule {
  margin-bottom: 40px;
}

.response-panel h1 {
  margin-bottom: 34px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 1.02;
}

.response-panel > p:last-of-type {
  max-width: 690px;
  color: var(--mid);
  font-size: 17px;
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 45px;
}

.response-actions > a:not(.button-link) {
  color: var(--petrol);
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .contact,
  .notice,
  .legal-main,
  footer {
    width: min(100% - 44px, 680px);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 31px;
  }

  .identity-line {
    max-width: 290px;
    font-size: 9px;
    letter-spacing: .2em;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: 0;
    padding: 68px 0 78px;
  }

  h1 {
    font-size: clamp(62px, 18vw, 92px);
  }

  .status-card {
    min-height: 0;
    padding: 36px 32px 37px;
  }

  .status-title {
    margin-bottom: 46px;
    font-size: 37px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 63px 0 68px;
  }

  .contact-details a {
    overflow-wrap: anywhere;
  }

  .notice {
    padding: 43px 28px 48px;
  }

  .legal-main {
    padding: 60px 0 74px;
  }

  .legal-hero {
    padding-bottom: 48px;
  }

  .legal-hero h1 {
    font-size: clamp(51px, 16vw, 74px);
  }

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

  .legal-section {
    padding: 34px 0 38px;
  }

  .legal-address {
    padding: 23px 24px;
  }

  .legal-data > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-hero h1 {
    font-size: clamp(45px, 13.4vw, 67px);
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 49px;
    padding: 54px 0 65px;
  }

  .form-field {
    margin-bottom: 30px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-alternative {
    padding: 42px 27px 48px;
  }

  .response-main {
    min-height: 0;
  }

  .response-panel {
    padding: 46px 0 58px;
  }

  footer {
    flex-direction: column;
    padding-top: 46px;
  }

  .footer-meta {
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

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