:root {
  --iws-navy: #1d3b4d;
  --iws-gold: #fcc433;
  --iws-paper: #f5f3ee;
  --iws-muted: #7c9099;
  --iws-line: #b8c4c9;
  --iws-white: #fff;
  --iws-gutter: 24px;
  --iws-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Archivo, "Segoe UI", sans-serif;
  color: var(--iws-navy);
  background: var(--iws-paper);
  line-height: 1.5;
}


img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.iws-wrap {
  width: min(100% - (var(--iws-gutter) * 2), var(--iws-max));
  margin-inline: auto;
}

.iws-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--iws-white);
}

.iws-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.iws-logo img {
  display: block;
  width: 103px;
  height: 38px;
  object-fit: contain;
}

.iws-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--iws-navy);
  cursor: pointer;
}

.iws-menu-btn:focus {
  outline: none;
}

.iws-menu-btn:focus-visible {
  outline: 2px solid var(--iws-gold);
  outline-offset: 3px;
}

.iws-menu-btn img {
  display: block;
  width: 17px;
  height: 16px;
}

.iws-menu-btn img.iws-menu-btn__close {
  display: none;
  width: 17px;
  height: 17px;
}

.iws-nav-open .iws-menu-btn img.iws-menu-btn__open {
  display: none;
}

.iws-nav-open .iws-menu-btn img.iws-menu-btn__close {
  display: block;
}

.iws-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 41;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px var(--iws-gutter) 40px;
  background: var(--iws-white);
  color: var(--iws-navy);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.iws-nav-open .iws-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.iws-nav-open .iws-nav__link {
  color: var(--iws-navy);
  font-size: 14px;
  font-weight: 500;
}

.iws-nav-open .iws-btn--nav {
  width: 100%;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .iws-nav {
    transition: none;
  }
}

.iws-nav__link {
  position: relative;
  color: var(--iws-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.iws-nav__link::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--iws-gold);
  opacity: 0;
}

.iws-nav__link:hover::after,
.iws-nav__link.is-active::after {
  opacity: 1;
}

.iws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  background: var(--iws-gold);
  color: var(--iws-navy);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.iws-btn--nav {
  width: 100%;
  max-width: 280px;
  font-size: 14px;
}

.iws-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  color: var(--iws-white);
  background: var(--iws-navy);
  overflow: hidden;
}

.iws-hero__media {
  position: absolute;
  inset: 0;
}

.iws-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iws-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #7c9099;
  mix-blend-mode: multiply;
}

.iws-hero__content {
  position: relative;
  padding: 64px 0 56px;
}

.iws-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
}

.iws-label__bar {
  width: 56px;
  height: 4px;
  background: var(--iws-gold);
}

.iws-label p,
.iws-label {
  font-size: 16px;
  font-weight: 600;
}

.iws-hero .iws-label p {
  color: var(--iws-white);
}

.iws-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 8vw, 72px);
  font-weight: 800;
  line-height: 1.05;
}

.iws-hero__mark {
  display: inline-block;
  background: var(--iws-gold);
  padding: 4px 8px;
  line-height: 0.95;
}

.iws-hero__lead {
  max-width: 616px;
  margin: 0 0 40px;
  font-size: clamp(1.05rem, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

.iws-hero__lead p {
  margin: 0;
}

.iws-hero__lead p + p {
  margin-top: 0.5em;
}

.iws-hero__lead strong {
  font-weight: 600;
}

.iws-hero .iws-btn {
  width: 100%;
}

.iws-section {
  padding: 56px 0;
  scroll-margin-top: 80px;
}

.iws-section--paper {
  background: var(--iws-paper);
}

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

.iws-split-head {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.iws-split-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.iws-copy {
  font-size: clamp(1.05rem, 2vw, 24px);
  font-weight: 300;
  line-height: 1.4;
}

.iws-copy p {
  margin: 0 0 1em;
}

.iws-copy p:last-child {
  margin-bottom: 0;
}

.iws-copy strong,
.iws-copy b {
  font-weight: 500;
}

.iws-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.iws-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 410px;
  padding: 24px;
  background: var(--iws-white);
  color: var(--iws-navy);
  text-align: center;
}

.iws-card img {
  width: 224px;
  height: 143px;
  object-fit: contain;
}

.iws-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.iws-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
}

.iws-location {
  display: grid;
  gap: 24px;
}

.iws-location h2 {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.iws-location__address {
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 2vw, 24px);
  font-weight: 400;
  line-height: 1.4;
}

.iws-location__rule {
  height: 1px;
  margin: 32px 0;
  background: var(--iws-line);
  border: 0;
}

.iws-location__notes p {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1.6vw, 20px);
  line-height: 1.55;
}

.iws-location__notes strong {
  display: block;
  font-weight: 600;
}

.iws-location__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.iws-register {
  position: relative;
  overflow: hidden;
}

.iws-register__lion {
  position: absolute;
  inset: 0;
  background: var(--iws-navy);
  pointer-events: none;
}

.iws-register__lion img {
  position: absolute;
  left: -10%;
  top: 8%;
  width: 120%;
  max-width: 900px;
  opacity: 0.28;
}

.iws-register .iws-wrap {
  position: relative;
}

.iws-form-card {
  margin-top: 24px;
  background: var(--iws-white);
  color: var(--iws-navy);
  padding: 24px;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.12);
}

.iws-form-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.iws-form-card .iws-label__bar {
  height: 2px;
  margin-bottom: 16px;
}

.iws-form {
  display: grid;
  gap: 16px;
}

.iws-form__row {
  display: grid;
  gap: 16px;
}

.iws-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.iws-field span,
.iws-field legend {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.iws-field small {
  color: var(--iws-muted);
  font-size: 12px;
  font-weight: 600;
}

.iws-field input:not([type="radio"]):not([type="checkbox"]),
.iws-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--iws-muted);
  padding: 0 16px;
  font: inherit;
  background: var(--iws-white);
  color: var(--iws-navy);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.15);
}

.iws-field textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.iws-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iws-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.iws-options input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--iws-muted);
  border-radius: 50%;
  background: var(--iws-white);
  box-shadow: none;
  cursor: pointer;
}

.iws-options input[type="radio"]:checked {
  background-image: radial-gradient(circle, var(--iws-gold) 5px, transparent 5.5px);
}

.iws-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.iws-check input[type="hidden"] {
  display: none;
}

.iws-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid var(--iws-navy);
  background: var(--iws-white);
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
}

.iws-check input[type="checkbox"]:checked {
  background-image: linear-gradient(var(--iws-gold), var(--iws-gold));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.iws-check span {
  flex: 1 1 auto;
  min-width: 0;
}

.iws-form__note {
  margin: 0;
  color: var(--iws-muted);
  font-size: 13px;
}

.iws-form .iws-btn {
  width: 100%;
  max-width: 280px;
}

.iws-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.iws-form__errors {
  margin: 0 0 16px;
  padding: 16px;
  list-style: none;
  background: #f8ecec;
  color: #8a1f1f;
  font-size: 14px;
}

.iws-form__success {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.iws-legal {
  padding-top: 56px;
  padding-bottom: 80px;
}

.iws-legal h1 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.iws-legal h2 {
  margin: 32px 0 12px;
  font-size: 24px;
  font-weight: 800;
}

.iws-legal p {
  margin: 0 0 1em;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 792px;
}

.iws-legal a {
  color: var(--iws-navy);
}

.iws-footer {
  background: var(--iws-paper);
  padding: 40px 0 24px;
}

.iws-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.iws-footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.iws-footer__links a {
  text-decoration: none;
}

.iws-footer__rule {
  height: 1px;
  margin-top: 24px;
  background: var(--iws-line);
  border: 0;
}

@media (min-width: 834px) {
  :root {
    --iws-gutter: 48px;
  }

  .iws-header__inner {
    min-height: 88px;
    flex-wrap: nowrap;
  }

  .iws-menu-btn {
    display: none;
  }

  .iws-nav,
  .iws-nav-open .iws-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: auto;
    padding: 0;
    background: transparent;
    color: inherit;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .iws-nav-open .iws-nav__link {
    color: var(--iws-navy);
    font-size: 14px;
    font-weight: 500;
  }

  .iws-btn--nav,
  .iws-nav-open .iws-btn--nav {
    width: 160px;
  }

  .iws-hero {
    min-height: 620px;
  }

  .iws-hero__content {
    padding: 64px 0;
  }

  .iws-hero h1 {
    margin-bottom: 32px;
  }

  .iws-hero .iws-btn {
    width: 280px;
  }

  .iws-section {
    padding: 64px 0;
    scroll-margin-top: 88px;
  }

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

  .iws-location {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }

  .iws-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .iws-options {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 16px;
  }

  .iws-form-card {
    padding: 32px;
  }

  .iws-check {
    min-height: 22px;
    align-items: center;
    font-size: 12px;
    line-height: 1.55;
  }

  .iws-check input[type="checkbox"] {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    border-color: var(--iws-muted);
  }

  .iws-form__note {
    font-size: 12px;
  }

  .iws-footer {
    padding: 48px 0 32px;
  }

  .iws-footer__links {
    gap: 32px;
  }

  .iws-footer__rule {
    margin-top: 32px;
  }
}

@media (min-width: 1200px) {
  :root {
    --iws-gutter: 120px;
  }

  .iws-nav {
    gap: 40px;
  }

  .iws-btn--nav,
  .iws-nav-open .iws-btn--nav {
    width: 200px;
  }

  .iws-hero {
    min-height: 765px;
  }

  .iws-hero__content {
    padding: 80px 0;
    max-width: 829px;
  }

  .iws-hero h1 {
    margin-bottom: 40px;
  }

  .iws-section {
    padding: 80px 0;
  }

  .iws-split-head {
    grid-template-columns: 381px 1fr;
    align-items: start;
  }

  .iws-copy {
    padding-left: 405px;
  }

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

  .iws-card {
    min-height: 375px;
  }

  .iws-form-card {
    margin-left: 405px;
  }

  .iws-register__lion img {
    left: 0;
    width: 90%;
  }
}
