@font-face {
  font-family: "Bodoni 72 Web";
  src: url("../fonts/bodoni-72-book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni 72 Web";
  src: url("../fonts/bodoni-72-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #002748;
  --blue-dark: #001e38;
  --cream: #f2eddf;
  --text: #08284b;
  --copper: #b86718;
  --copper-dark: #7d2d19;
  --orange: #D56300;
  --orange-light: #FFAC63;
  --white: #fffaf0;
  --sans: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Bodoni 72 Web", "Bodoni Moda", "Bodoni 72", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --mobile-header-height: 160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--blue);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 154px;
  padding: 28px 40px 26px 120px;
  background: var(--blue);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  grid-column: 2;
  justify-self: center;
}

.brand img {
  width: 300px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 30px;
  border: 2px solid currentColor;
  color: var(--white);
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.18;
  max-width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  transition:
    background-color .28s ease,
    border-color .28s ease,
    color .28s ease,
    box-shadow .28s ease;
}

.button img {
  width: 9px;
  height: auto;
  flex: 0 0 auto;
  transform: translateX(0);
  transition: filter .28s ease, transform .28s ease;
}

.button:hover {
  color: var(--orange);
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
}

.button:hover img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(1885%) hue-rotate(18deg) brightness(96%) contrast(101%);
  transform: translateX(4px);
}

.button:active {
  box-shadow: 0 5px 12px rgba(0, 0, 0, .12);
}

.button-outline {
  grid-column: 3;
  justify-self: end;
  color: var(--white);
  border-color: var(--copper);
}

.site-header .button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 18px;
}

.hero {
  min-height: 528px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .62) 36%, rgba(0, 0, 0, .2) 58%, rgba(0, 0, 0, .08) 100%),
    url("../img/hero_bg.jpg") 58% center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 142px;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .04em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(48px, 4.9vw, 76px);
  line-height: .94;
}

.hero p {
  max-width: 610px;
  margin: 38px 0 0;
  color: var(--orange-light);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.16;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72);
}

.section {
  padding: 100px 0;
}

.paper {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .66), transparent 28%),
    linear-gradient(135deg, rgba(135, 111, 72, .12), transparent 24%),
    var(--cream);
  position: relative;
}

.paper::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    repeating-linear-gradient(22deg, rgba(38, 27, 14, .13) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .4) 0 1px, transparent 1px 16px);
  mix-blend-mode: multiply;
}

.paper > * {
  position: relative;
}

.rupture-content {
  width: min(100% - 120px, 1130px);
  min-height: 395px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 470px);
  gap: 48px;
  align-items: center;
}

.rupture {
  padding-top: 74px;
  padding-bottom: 74px;
  background: url("../img/background_white_wall.jpg") center / cover no-repeat;
}

.rupture-copy {
  max-width: 680px;
}

.rupture h2,
.about h2,
.asv h2 {
  color: var(--blue);
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 1.02;
}

.rule {
  display: block;
  width: 154px;
  height: 2px;
  margin: 42px 0 44px;
  background: var(--copper);
}

.desktop-break {
  display: inline;
}

.mobile-break {
  display: none;
}

.rule.light {
  background: var(--white);
}

.rupture p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  letter-spacing: .02em;
}

.rupture p + p {
  margin-top: 4px;
}

.rupture strong {
  font-weight: 700;
}

.rupture-photos {
  width: 100%;
  max-width: 470px;
  justify-self: end;
}

.rupture .rule {
  background: var(--orange);
}

.idea-grid {
  display: grid;
  grid-template-columns: 1fr .76fr 1fr;
  background: var(--blue);
}

.idea-grid > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.idea-card {
  min-height: 600px;
  padding: 0 56px;
  color: var(--white);
  background: url("../img/background_orange_wall.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.idea-card span {
  width: 154px;
  height: 2px;
  background: var(--white);
}

.idea-card p {
  margin: 42px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.7vw, 46px);
  letter-spacing: .04em;
  line-height: 1.04;
}

.idea-card strong {
  margin: 10px 0 44px;
  font-family: var(--serif);
  font-size: clamp(34px, 2.8vw, 48px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: .95;
}

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

.lab {
  min-height: 800px;
  padding-top: 112px;
  background: linear-gradient(180deg, #02274B 0%, #001634 51%, #001634 100%);
  color: var(--white);
  text-align: center;
}

.lab h2 {
  font-size: clamp(44px, 3.9vw, 64px);
  line-height: 1;
}

.lab .rule {
  margin: 52px auto 48px;
}

.section-kicker {
  margin: 0;
  color: var(--white);
  font-size: 19px;
  letter-spacing: .05em;
}

.axis-list {
  width: min(100% - 120px, 1260px);
  margin: 78px auto 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  align-items: start;
}

.axis-list article {
  display: grid;
  justify-items: center;
  gap: 34px;
}

.axis-list img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.axis-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.25;
}

.lab .button {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .04em;
}

.about {
  padding: 128px 0 136px;
  background: url("../img/background_white_wall.jpg") center / cover no-repeat;
}

.about-inner {
  width: min(100% - 120px, 1130px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 340px) 470px max-content;
  justify-content: center;
  gap: 64px 72px;
  align-items: center;
}

.about-photo {
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color .42s ease, inset .42s ease;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .62s ease, filter .62s ease;
}

.about-copy p {
  margin: 0;
  font-size: 18px;
  letter-spacing: .02em;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-heading {
  justify-self: center;
}

.vets {
  min-height: 540px;
  padding-top: 132px;
  padding-bottom: 132px;
  color: var(--white);
  background: url("../img/background_vetos.jpg") center / cover no-repeat;
  text-align: center;
}

.vets-inner {
  width: min(100% - 80px, 940px);
  margin: 0 auto;
}

.vets h2 {
  font-size: clamp(42px, 3.9vw, 62px);
  line-height: 1;
}

.vets .rule {
  margin: 34px auto 38px;
}

.vets p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: .04em;
}

.vets p + p {
  margin-top: 24px;
}

.button-light {
  margin-top: 44px;
  border-color: var(--white);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .04em;
}

.asv-career-bg {
  background: linear-gradient(180deg, #001E3B 0%, #001E3B 34%, #040E1C 100%);
}

.asv-wrap {
  padding: 0 0 34px;
  background: transparent;
}

.asv {
  width: min(100% - 120px, 1130px);
  min-height: 500px;
  margin: 0 auto;
  padding: 100px 230px;
  background: url("../img/background_white_wall.jpg") center / cover no-repeat;
  text-align: center;
}

.asv .rule {
  margin: 34px auto 44px;
}

.asv p {
  max-width: 1023px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.34;
}

.asv p + p {
  margin-top: 22px;
}

.asv-question-link {
  color: inherit;
  text-decoration: none;
  box-shadow: inset 0 -0.08em 0 var(--orange);
  transition: box-shadow .22s ease, color .22s ease;
}

.asv-question-link:hover,
.asv-question-link:focus-visible {
  color: var(--blue);
  box-shadow: inset 0 -1.05em 0 rgba(213, 99, 0, .16);
  outline: none;
}

.career {
  min-height: 640px;
  padding: 56px 0 84px max(60px, calc((100% - 980px) / 2));
  background: transparent;
  display: grid;
  grid-template-columns: minmax(360px, 490px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
}

.career-copy {
  grid-column: 1;
}

.career h2 {
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 1.06;
}

.career .rule {
  margin: 40px 0 54px;
  background: var(--orange);
}

.career ul {
  margin: 0;
  padding-left: 20px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .04em;
}

.career strong {
  font-weight: 700;
}

.career img {
  grid-column: 2;
  justify-self: end;
  width: 760px;
  max-width: none;
  opacity: .72;
}

.contact {
  min-height: 760px;
  padding: 124px 24px;
  background:
    linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .18)),
    url("../img/two_cats_bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  width: min(100%, 980px);
  min-height: 560px;
  padding: 66px 156px 58px;
  color: var(--white);
  background: rgba(116, 39, 21, .76);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bot-field {
  display: none;
}

.contact-form h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 1.02;
  text-align: center;
}

#contact-heading {
  scroll-margin-top: 178px;
}

.contact-form-subtitle {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.42;
  text-align: center;
}

.contact-form label:not(.checkbox) {
  width: 100%;
  max-width: 420px;
}

.contact-form label:not(.checkbox) + label:not(.checkbox),
.field-error + label:not(.checkbox) {
  margin-top: 16px;
}

.contact-form label > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 54px;
  padding: 0 26px;
  border: 3px solid var(--white);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  font: 700 15px/1 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--white) 50%), linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 24px) 22px, calc(100% - 17px) 22px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: var(--blue);
  background: var(--white);
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 18px;
  line-height: 1.35;
  resize: vertical;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--orange-light);
  box-shadow: 0 0 0 1px var(--orange-light);
}

.field-error {
  width: 100%;
  max-width: 420px;
  min-height: 18px;
  margin: 6px 0 0;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .02em;
  text-align: left;
}

.checkbox-error {
  max-width: 540px;
}

.checkbox input.is-invalid {
  border-color: var(--orange-light);
  box-shadow: 0 0 0 1px var(--orange-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 240, .54);
  opacity: 1;
}

.checkbox {
  width: 100%;
  max-width: 540px;
  margin-top: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: var(--white);
  font-size: 17px;
  letter-spacing: .02em;
  cursor: pointer;
}

.checkbox + .checkbox {
  margin-top: 18px;
}

.checkbox-error + .checkbox {
  margin-top: 18px;
}

.checkbox input {
  width: 21px;
  height: 21px;
  margin: 1px 0 0;
  appearance: none;
  border: 3px solid var(--white);
  background: transparent;
  flex: 0 0 21px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.checkbox input:checked {
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--copper-dark);
}

.button-filled {
  min-height: 52px;
  margin-top: 44px;
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(180deg, #DEAD77 0%, #C99255 100%);
  font-weight: 600;
  padding: 0 42px;
}

.button:disabled {
  cursor: wait;
  opacity: .7;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  padding: 24px;
  background: rgba(0, 30, 56, .72);
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .24s ease, visibility .24s ease;
}

.modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-panel {
  width: min(100%, 520px);
  padding: 54px 48px 48px;
  color: var(--blue);
  background: var(--cream);
  position: relative;
  text-align: center;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.modal-panel h2 {
  font-size: 46px;
  line-height: 1;
}

.modal-panel p {
  margin: 24px auto 0;
  max-width: 360px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: .02em;
}

.modal-panel-large {
  width: min(100%, 760px);
  max-height: min(86vh, 720px);
  overflow: auto;
  text-align: left;
}

.modal-panel-large h2 {
  text-align: center;
}

.privacy-content p {
  max-width: none;
  margin-top: 18px;
  font-size: 16px;
}

.privacy-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: .02em;
}

.privacy-content li + li {
  margin-top: 8px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 34px 60px 32px;
  color: rgba(255, 250, 240, .88);
  background: linear-gradient(180deg, #DC8422 0%, #682B00 100%);
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 80px;
}

.footer-brand img {
  width: 260px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.site-footer p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.35;
}

.privacy-link {
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: var(--orange-light);
  outline: none;
}

@media (min-width: 1101px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .checkbox {
    cursor: default;
  }

  .checkbox input,
  .checkbox .privacy-link {
    cursor: pointer;
  }
}

@media (hover: hover) and (pointer: fine) {
  .about-photo:hover::after {
    inset: 8px;
    border-color: var(--copper);
  }

  .about-photo:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.03);
  }
}


@media (min-width: 1101px) and (max-width: 1400px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .68) 42%, rgba(0, 0, 0, .22) 68%, rgba(0, 0, 0, .06) 100%),
      url("../img/hero_bg.jpg") 78% center / cover no-repeat;
  }

  .idea-card strong {
    font-size: clamp(34px, 3vw, 40px);
    line-height: 1;
  }

  .asv {
    width: min(100% - 120px, 1130px);
    padding-right: 120px;
    padding-left: 120px;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: var(--mobile-header-height);
  }

  #contact-heading {
    scroll-margin-top: calc(var(--mobile-header-height) + 24px);
  }

  body {
    padding-top: var(--mobile-header-height);
    font-size: 16px;
    line-height: 1.45;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    min-height: 144px;
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(0);
    transition: transform .32s ease;
    will-change: transform;
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
  }

  .brand img {
    width: 206px;
  }

  .button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
    gap: 8px;
    line-height: 1.25;
    text-align: center;
  }

  .site-header .button {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .button img {
    width: 8px;
  }

  .hero {
    min-height: 270px;
    align-items: center;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .42) 58%, rgba(0, 0, 0, .18) 100%),
      url("../img/hero_bg.jpg") 78% center / cover no-repeat;
  }

  .hero-content {
    padding: 24px 36px;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero p {
    margin: 18px auto 0;
    max-width: 315px;
    font-size: 19px;
    line-height: 1.3;
  }

  .section {
    padding: 84px 0;
  }

  .rupture {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .rupture-content {
    width: min(100% - 48px, 420px);
    display: flex;
    flex-direction: column-reverse;
    gap: 38px;
    align-items: flex-start;
  }

  .rupture-photos {
    width: 100%;
    align-self: center;
    transform: none;
  }

  .rupture h2,
  .about h2,
  .asv h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .desktop-break {
    display: none;
  }

  .rule {
    width: 124px;
    margin: 24px 0 30px;
  }

  .rupture p {
    font-size: 15px;
    line-height: 1.42;
    letter-spacing: .025em;
  }

  .idea-grid {
    display: block;
  }

  .idea-grid > img {
    height: 252px;
  }

  .idea-card {
    min-height: 350px;
    padding: 0 38px;
  }

  .idea-card span {
    width: 106px;
  }

  .idea-card p {
    margin-top: 40px;
    font-size: 29px;
    line-height: 1.08;
  }

  .idea-card strong {
    margin: 8px 0 42px;
    font-size: 33px;
    line-height: 1.04;
  }

  .lab {
    min-height: 944px;
    padding: 84px 38px;
  }

  .lab h2 {
    text-align: center;
    font-size: 32px;
    line-height: 1.08;
  }

  .lab .rule {
    margin: 30px auto 48px;
  }

  .section-kicker {
    font-size: 15px;
    line-height: 1.4;
  }

  .axis-list {
    width: 100%;
    margin: 54px auto 52px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .axis-list article {
    gap: 18px;
  }

  .axis-list img {
    width: 86px;
    height: 86px;
  }

  .axis-list h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  .lab .button {
    width: 100%;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.28;
  }

  .about {
    padding: 86px 0;
  }

  .about-inner {
    width: min(100% - 80px, 860px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .about-photo {
    width: min(72vw, 260px);
  }

  .about-heading {
    order: 2;
    align-self: center;
  }

  .about-heading .rule {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy {
    order: 3;
    margin-top: -6px;
    max-width: 680px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.48;
    letter-spacing: .02em;
  }

  .vets {
    min-height: 570px;
    padding: 106px 26px;
  }

  .vets-inner {
    width: 100%;
  }

  .vets h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .vets .rule {
    margin: 28px auto 36px;
  }

  .vets p {
    font-size: 15px;
    line-height: 1.48;
  }

  .button-light {
    margin-top: 42px;
    max-width: 300px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.28;
  }


  .asv-wrap {
    padding: 0 24px 34px;
  }

  .asv {
    width: 100%;
    min-height: 0;
    padding: 76px 22px 70px;
  }

  .asv .rule {
    margin: 30px auto 42px;
  }

  .asv p {
    font-size: 15px;
    line-height: 1.48;
  }

  .career {
    min-height: 724px;
    padding: 52px 34px 0;
    display: block;
  }

  .career h2 {
    text-align: center;
    font-size: 32px;
    line-height: 1.16;
  }

  .career .rule {
    margin: 30px auto 54px;
  }

  .career ul {
    font-size: 16px;
    line-height: 1.48;
  }

  .career img {
    width: 560px;
    max-width: none;
    margin: 52px 0 0 -52px;
  }

  .contact {
    min-height: 676px;
    padding: 86px 36px;
    align-items: flex-start;
    background-position: center;
  }

  .contact-form {
    min-height: 506px;
    padding: 36px 22px 40px;
  }

  .contact-form h2 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.16;
  }

  .contact-form-subtitle {
    max-width: 420px;
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    height: 42px;
    padding: 0 16px;
    border-width: 2px;
    font-size: 12px;
    line-height: 1.2;
  }

  .contact-form select {
    background-position: calc(100% - 20px) 17px, calc(100% - 14px) 17px;
    background-size: 6px 6px, 6px 6px;
  }

  .contact-form textarea {
    min-height: 108px;
    padding-top: 13px;
    line-height: 1.35;
  }

  .contact-form label:not(.checkbox) + label:not(.checkbox),
  .field-error + label:not(.checkbox) {
    margin-top: 10px;
  }

  .checkbox {
    max-width: 420px;
    margin-top: 18px;
    gap: 10px;
    font-size: 13px;
    line-height: 1.42;
  }

  .checkbox + .checkbox {
    margin-top: 14px;
  }

  .checkbox-error + .checkbox {
    margin-top: 14px;
  }

  .field-error {
    max-width: 420px;
    min-height: 16px;
    font-size: 11px;
  }

  .checkbox input {
    width: 24px;
    height: 24px;
    margin-top: 0;
    border-width: 2px;
    flex: 0 0 24px;
  }

  .button-filled {
    min-height: 44px;
    margin-top: 32px;
    padding: 10px 24px;
    font-size: 14px;
  }

  .modal-panel {
    padding: 46px 28px 38px;
  }

  .modal-panel h2 {
    font-size: 34px;
  }

  .modal-panel p {
    font-size: 15px;
    line-height: 1.48;
  }

  .site-footer {
    padding: 26px 28px 30px;
    display: block;
  }

  .footer-brand img {
    width: 178px;
    margin: 0 auto 16px;
  }

  .site-footer h2 {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.25;
  }

  .site-footer p {
    font-size: 12px;
    line-height: 1.48;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .site-header {
    min-height: 144px;
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    min-height: 420px;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .2) 72%, rgba(0, 0, 0, .08) 100%),
      url("../img/hero_bg.jpg") 76% center / cover no-repeat;
  }

  .hero-content {
    padding: 0 64px;
    text-align: left;
  }

  .hero h1 {
    font-size: 52px;
    line-height: .98;
  }

  .hero p {
    max-width: 480px;
    margin: 28px 0 0;
    font-size: 23px;
  }

  .desktop-break {
    display: inline;
  }

  .rupture {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .rupture-content {
    width: min(100% - 80px, 860px);
    max-width: none;
    gap: 34px;
  }

  .rupture-copy {
    max-width: none;
  }

  .rupture-photos {
    width: 100%;
    max-width: 560px;
  }

  .idea-grid {
    display: grid;
    grid-template-columns: 1fr .86fr 1fr;
  }

  .idea-grid > img {
    height: 380px;
  }

  .idea-card {
    min-height: 380px;
    padding: 0 30px;
  }

  .idea-card p {
    margin-top: 34px;
    font-size: 30px;
  }

  .idea-card strong {
    margin-bottom: 36px;
    font-size: 32px;
  }

  .lab {
    min-height: 0;
    padding: 88px 48px 92px;
  }

  .axis-list {
    width: min(100%, 760px);
    margin: 58px auto 60px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 64px;
  }

  .about {
    padding: 96px 0;
  }

  .about-inner {
    width: min(100% - 80px, 860px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .about-photo {
    width: min(50vw, 280px);
  }

  .about-heading {
    order: 2;
    align-self: center;
  }

  .about-heading .rule {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy {
    order: 3;
    margin-top: -6px;
    max-width: 680px;
  }

  .vets {
    padding: 118px 48px;
  }

  .vets-inner {
    width: min(100%, 780px);
  }

  .asv-wrap {
    padding: 0 40px 38px;
  }

  .asv {
    width: min(100%, 860px);
    padding: 84px 72px 78px;
  }

  .career {
    min-height: 600px;
    padding: 64px 0 40px max(48px, calc((100% - 760px) / 2));
    display: grid;
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
  }

  .career h2 {
    text-align: left;
    font-size: 38px;
    line-height: 1.1;
  }

  .career .rule {
    margin: 32px 0 42px;
  }

  .career img {
    justify-self: end;
    width: 540px;
    margin: 0;
  }

  .contact {
    padding: 104px 48px;
  }

  .contact-form {
    width: min(100%, 760px);
    padding: 54px 82px 52px;
  }

  .contact-form h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .contact-form-subtitle {
    max-width: 520px;
    font-size: 16px;
  }

  .site-footer {
    padding: 30px 42px 34px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 44px;
  }

  .footer-brand img {
    width: 200px;
    margin: 0 0 16px;
  }

  .site-footer h2 {
    margin-top: 0;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .rupture-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
    align-items: center;
  }

  .rupture-photos {
    max-width: 350px;
    justify-self: end;
  }
}

@media (max-width: 700px) {
  .mobile-break {
    display: inline;
  }

  .idea-card {
    min-height: 0;
    padding: 90px 38px;
  }

  .idea-card p {
    margin-top: 33px;
  }

  .idea-card strong {
    margin-bottom: 33px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .hero-content {
    padding: 0 48px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    max-width: 430px;
    font-size: 21px;
  }

  .idea-card {
    padding: 0 22px;
  }

  .idea-card p {
    font-size: 25px;
  }

  .idea-card strong {
    font-size: 28px;
  }

  .career {
    min-height: 0;
    padding: 58px 56px 0;
    display: block;
  }

  .career h2 {
    text-align: center;
  }

  .career .rule {
    margin-right: auto;
    margin-left: auto;
  }

  .career img {
    width: 620px;
    max-width: none;
    margin: 46px 0 0 auto;
  }

  .contact-form {
    padding-right: 54px;
    padding-left: 54px;
  }

  .site-footer {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 32px;
  }
}
