:root {
  --blue: #082744;
  --blue-2: #0f3a63;
  --orange: #e87500;
  --cream: #f7f1e8;
  --cream-2: #fbf8f2;
  --white: #ffffff;
  --text: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --danger: #9f2f24;
  --shadow: 0 18px 42px rgba(8, 39, 68, 0.11);
  --soft-shadow: 0 10px 28px rgba(8, 39, 68, 0.07);
  --radius: 8px;
  --container: min(1160px, calc(100% - 36px));
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.42);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

main[id],
section[id],
.form-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-height: 78px;
  padding: 0 max(18px, calc((100% - 1340px) / 2));
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 39, 68, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd6aa;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: 0;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 680;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: clamp(7px, 0.8vw, 12px);
  min-width: 0;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
}

.button,
.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary,
.mobile-bar a:first-child {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(232, 117, 0, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue);
}

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

.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-header .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.site-header .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blue-section .eyebrow,
.cta-band .eyebrow {
  color: #ffd6aa;
}

h1,
h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3.05rem);
}

h3 {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 1.15rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

p {
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.hero,
.page-hero {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.92), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(85, 124, 101, 0.12), rgba(232, 117, 0, 0.05));
}

.hero {
  padding: clamp(46px, 7vw, 88px) 0 44px;
}

.page-hero {
  padding: clamp(44px, 7vw, 78px) 0;
}

.hero-grid,
.split-grid,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.hero-lead,
.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-story {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
}

.hero-story p {
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-note,
.form-note {
  color: var(--blue);
  font-weight: 760;
}

.fine-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-media,
.split-media,
.image-card,
.form-card,
.card,
.mini-card,
.faq-item,
.contact-panel,
.legal-panel,
.reveal-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-media,
.split-media,
.image-card {
  overflow: hidden;
}

.hero-media {
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.hero-media figcaption,
.split-media figcaption {
  padding: 18px 22px;
  color: var(--blue);
  font-weight: 760;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-height: 102px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid span,
.card span,
.mini-card span,
.reveal-card span,
.step-list span,
.pill-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  color: var(--blue);
  line-height: 1.3;
}

.section {
  padding: clamp(58px, 8vw, 92px) 0;
}

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

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

.green-section {
  background: #f1f6ef;
}

.blue-section,
.cta-band {
  background: var(--blue);
  color: var(--white);
}

.blue-section h2,
.blue-section h3,
.cta-band h2 {
  color: var(--white);
}

.blue-section .section-lead,
.cta-band .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.card-grid,
.motive-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.mini-card,
.contact-panel,
.legal-panel {
  padding: 24px;
}

.card p,
.mini-card p,
.contact-panel p,
.legal-panel p,
.reveal-card p,
.location-card p {
  color: var(--muted);
}

.card p:last-child,
.mini-card p:last-child,
.contact-panel p:last-child,
.legal-panel p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.entry-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.entry-card .actions {
  margin-top: auto;
  padding-top: 20px;
}

.image-card img,
.split-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.check-list,
.simple-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 22px;
}

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

.simple-list li::before {
  background: var(--green);
}

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

.reveal-card {
  overflow: hidden;
}

.reveal-card summary,
.location-card summary,
.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.reveal-card summary::-webkit-details-marker,
.location-card summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.reveal-card summary {
  display: grid;
  gap: 8px;
  min-height: 212px;
  padding: 24px;
}

.reveal-card summary::after,
.location-card summary::after,
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--orange);
  font-weight: 900;
}

.reveal-card[open] summary::after,
.location-card[open] summary::after,
.faq-item[open] summary::after {
  content: "-";
}

.reveal-body,
.location-body,
.faq-body {
  padding: 0 24px 24px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  list-style: none;
}

.step-list li {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.step-list li:last-child {
  border-right: 0;
}

.location-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.location-card {
  overflow: hidden;
}

.location-card summary {
  padding: 20px;
}

.location-card h3 {
  margin-bottom: 0;
}

.location-card summary::after {
  margin-top: 12px;
}

.form-card {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

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

.field label,
.field legend {
  color: var(--blue);
  font-size: 14px;
  font-weight: 820;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.privacy-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
  color: var(--text);
  font-weight: 650;
}

.privacy-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.field-error,
.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 720;
}

.form-status {
  margin: 10px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(85, 124, 101, 0.26);
  border-radius: var(--radius);
  background: #f2f7ef;
  color: #356047;
  font-weight: 780;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(159, 47, 36, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  color: var(--blue);
  font-weight: 850;
}

.faq-item summary::after {
  flex: 0 0 auto;
  margin-top: 0;
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
}

.cta-band {
  padding: clamp(44px, 7vw, 72px) 0;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-links a,
.contact-links div {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
}

.contact-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.site-footer {
  border-top: 5px solid var(--orange);
  background: #061d32;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.45fr);
  gap: 48px;
  padding: 54px 0;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 850;
}

.footer-company p {
  margin: 0 0 10px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-nav > div {
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
}

.footer-nav a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.mobile-bar {
  display: none;
}

.legal-panel h2 {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 1.35rem;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .site-header {
    gap: 16px;
    padding: 0 18px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 13.5px;
  }

  .main-nav a {
    min-height: 32px;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

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

  .header-actions {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 78px 18px auto 18px;
    z-index: 180;
    display: none;
    flex: initial;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
    color: var(--text);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--blue);
  }

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

  .hero-grid > *,
  .split-grid > *,
  .contact-grid > *,
  .legal-grid > *,
  .card,
  .mini-card,
  .reveal-card,
  .location-card,
  .form-card,
  .hero-media,
  .split-media {
    min-width: 0;
    max-width: 100%;
  }

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

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

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

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

  .step-list li:nth-child(2n),
  .step-list li:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    padding-bottom: 78px;
    font-size: 16px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    inset: 64px 12px auto 12px;
    max-height: calc(100dvh - 140px);
  }

  .hero,
  .page-hero {
    padding: 42px 0 44px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.12;
  }

  .hero-lead,
  .section-lead {
    font-size: 1rem;
  }

  .actions,
  .cta-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .form-card .button {
    width: 100%;
  }

  .trust-grid,
  .two,
  .three,
  .four,
  .form-grid,
  .step-list,
  .footer-grid,
  .footer-nav,
  .reveal-grid,
  .location-grid,
  .location-intro {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    border-left: 0;
  }

  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-left: 0;
    text-align: left;
  }

  .card,
  .mini-card,
  .contact-panel,
  .legal-panel,
  .form-card,
  .reveal-card summary {
    padding: 20px;
  }

  .reveal-card summary {
    min-height: auto;
  }

  .reveal-body {
    padding: 0 20px 20px;
  }

  .field-full {
    grid-column: auto;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(8, 39, 68, 0.12);
    width: 100%;
  }

  .mobile-bar a {
    min-width: 0;
    min-height: 50px;
    padding: 0 10px;
    font-size: 14px;
    white-space: normal;
  }

  .mobile-bar a:last-child {
    background: var(--blue);
    color: var(--white);
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.78rem;
  }
}

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