:root {
  --navy: #0a2e54;
  --navy-deep: #06213e;
  --gold: #c5a059;
  --gold-light: #eadfc9;
  --offwhite: #f8f9fb;
  --white: #ffffff;
  --text: #243342;
  --muted: #687788;
  --line: rgba(10, 46, 84, 0.11);
  --shadow-soft: 0 18px 55px rgba(10, 46, 84, 0.08);
  --shadow-card: 0 28px 80px rgba(10, 46, 84, 0.11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 13px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 3%, rgba(197, 160, 89, 0.18), transparent 29rem),
    radial-gradient(circle at 4% 28%, rgba(10, 46, 84, 0.05), transparent 24rem),
    linear-gradient(145deg, #fbfcfd 0%, #f5f7f9 58%, #eef2f5 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: var(--navy); }

img { max-width: 100%; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(197, 160, 89, 0.48);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 25px clamp(22px, 5vw, 68px);
  animation: fade-in 700ms ease-out both;
}

.header-logo {
  display: block;
  width: min(300px, 72vw);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 142px 22px 92px;
}

.hero-card {
  position: relative;
  width: min(850px, 100%);
  padding: clamp(46px, 7vw, 82px) clamp(30px, 7vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-card);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: hero-rise 780ms cubic-bezier(.2,.75,.25,1) both;
}

.hero-card::before {
  position: absolute;
  top: -130px;
  right: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.13), transparent 69%);
  content: "";
  pointer-events: none;
}

.hero-logo {
  position: relative;
  display: block;
  width: min(470px, 94%);
  margin: 0 auto 38px;
  animation: fade-up 760ms 120ms ease-out both;
}

.status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 14px;
  border: 1px solid rgba(197, 160, 89, 0.48);
  border-radius: 999px;
  background: rgba(234, 223, 201, 0.28);
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  animation: fade-up 760ms 200ms ease-out both;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.12);
  content: "";
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  position: relative;
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 5.4vw, 4.15rem);
  letter-spacing: -0.035em;
  animation: fade-up 760ms 280ms ease-out both;
}

.hero-copy {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.15vw, 1.18rem);
  animation: fade-up 760ms 360ms ease-out both;
}

.actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  animation: fade-up 760ms 440ms ease-out both;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 46, 84, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
  box-shadow: 0 15px 32px rgba(10, 46, 84, 0.19);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(10, 46, 84, 0.045);
}

.icon-button {
  width: 54px;
  min-width: 54px;
  padding: 0;
}

.icon-button svg {
  display: block;
  width: 22px;
  height: 22px;
}

.section {
  padding: 112px 22px;
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  position: relative;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy), #123f70);
  color: rgba(255, 255, 255, 0.82);
}

.contact-info::after {
  position: absolute;
  right: -95px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 50%;
  content: "";
}

.contact-info h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.6rem;
}

.contact-info > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  padding: clamp(30px, 5vw, 52px);
}

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

.field { margin-bottom: 19px; }

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(10, 46, 84, 0.16);
  border-radius: 11px;
  background: #fbfcfd;
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
textarea:hover {
  border-color: rgba(10, 46, 84, 0.28);
}

input:focus,
textarea:focus {
  border-color: rgba(197, 160, 89, 0.8);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.10);
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox-row label {
  margin: 0;
  color: inherit;
  font-weight: 400;
}

.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 30px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

.legal-page {
  min-height: 100vh;
  padding: 46px 22px 78px;
}

.legal-header {
  width: min(920px, 100%);
  margin: 0 auto 28px;
}

.legal-header img { width: min(310px, 76vw); }

.legal-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.legal-card h1 { font-size: clamp(2.1rem, 5vw, 3.15rem); }
.legal-card h2 { margin-top: 36px; font-size: 1.28rem; }
.legal-card p, .legal-card li { color: #3b4b59; }
.legal-card address { font-style: normal; }

.back-link {
  display: inline-flex;
  margin-top: 30px;
  font-weight: 700;
  text-decoration: none;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 800px) {
  .site-header { position: static; padding-bottom: 0; }
  .hero { min-height: auto; padding-top: 54px; }
  .contact-shell { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 520px) {
  .hero { padding-inline: 14px; }
  .hero-card { padding-inline: 22px; border-radius: 23px; }
  .section { padding: 88px 14px; }
  .actions { gap: 10px; }
}
