:root {
  color-scheme: dark;
  --ink: #070b13;
  --ink-soft: #0d1420;
  --panel: #111a28;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f5f3ed;
  --muted: #aeb8c7;
  --gold: #f4c76b;
  --gold-strong: #ffda83;
  --blue: #7eb9ff;
  --error: #ff9d95;
  --success: #81d7a1;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  border-radius: 6px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 650;
}

.brand strong {
  color: var(--gold);
}

.brand-mark {
  width: 17px;
  height: 24px;
  display: inline-block;
  background: linear-gradient(160deg, transparent 0 30%, var(--gold) 31% 43%, transparent 44% 58%, var(--gold) 59% 71%, transparent 72%);
  filter: drop-shadow(0 0 10px rgba(244, 199, 107, 0.4));
}

.header-cta {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 960px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 40%, rgba(42, 106, 189, 0.28), transparent 38%),
    linear-gradient(140deg, #10192b, #05080e 64%);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("https://images.unsplash.com/photo-1566796568056-5afbbb35217d?auto=format&fit=crop&w=2200&q=82");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.96) 0%, rgba(4, 8, 14, 0.72) 48%, rgba(4, 8, 14, 0.2) 80%),
    linear-gradient(0deg, var(--ink) 0%, transparent 23%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.42), transparent 20%);
}

.hero-beam {
  position: absolute;
  height: 900px;
  width: 110px;
  top: -220px;
  right: 17%;
  transform: rotate(23deg);
  transform-origin: 50% 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 184, 255, 0.15), transparent);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-beam-two {
  right: 4%;
  transform: rotate(35deg);
  opacity: 0.48;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: 92px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 8.7vw, 7.7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
}

.hero-copy {
  max-width: 630px;
  color: #d6deea;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary,
.button-submit {
  background: var(--gold);
  color: #101010;
  box-shadow: 0 10px 30px rgba(244, 199, 107, 0.18);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-submit:hover {
  background: var(--gold-strong);
  box-shadow: 0 13px 36px rgba(244, 199, 107, 0.25);
}

.text-link {
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 62px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

.section {
  padding: 112px 0;
}

.services-section {
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    radial-gradient(circle at 80% 0, rgba(45, 112, 196, 0.13), transparent 36%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -70px;
  border-radius: 50%;
  background: rgba(67, 131, 220, 0.12);
  filter: blur(20px);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 199, 107, 0.5);
  background: rgba(255, 255, 255, 0.045);
}

.service-card:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
.check-card:has(input:focus-visible),
.choice-pill:has(input:focus-visible) {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.service-number {
  color: #728097;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.service-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 28px 0 22px;
  border-radius: 50%;
  border: 1px solid rgba(126, 185, 255, 0.4);
  box-shadow: inset 0 0 18px rgba(126, 185, 255, 0.12);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.searchlight-icon::before {
  width: 8px;
  height: 30px;
  left: 15px;
  bottom: 4px;
  transform: rotate(-28deg);
  background: linear-gradient(transparent, var(--blue));
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}

.uplight-icon::before {
  inset: 12px 18px 8px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 -6px 13px rgba(126, 185, 255, 0.6);
}

.rope-icon::before {
  width: 25px;
  height: 12px;
  left: 11px;
  top: 16px;
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 50% 50%;
}

.rope-icon::after {
  width: 2px;
  height: 24px;
  left: 13px;
  top: 13px;
  background: var(--gold);
  box-shadow: 20px 0 var(--gold);
}

.sign-icon::before {
  inset: 10px 12px;
  border: 2px solid var(--blue);
  border-radius: 2px;
}

.sign-icon::after {
  width: 14px;
  height: 2px;
  left: 17px;
  top: 22px;
  background: var(--blue);
  box-shadow: 0 6px var(--blue);
}

.audio-icon::before {
  width: 18px;
  height: 28px;
  left: 14px;
  top: 9px;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.audio-icon::after {
  width: 7px;
  height: 7px;
  left: 21px;
  top: 24px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.service-title {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-copy {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-action {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-section {
  border-block: 1px solid var(--line);
  background: #0a1019;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 9vw;
}

.process-heading {
  margin-bottom: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 199, 107, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 112, 196, 0.16), transparent 32%),
    var(--ink);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 8vw;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 100px;
}

.quote-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.quote-promise {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.quote-promise > span {
  color: var(--gold);
}

.quote-promise p {
  margin: 0;
  color: #d8dfeb;
  font-size: 0.88rem;
}

.form-shell {
  min-height: 500px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 26, 40, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.field,
fieldset.field {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

label,
legend {
  display: block;
  margin-bottom: 8px;
  color: #eef2f7;
  font-size: 0.84rem;
  font-weight: 750;
}

.optional {
  margin-left: 5px;
  color: #7f8b9b;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-hint {
  margin: -4px 0 9px;
  color: #8e9aab;
  font-size: 0.76rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  min-height: 51px;
  padding: 11px 14px;
  border: 1px solid #344054;
  border-radius: 9px;
  background: #0a1019;
  color: var(--text);
}

input::placeholder {
  color: #788496;
}

input:focus,
select:focus {
  border-color: var(--gold);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.two-column label {
  color: var(--muted);
  font-size: 0.76rem;
}

.choice-row {
  display: flex;
  gap: 10px;
}

.choice-pill,
.check-card {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.choice-pill input,
.check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span,
.check-card span {
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 9px 15px;
  border: 1px solid #344054;
  border-radius: 8px;
  background: #0a1019;
  color: #c7d0dc;
  font-size: 0.8rem;
  font-weight: 650;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.choice-pill input:checked + span,
.check-card input:checked + span {
  border-color: var(--gold);
  background: rgba(244, 199, 107, 0.1);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(244, 199, 107, 0.2);
}

.choice-pill input:checked + span::before,
.check-card input:checked + span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.field-error {
  min-height: 1em;
  margin: 7px 0 0;
  color: var(--error);
  font-size: 0.76rem;
}

[aria-invalid="true"] {
  border-color: var(--error) !important;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-status {
  min-height: 22px;
  margin-bottom: 12px;
  color: var(--error);
  font-size: 0.86rem;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.button-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.privacy-line {
  margin: 13px 0 0;
  color: #7f8b9b;
  text-align: center;
  font-size: 0.72rem;
}

.success-panel {
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-panel:not([hidden]) {
  display: flex;
}

.success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(129, 215, 161, 0.5);
  border-radius: 50%;
  background: rgba(129, 215, 161, 0.08);
  color: var(--success);
  font-size: 1.4rem;
}

.success-panel h3 {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.success-panel > p:last-child {
  max-width: 500px;
  color: var(--muted);
}

.site-footer {
  padding: 55px 0;
  border-top: 1px solid var(--line);
  background: #05080d;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  gap: 40px;
}

.footer-layout p {
  margin: 12px 0 0;
  color: #8995a6;
  font-size: 0.78rem;
}

.footer-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 750;
}

.footer-privacy a {
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 700px;
    height: auto;
    padding: 120px 0 70px;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:last-child {
    grid-column: 2 / span 4;
  }

  .process-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .quote-intro {
    position: static;
  }

  .quote-layout {
    max-width: 720px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-privacy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .wrap,
  .site-header {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand {
    font-size: 0.68rem;
  }

  .header-cta {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 92px;
  }

  .hero-photo {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 8, 14, 0.91), rgba(4, 8, 14, 0.48)),
      linear-gradient(0deg, var(--ink) 0%, transparent 31%),
      linear-gradient(180deg, rgba(4, 8, 14, 0.52), transparent 22%);
  }

  h1 {
    font-size: clamp(3.3rem, 15.5vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-note {
    margin-top: 46px;
    font-size: 0.67rem;
  }

  .section {
    padding: 82px 0;
  }

  .service-grid {
    display: block;
  }

  .service-card {
    width: 100%;
    min-height: 280px;
    margin-bottom: 12px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .form-shell {
    padding: 24px 17px;
    border-radius: 17px;
  }

  .two-column,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-privacy {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
