:root {
  --blue: #082744;
  --blue-2: #0f3a63;
  --orange: #e87500;
  --orange-dark: #bf5f00;
  --cream: #f7f1e8;
  --cream-2: #fbf7f0;
  --white: #ffffff;
  --text: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --shadow: 0 18px 46px rgba(8, 39, 68, 0.12);
  --soft-shadow: 0 12px 30px rgba(8, 39, 68, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream-2);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  max-width: 820px;
}

h3 {
  font-size: 1.18rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 39, 68, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(8, 39, 68, 0.12);
}

.header-inner {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(8, 39, 68, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.02rem;
  color: var(--white);
}

.brand-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  font-size: 0.84rem;
  padding: 0.58rem 0.52rem;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.site-header .btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 0.98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.15;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(232, 117, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(8, 39, 68, 0.16);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: var(--soft-shadow);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
}

.site-main {
  overflow: hidden;
}

.section {
  padding: clamp(3.2rem, 7vw, 6.3rem) 0;
}

.section-tight {
  padding: clamp(2.2rem, 5vw, 4.2rem) 0;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: clamp(2rem, 5vw, 4.6rem) 0 clamp(3rem, 6vw, 5.4rem);
  background:
    radial-gradient(circle at 15% 15%, rgba(232, 117, 0, 0.08), transparent 26rem),
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: clamp(1.7rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: #293d55;
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.quiet-note {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 650;
  max-width: 640px;
}

.hero-media {
  position: relative;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255, 255, 255, 0.84);
  background: var(--white);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-frame.tall img {
  min-height: 440px;
}

.media-badge {
  position: absolute;
  left: -18px;
  bottom: 26px;
  max-width: 245px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(229, 220, 207, 0.84);
}

.media-badge strong {
  display: block;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.media-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.trust-item {
  background: rgba(255, 255, 255, 0.86);
  padding: 1.25rem;
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.section-heading.center {
  text-align: center;
  justify-items: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.accordion-card,
.location-card,
.step-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(8, 39, 68, 0.06);
}

.card,
.feature-card,
.step-card {
  padding: 1.35rem;
}

.card p,
.feature-card p,
.step-card p {
  color: var(--muted);
  margin: 0.55rem 0 0;
}

.marker {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(232, 117, 0, 0.12);
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 0.85rem;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

details.accordion-card,
details.location-card {
  overflow: hidden;
}

details.accordion-card summary,
details.location-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.25rem 1.1rem;
  display: grid;
  gap: 0.55rem;
}

details.accordion-card summary::-webkit-details-marker,
details.location-card summary::-webkit-details-marker {
  display: none;
}

.summary-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.summary-line strong {
  font-size: 1.08rem;
  color: var(--blue);
  line-height: 1.25;
}

.summary-line::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--blue);
  font-weight: 800;
}

details[open] .summary-line::after {
  content: "−";
}

.summary-text {
  color: var(--muted);
  margin: 0;
}

.details-body {
  padding: 0 1.25rem 1.25rem;
  color: #31465e;
}

.details-body p {
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.cream-band {
  background: var(--cream);
}

.white-band {
  background: var(--white);
}

.blue-band {
  background:
    linear-gradient(135deg, rgba(15, 58, 99, 0.96), rgba(8, 39, 68, 0.98)),
    var(--blue);
  color: var(--white);
}

.blue-band .eyebrow,
.blue-band p,
.blue-band .lead {
  color: rgba(255, 255, 255, 0.82);
}

.blue-band .eyebrow::before {
  background: var(--orange);
}

.blue-band .card {
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 0.96fr);
}

.list {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.5rem;
  color: #31465e;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.steps {
  counter-reset: steps;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.form-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.form-intro {
  color: var(--muted);
  max-width: 780px;
  margin: 0.75rem 0 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.field-label {
  font-weight: 750;
  color: var(--blue);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8ccbd;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fffdf9;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(232, 117, 0, 0.22);
  border-color: var(--orange);
  background: var(--white);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.1rem 0 0.8rem;
  color: #31465e;
}

.checkbox input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.18rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-note,
.small-note {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: #f0f8f1;
  color: #174626;
  border: 1px solid #cfe6d2;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 780;
  color: var(--blue);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  color: var(--muted);
  padding: 0 1.15rem 1rem;
  margin: 0;
}

.contact-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.86);
}

.contact-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.contact-lines a {
  text-decoration: none;
  font-weight: 750;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 0 6.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.55fr));
  gap: 2rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a {
  display: inline-block;
  text-decoration: none;
  margin: 0.22rem 0;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(8, 39, 68, 0.12);
}

.mobile-action-bar .btn {
  flex: 1;
  min-height: 48px;
  padding-inline: 0.7rem;
  font-size: 0.9rem;
}

.legal-text {
  max-width: 860px;
}

.legal-text h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.legal-text p,
.legal-text li {
  color: var(--muted);
}

@media (max-width: 1280px) {
  .main-nav {
    display: none;
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 940px) {
  h1 {
    font-size: clamp(2.25rem, 9vw, 4rem);
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .image-frame img,
  .image-frame.tall img {
    min-height: 280px;
    max-height: 440px;
  }

  .media-badge {
    position: static;
    margin-top: -1rem;
    margin-left: 1rem;
    max-width: calc(100% - 2rem);
  }

  .trust-strip,
  .grid-4,
  .grid-3,
  .accordion-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-text span {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .main-nav {
    inset: 68px 0 auto 0;
  }

  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-actions,
  .section-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .accordion-grid,
  .location-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .card,
  .feature-card,
  .step-card,
  details.accordion-card summary,
  details.location-card summary {
    padding: 1.1rem;
  }

  .details-body {
    padding: 0 1.1rem 1.1rem;
  }

  .mobile-action-bar {
    display: flex;
  }
}

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