:root {
  --blue: #0b3440;
  --blue-soft: #164a57;
  --gold: #c5a15a;
  --gold-soft: #e4d5ad;
  --paper: #f7f4ec;
  --paper-2: #edf4f2;
  --white: #ffffff;
  --text: #102c36;
  --muted: #5d6f77;
  --border: rgba(16, 44, 54, 0.14);
  --shadow: 0 22px 60px rgba(11, 52, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: linear-gradient(135deg, var(--paper) 0%, #fbfaf6 45%, var(--paper-2) 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--paper) 0%, #fbfaf6 45%, var(--paper-2) 100%);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  pointer-events: none;
}

.brand-mini,
.menu-toggle,
.site-nav {
  pointer-events: auto;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mini img {
  width: 70px;
  height: auto;
  display: block;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(11, 52, 64, 0.14);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  border-radius: 10px;
  background: var(--blue);
  display: block;
}

.site-nav {
  position: fixed;
  top: 84px;
  right: clamp(18px, 5vw, 70px);
  min-width: 220px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
}

.site-nav a:hover {
  background: rgba(197, 161, 90, 0.16);
}

.home-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.home-hero {
  width: min(720px, 100%);
  text-align: center;
  transform: translateY(12px);
}

.home-logo {
  display: block;
  width: min(420px, 66vw);
  height: auto;
  margin: 0 auto 22px;
}

.coming-soon {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: rgba(228, 213, 173, 0.82);
  border-color: rgba(197, 161, 90, 0.72);
  color: var(--blue);
}

.btn-primary:hover {
  background: rgba(213, 190, 132, 0.9);
  transform: translateY(-1px);
}

.form-main {
  min-height: 100vh;
  padding: 120px 20px 70px;
}

.form-card {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.form-heading {
  text-align: left;
  margin-bottom: 26px;
}

.form-logo {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  line-height: 1.08;
}

.intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(16, 44, 54, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(197, 161, 90, 0.9);
  box-shadow: 0 0 0 4px rgba(197, 161, 90, 0.13);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checks {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.check-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
}

.check-line input {
  width: 17px;
  height: 17px;
  padding: 0;
  margin-top: 2px;
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.btn-submit {
  justify-self: start;
  margin-top: 6px;
  min-width: 160px;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-error {
  color: #9a2b2b;
}

.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 70px;
}

.thanks-card {
  width: min(620px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 46px);
}

.thanks-logo {
  width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.thanks-card p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .site-header {
    height: 64px;
    padding: 12px 18px;
  }

  .brand-mini img {
    width: 48px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    gap: 4px;
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .menu-toggle span {
    width: 20px;
  }

  .site-nav {
    top: 60px;
    right: 14px;
    left: 14px;
    min-width: 0;
  }

  .home-main {
    align-items: center;
    padding: 88px 22px 70px;
  }

  .home-hero {
    transform: translateY(-8px);
  }

  .home-logo {
    width: min(245px, 78vw);
    margin-bottom: 12px;
  }

  .coming-soon {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    font-weight: 500;
  }

  .btn {
    width: auto;
    max-width: 100%;
    min-height: 42px;
    padding: 11px 18px;
    font-size: 0.92rem;
  }

  .form-main {
    padding: 78px 14px 38px;
  }

  .form-card {
    width: 100%;
    border-radius: 22px;
    padding: 22px 16px 24px;
  }

  .form-logo {
    width: 116px;
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: 1.55rem;
  }

  .intro {
    font-size: 0.95rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  label {
    font-size: 0.9rem;
  }

  input,
  textarea,
  select {
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 16px;
  }

  .check-line {
    font-size: 0.88rem;
  }

  .btn-submit {
    width: 100%;
  }

  .thanks-main {
    padding: 90px 14px 40px;
  }

  .thanks-card {
    border-radius: 22px;
  }

  .thanks-logo {
    width: 130px;
  }
}
