:root {
  --navy: #14324d;
  --slate: #234a6b;
  --blue: #2f5f8f;
  --tan: #d7bf98;
  --sand: #f7ecdb;
  --cream: #fffaf2;
  --brown: #7b5336;
  --brown-dark: #573920;
  --line: #e4d3bb;
  --text: #1f2a37;
  --muted: #637085;
  --shadow: 0 20px 60px rgba(20, 50, 77, 0.14);
  --shadow-soft: 0 10px 30px rgba(20, 50, 77, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 191, 152, 0.22), transparent 36%),
    radial-gradient(circle at top right, rgba(47, 95, 143, 0.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fdfaf5 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  border: 2px solid var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { left: 16px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section-pad { padding: 88px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(247, 236, 219, 0.48), rgba(255, 250, 242, 0.92));
  border-top: 1px solid rgba(228, 211, 187, 0.72);
  border-bottom: 1px solid rgba(228, 211, 187, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 211, 187, 0.8);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(47,95,143,0.16), rgba(215,191,152,0.5));
  box-shadow: inset 0 0 0 1px rgba(20, 50, 77, 0.12), 0 8px 20px rgba(20, 50, 77, 0.12);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong {
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-copy small { color: var(--muted); }
.footer-brand { margin-bottom: 14px; }

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.primary-nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.98rem;
}
.primary-nav a:hover { color: var(--brown); }

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(20, 50, 77, 0.2);
  white-space: nowrap;
}
.call-pill span { font-size: 0.84rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; }
.call-pill strong { font-size: 0.96rem; }

.nav-toggle {
  display: none;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(20, 50, 77, 0.08);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}
.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;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(215,191,152,0.46), rgba(215,191,152,0) 68%);
}
.hero::after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(47,95,143,0.14), rgba(47,95,143,0) 64%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(215, 191, 152, 0.24);
  color: var(--brown-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), #b98753);
  box-shadow: 0 0 0 6px rgba(123, 83, 54, 0.12);
}
.hero-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 0.97;
  color: var(--navy);
  letter-spacing: -0.05em;
  max-width: 11ch;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: #fff;
  box-shadow: 0 18px 34px rgba(20, 50, 77, 0.18);
}
.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,0.85);
  border-color: rgba(20, 50, 77, 0.14);
  box-shadow: 0 12px 28px rgba(20, 50, 77, 0.08);
}
.btn.full-width { width: 100%; }
.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badges li,
.chip-list span,
.mini-card,
.info-callout,
.resource-banner,
.feature-card,
.step-card,
.why-item,
.contact-card,
.panel-card,
.faq-item {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 211, 187, 0.9);
  box-shadow: var(--shadow-soft);
}
.trust-badges li {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}
.hero-panel {
  display: grid;
  gap: 16px;
}
.panel-card {
  border-radius: var(--radius-xl);
  padding: 22px;
}
.logo-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,236,219,0.85));
}
.logo-wrap {
  aspect-ratio: 1;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.92), transparent 30%),
    linear-gradient(145deg, rgba(20,50,77,0.98), rgba(47,95,143,0.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 18px 30px rgba(20, 50, 77, 0.18);
}
.logo-art {
  width: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  padding: 6px;
  object-fit: cover;
}
.panel-label {
  margin: 0 0 6px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}
.logo-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  line-height: 1.15;
  font-size: 1.24rem;
}
.logo-card p:last-child,
.map-caption p,
.small-copy { color: var(--muted); }
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  border-radius: 20px;
  padding: 18px;
}
.mini-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}
.mini-card strong { color: var(--navy); display: block; line-height: 1.35; }
.mini-card-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin: 4px 0 14px;
  background: linear-gradient(180deg, rgba(20,50,77,0.06), rgba(215,191,152,0.12));
  border: 1px solid rgba(20, 50, 77, 0.08);
}
.service-strip {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20,50,77,0.96), rgba(47,95,143,0.94));
  color: #fff;
  box-shadow: var(--shadow);
}
.service-strip p { margin: 0; line-height: 1.7; }

.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading.left { margin-bottom: 0; }
.section-heading span,
.resource-banner span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.section-heading h2,
.resource-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.section-heading p,
.resource-banner p { color: var(--muted); line-height: 1.75; margin: 0; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.step-card,
.why-item,
.contact-card,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 24px;
}
.feature-card h3,
.step-card h3,
.why-item strong,
.contact-card h3,
.map-caption strong,
.faq-item summary {
  color: var(--navy);
}
.feature-card p,
.step-card p,
.why-item p,
.contact-card p,
.map-caption p,
.info-callout p,
.feature-card p,
.resource-banner p { line-height: 1.72; }
.feature-card { min-height: 100%; }

.split-grid,
.service-area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}
.why-list {
  display: grid;
  gap: 14px;
}
.why-item strong { display: block; margin-bottom: 8px; font-size: 1.06rem; }
.why-item p { margin: 0; color: var(--muted); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20,50,77,0.1), rgba(215,191,152,0.32));
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
}
.step-card p { color: var(--muted); }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.chip-list span {
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--brown-dark);
}
.info-callout {
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.info-callout p { margin: 0 0 8px; }
.info-callout p:last-child { margin-bottom: 0; }
.info-callout a, .form-help a, .resource-list a, .footer-bottom a, .site-footer a { color: var(--blue); }
.info-callout a:hover, .form-help a:hover, .resource-list a:hover, .footer-bottom a:hover, .site-footer a:hover { color: var(--brown); }

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(228, 211, 187, 0.85);
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}
.map-caption {
  padding: 18px 20px 22px;
  background: linear-gradient(180deg, #fff, rgba(247,236,219,0.75));
}
.map-caption strong { display: block; margin-bottom: 8px; }

.intake-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(228, 211, 187, 0.9);
  box-shadow: var(--shadow);
}
.intake-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}
.intake-form input,
.intake-form textarea,
.intake-form select,
.chat-input input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(36, 74, 107, 0.18);
  background: #fff;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus,
.chat-input input:focus {
  border-color: rgba(47, 95, 143, 0.6);
  box-shadow: 0 0 0 4px rgba(47, 95, 143, 0.12);
}
.form-row.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-help,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.form-status { min-height: 1.5em; font-weight: 700; color: var(--brown-dark); }

.contact-stack {
  display: grid;
  gap: 18px;
}
.contact-card.highlight-card {
  background: linear-gradient(180deg, rgba(20,50,77,0.96), rgba(47,95,143,0.94));
  color: #fff;
  border-color: transparent;
}
.contact-card.highlight-card h3 { color: #fff; }
.contact-card.highlight-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}
.contact-card.note-card { background: linear-gradient(180deg, rgba(215,191,152,0.22), rgba(255,255,255,0.9)); }
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}
.resource-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(247,236,219,0.65);
}
.small-copy { margin: 0; font-size: 0.94rem; }

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brown);
  font-size: 1.25rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 14px 0 0; color: var(--muted); line-height: 1.75; }

.resource-banner {
  border-radius: var(--radius-xl);
  padding: 30px;
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 54px 0 92px;
  background: linear-gradient(180deg, rgba(20,50,77,0.98), rgba(11,26,41,0.98));
  color: rgba(255,255,255,0.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 26px;
}
.footer-grid p { color: rgba(255,255,255,0.76); line-height: 1.7; }
.footer-grid h3 { color: #fff; margin: 0 0 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: #e8dbbf; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.72);
}
.footer-bottom p { margin: 0; }
.footer-credit { margin: 0; font-weight: 700; }
.footer-credit a { color: #f4d7b0; text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: #fff; }
.footer-bottom a { color: #f4d7b0; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 75;
  width: min(calc(100% - 24px), 450px);
  border-radius: 999px;
  padding: 8px;
  background: rgba(20, 50, 77, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.mobile-bar a,
.mobile-bar button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: transparent;
}
.mobile-bar a:nth-child(1) { background: rgba(255,255,255,0.12); }
.mobile-bar a:nth-child(2) { background: rgba(215,191,152,0.22); }
.mobile-bar button { background: rgba(123,83,54,0.94); cursor: pointer; }

.chat-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 82;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brown), #9a6e49);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 22px 40px rgba(123, 83, 54, 0.28);
  cursor: pointer;
}
.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 81;
  width: min(360px, calc(100% - 24px));
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(228, 211, 187, 0.95);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  padding: 16px 16px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  background: linear-gradient(135deg, rgba(20,50,77,0.98), rgba(47,95,143,0.94));
  color: #fff;
}
.chat-header p { margin: 4px 0 0; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.chat-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}
.chat-body {
  display: grid;
  gap: 10px;
  padding: 16px;
  max-height: 260px;
  overflow: auto;
  background: linear-gradient(180deg, #fff, rgba(247,236,219,0.55));
}
.chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
}
.chat-message.bot {
  background: #eef5fb;
  color: var(--navy);
  border-bottom-left-radius: 6px;
}
.chat-message.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: #fff;
  border-bottom-right-radius: 6px;
}
.chat-quick-replies {
  padding: 0 16px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-quick-replies button,
.chat-input button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.chat-quick-replies button {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(20,50,77,0.08);
  color: var(--navy);
}
.chat-input {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}
.chat-input button {
  padding: 0 14px;
  border-radius: 14px;
  background: var(--brown);
  color: #fff;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%) translateY(18px);
  background: rgba(20,50,77,0.96);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .primary-nav { grid-column: 1 / -1; order: 4; justify-content: flex-start; display: none; padding-bottom: 10px; }
  .primary-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .call-pill { display: none; }
  .hero-grid,
  .split-grid,
  .service-area-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 100%; }
}

@media (max-width: 760px) {
  .section-pad { padding: 68px 0; }
  .header-inner { gap: 12px; }
  .brand-copy small { display: none; }
  .logo-card { grid-template-columns: 92px 1fr; }
  .panel-grid, .cards-grid, .form-row.two-up { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .chat-fab { right: 14px; bottom: 88px; width: 60px; height: 60px; border-radius: 20px; }
  .chat-widget { right: 12px; bottom: 160px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .map-card iframe { min-height: 320px; }
}

@media (max-width: 540px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-copy h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .intake-form { padding: 20px; }
  .chat-widget { width: calc(100% - 20px); }
}
