:root {
  --navy: #0b1f33;
  --navy-light: #173956;
  --gold: #c99a3d;
  --gold-dark: #9a6d18;
  --white: #ffffff;
  --off-white: #f5f7f9;
  --gray-100: #e3e8ed;
  --gray-500: #596775;
  --text: #172431;
  --error: #b42318;
  --success: #176b43;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--white);
  background: rgba(11, 31, 51, 0.98);
  border-bottom: 3px solid var(--gold);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner { min-height: 92px; }
.brand { min-width: 0; }

.company-name {
  margin: 0;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.tagline {
  margin: 5px 0 0;
  color: #d8e1e9;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { background: #ddb258; border-color: #ddb258; transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid #f2bd51;
  outline-offset: 3px;
}

.button-small { flex-shrink: 0; min-height: 46px; padding: 10px 19px; white-space: nowrap; }

.intro {
  padding: clamp(64px, 9vw, 110px) 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 64%, #f3ead7 100%);
  border-bottom: 1px solid var(--gray-100);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 8vw, 90px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { max-width: 780px; font-size: clamp(2.35rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }

.intro-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: #3c4c5b;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.service-summary {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-summary p { margin-top: 0; font-size: 1.12rem; }
.service-summary ul { margin: 20px 0 0; padding-left: 22px; color: #dce5ec; }
.service-summary li + li { margin-top: 7px; }
.service-summary li::marker { color: var(--gold); }

.request-section { padding: clamp(64px, 8vw, 100px) 0; background: var(--off-white); }
.request-layout { max-width: 900px; }
.section-heading { margin-bottom: 32px; }
.section-heading > p:last-child { max-width: 660px; margin: 16px 0 0; color: var(--gray-500); }

.request-form {
  position: relative;
  padding: clamp(24px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 24px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }

label, legend { color: var(--navy); font-weight: 700; }
label { display: block; margin-bottom: 7px; }
legend { padding: 0; }

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #aeb9c4;
  border-radius: 9px;
  font: inherit;
}

textarea { min-height: 180px; resize: vertical; }
select { min-height: 54px; }
input:hover, select:hover, textarea:hover { border-color: #617180; }
.is-invalid { border-color: var(--error); box-shadow: 0 0 0 1px var(--error); }
.required-mark { color: var(--error); }
.optional { color: var(--gray-500); font-size: 0.9rem; font-weight: 400; }
.hint, .error { margin: 5px 0 0; font-size: 0.86rem; line-height: 1.4; }
.hint { color: var(--gray-500); }
.error { min-height: 1.2em; color: var(--error); font-weight: 700; }

.choice-group { margin: 0; padding: 0; border: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.choices label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 120px;
  margin: 0;
  padding: 11px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 9px;
  cursor: pointer;
}
.choices input, .checkbox-field input { width: 20px; height: 20px; margin: 0; accent-color: var(--navy); }
.checkbox-field label { display: flex; align-items: flex-start; gap: 11px; margin: 0; }
.checkbox-field input { flex: 0 0 auto; margin-top: 3px; }

.submit-button { width: 100%; min-height: 60px; margin-top: 8px; font-size: 1.08rem; }
.submit-button:disabled { cursor: wait; opacity: 0.7; transform: none; }
.privacy-note { margin: 14px 0 0; color: var(--gray-500); font-size: 0.84rem; text-align: center; }
.form-status { margin-bottom: 14px; color: var(--error); font-weight: 700; }
.form-status:empty { display: none; }

.confirmation {
  margin-bottom: 32px;
  padding: 28px;
  color: #0f5132;
  background: #e9f7ef;
  border: 1px solid #93d2ad;
  border-left: 6px solid var(--success);
  border-radius: var(--radius);
}
.confirmation h2 { color: #0f5132; font-size: 1.5rem; }
.confirmation p { margin: 9px 0 0; }

.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.contact-section { padding: clamp(58px, 8vw, 88px) 0; color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-section h2 { color: var(--white); }
.gold { color: #e4b85e; }
.urgent-note { padding-left: 15px; border-left: 3px solid var(--gold); font-weight: 700; }
.contact-details { font-style: normal; }
.contact-details p { display: grid; grid-template-columns: 110px 1fr; gap: 14px; margin: 0; padding: 13px 0; border-bottom: 1px solid #395069; }
.contact-details span { color: #b8c5d0; font-weight: 700; }
.contact-details a { overflow-wrap: anywhere; color: var(--white); text-underline-offset: 3px; }

footer { padding: 24px 0; color: #dce5ec; background: #071522; font-size: 0.88rem; }
.footer-inner p { margin: 0; }
.footer-inner a { text-underline-offset: 3px; }

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 82px; gap: 12px; }
  .tagline { font-size: 0.72rem; letter-spacing: 0.04em; }
  .button-small { min-height: 42px; padding: 9px 12px; font-size: 0.86rem; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 38px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-grid { gap: 32px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .header-inner { gap: 8px; }
  .brand { flex: 1 1 auto; }
  .company-name { font-size: 1rem; }
  .button-small { padding: 8px 10px; font-size: 0.8rem; }
  .tagline { display: none; }
  .request-form { padding: 22px 16px; }
  .choices { flex-direction: column; }
  .choices label { width: 100%; }
  .contact-details p { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { align-items: flex-start; }
}

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