/* ---- Tokens ---- */
:root {
  --navy: #0f1b2d;
  --navy-2: #16243a;
  --navy-3: #1f3050;
  --red: #e63946;
  --red-2: #c92b38;
  --cream: #fbf7f1;
  --paper: #ffffff;
  --ink: #0b1322;
  --muted: #5b6577;
  --line: #e6e2da;
  --line-strong: #d2cdc3;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(15,27,45,.06), 0 4px 16px rgba(15,27,45,.06);
  --shadow-2: 0 10px 40px rgba(15,27,45,.18);
  --container: 1180px;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Inter", Georgia, serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.015em; line-height: 1.1; margin: 0; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .75rem;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow--light { color: #ffb4ba; }
.accent { color: var(--red); font-style: italic; font-family: var(--font-display); }

/* ---- Alert bar ---- */
.alert-bar { background: var(--red); color: #fff; font-size: .92rem; }
.alert-bar__inner { display: flex; align-items: center; gap: 14px; padding: 10px 24px; flex-wrap: wrap; }
.alert-bar strong { font-weight: 700; }
.alert-dot { width: 9px; height: 9px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.alert-bar__cta {
  margin-left: auto;
  background: #fff;
  color: var(--red);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
}

/* ---- Header ---- */
.header { background: var(--cream); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo__mark { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 8px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.logo__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo__name em { color: var(--red); font-style: italic; }
.logo__sub { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.nav { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav a { font-size: .94rem; font-weight: 500; color: var(--navy); }
.nav a:hover { color: var(--red); }
.nav__cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover { background: var(--red); }

.header__call {
  display: none;
  align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: .9rem;
}

@media (max-width: 880px) {
  .nav { display: none; }
  .header__call { display: inline-flex; margin-left: auto; }
}
@media (max-width: 520px) {
  .header__inner { gap: 10px; padding: 12px 16px; }
  .logo__name { font-size: .92rem; }
  .logo__name em { display: none; }
  .logo__sub { font-size: .68rem; }
  .header__call { padding: 8px 12px; font-size: .82rem; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-2); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; padding: 80px 0 100px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(15,27,45,.92) 0%, rgba(15,27,45,.74) 45%, rgba(15,27,45,.25) 75%, rgba(15,27,45,0) 100%),
    linear-gradient(0deg, rgba(15,27,45,.35), rgba(15,27,45,.35));
}
.hero__content { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.hero__content h1 { color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  margin-bottom: 22px;
}
.badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero__lede { font-size: 1.18rem; opacity: .92; margin: 18px 0 28px; max-width: 600px; line-height: 1.5; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__chips li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
}

/* ---- Trust strip ---- */
.strip { background: var(--navy); color: #fff; padding: 22px 0; }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.strip__item strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: #fff; font-weight: 600; }
.strip__item span { font-size: .82rem; opacity: .7; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 700px) { .strip__inner { grid-template-columns: repeat(2,1fr); gap: 18px; } }

/* ---- Sections ---- */
.section { padding: 100px 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } .quote-section { padding: 64px 0 100px; } }
.section--alt { background: var(--paper); }
.quote-section { background: var(--navy); color: #fff; padding: 100px 0 140px; }
.quote-section h2 { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  text-align: left; max-width: none; gap: 32px; flex-wrap: wrap;
}
.section__head--split .eyebrow, .section__head--split h2 { text-align: left; }
.section__lede { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.placeholder-note { color: var(--red); font-style: italic; font-size: .92rem; }

/* ---- Services ---- */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.services .svc--feature { grid-column: span 3; }
@media (max-width: 980px) { .services { grid-template-columns: repeat(2,1fr); } .services .svc--feature { grid-column: span 2; } }
@media (max-width: 620px) { .services { grid-template-columns: 1fr; } .services .svc--feature { grid-column: span 1; } }

.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.svc--feature { flex-direction: row; align-items: stretch; }
.svc--feature .svc__img { width: 52%; }
.svc--feature .svc__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px) { .svc--feature { flex-direction: column; } .svc--feature .svc__img { width: 100%; } }

.svc__img { aspect-ratio: 4/3; overflow: hidden; background: var(--line); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc:hover .svc__img img { transform: scale(1.04); }
.svc__icon {
  width: 56px; height: 56px;
  margin: 28px 28px 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.svc__body { padding: 22px 26px 28px; }
.svc__body p { color: var(--muted); margin: 8px 0 0; }
.svc__body ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.svc__body ul li { margin: 4px 0; }

/* ---- About ---- */
.about {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 36px; } }
.about__copy p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.about__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.about__list li {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .98rem;
}
.about__list strong { color: var(--navy); }

.about__card {
  background: var(--navy);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky; top: 90px;
}
.about__card h3 { color: #fff; margin-top: 6px; }
.about__card-head { margin-bottom: 18px; }
.towns { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: .94rem; }
.towns li { display: flex; align-items: center; gap: 8px; }
.towns li::before {
  content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex: 0 0 6px;
}
.about__card-note { margin-top: 22px; font-size: .88rem; opacity: .75; }

/* ---- ...and More ---- */
.more { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: stretch; }
@media (max-width: 900px) { .more { grid-template-columns: 1fr; } }
.more__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; }
.more__img img { width: 100%; height: 100%; object-fit: cover; }
.more__img-caption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(15,27,45,.85); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.more__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .more__grid { grid-template-columns: 1fr; } }
.more__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.more__item h3 { margin-bottom: 6px; }
.more__item p { color: var(--muted); font-size: .94rem; margin: 0; }
.more__item--cta { background: var(--navy); color: #fff; border-color: var(--navy); }
.more__item--cta h3 { color: #fff; }
.more__item--cta p { color: rgba(255,255,255,.75); }
.more__item--featured { grid-column: span 2; background: #fff4f5; border-color: #fad4d8; }
@media (max-width: 560px) { .more__item--featured { grid-column: span 1; } }
.link-arrow { display: inline-block; margin-top: 12px; color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; }
.link-arrow:hover { border-bottom-color: var(--red); color: var(--red); }

/* ---- Reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review__stars { color: var(--red); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review blockquote { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.45; color: var(--navy); }
.review footer { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.review footer strong { color: var(--navy); }
.reviews__cta { text-align: center; margin-top: 36px; }

/* ---- Quote ---- */
.quote { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.quote > * { min-width: 0; }
@media (max-width: 900px) { .quote { grid-template-columns: minmax(0, 1fr); gap: 36px; } }
.quote__intro p { color: rgba(255,255,255,.78); margin-top: 14px; max-width: 460px; }
.quote__contact { display: grid; gap: 12px; margin-top: 30px; }
.quote__line {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.quote__line:hover { background: var(--navy-3); border-color: rgba(255,255,255,.2); transform: translateY(-1px); }
.quote__line svg { color: var(--red); flex: 0 0 20px; }
.quote__line span { display: block; font-size: .78rem; opacity: .65; text-transform: uppercase; letter-spacing: .08em; }
.quote__line strong { display: block; font-size: 1.02rem; font-weight: 600; word-break: break-all; min-width: 0; }
.quote__line > div { min-width: 0; flex: 1; }
.quote__placeholder-note { margin-top: 14px; font-size: .82rem; color: #ffb4ba; font-style: italic; }

.quote__form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-2);
  position: relative;
}
.progress { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress__fill { height: 100%; background: var(--red); transition: width .35s ease; }
.progress__label { font-size: .78rem; color: var(--muted); margin: 8px 0 24px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

.step { border: none; padding: 0; margin: 0; display: none; }
.step.is-active { display: block; animation: fade .25s ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step legend {
  font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); font-weight: 600;
  padding: 0; margin-bottom: 18px; line-height: 1.2;
}

.choices { display: grid; gap: 10px; }
.choices--grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .choices--grid { grid-template-columns: 1fr; } }
.choices label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  font-size: .98rem;
  font-weight: 500;
}
.choices label:hover { border-color: var(--navy); }
.choices input { accent-color: var(--red); width: 18px; height: 18px; flex: 0 0 18px; }
.choices label:has(input:checked) { border-color: var(--red); background: #fff4f5; }

.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.field em { font-weight: 400; color: var(--muted); font-style: normal; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field--check { display: flex; align-items: center; gap: 10px; }
.field--check input { accent-color: var(--red); width: 18px; height: 18px; }
.field--check span { margin: 0; font-weight: 500; }

.form-actions { display: flex; gap: 10px; margin-top: 24px; justify-content: space-between; }
.form-actions .btn--ghost { background: transparent; color: var(--muted); border-color: var(--line-strong); }
.form-actions .btn--ghost:hover { color: var(--navy); border-color: var(--navy); background: transparent; }
.form-actions .btn--ghost:disabled { opacity: .4; cursor: not-allowed; }

.step--done { display: none; }
.step--done.is-active { display: block; }
.done { text-align: center; padding: 12px 0 4px; }
.done__icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: #ecfdf5; color: #059669;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.done h3 { font-size: 1.6rem; margin-bottom: 8px; }
.done p { color: var(--muted); margin-bottom: 22px; }
.done__ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.done__note { margin-top: 22px; font-size: .82rem; color: var(--muted); font-style: italic; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: #fff; padding: 64px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.footer__brand span { font-size: .85rem; opacity: .7; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; font-weight: 700; }
.footer__cols a, .footer__cols span { display: block; color: rgba(255,255,255,.78); font-size: .94rem; padding: 3px 0; }
.footer__cols a:hover { color: var(--red); }
.footer__legal {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .82rem; opacity: .55;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

/* ---- Mobile sticky bar ---- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(15,27,45,.08);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
}
.mobile-bar__btn--call { background: var(--red); color: #fff; }
.mobile-bar__btn--text { background: var(--navy); color: #fff; }
.mobile-bar__btn--quote { background: var(--cream); color: var(--navy); border: 1px solid var(--line-strong); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}
