:root {
  --cream: #F7F1E5;
  --cream-deep: #EFE6D3;
  --paper-line: #E2D6BE;
  --navy: #1D3E7B;
  --navy-deep: #14294F;
  --ink: #22335C;
  --ink-soft: #4A5878;
  --red: #E14028;
  --red-deep: #C33119;
  --amber: #F0A519;
  --gold: #FFB25E;
  --white: #FFFDF8;
  --shadow: 0 2px 0 rgba(29, 62, 123, 0.18);
  --shadow-lift: 0 10px 28px -12px rgba(29, 62, 123, 0.35);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Libre Franklin", "Franklin Gothic Medium", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }

.stripe {
  height: 6px;
  background: var(--red);
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- header + nav ---------- */
header {
  background: var(--cream);
  border-bottom: 2px solid var(--navy);
  position: relative;
  z-index: 40;
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 16px 0; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 76px; height: auto; }
.brand-name {
  font-family: Anton, "Arial Narrow", sans-serif;
  font-size: 1.6rem; letter-spacing: 0.04em; line-height: 1.05;
  text-transform: uppercase; color: var(--navy);
}
.brand-name span { color: var(--red); }
.brand-sub {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
}
.nav {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav > a, .dd > summary {
  font-weight: 700; font-size: 0.92rem; color: var(--navy);
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
  cursor: pointer; list-style: none; display: inline-block;
}
.nav > a:hover, .dd > summary:hover { background: var(--cream-deep); }
.nav > a.active { color: var(--red); }
.dd { position: relative; }
.dd > summary::-webkit-details-marker { display: none; }
.dd > summary::after { content: " ▾"; font-size: 0.8em; color: var(--red); }
.dd-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 190px;
  background: var(--white); border: 2px solid var(--navy); border-radius: 8px;
  box-shadow: var(--shadow-lift); padding: 6px; z-index: 60;
}
.dd-menu a {
  display: block; padding: 9px 14px; text-decoration: none;
  font-weight: 600; font-size: 0.92rem; color: var(--ink); border-radius: 5px;
}
.dd-menu a:hover { background: var(--cream); color: var(--red); }
.nav-quote {
  border: 2px solid var(--red); color: var(--red) !important;
  border-radius: 6px; padding: 7px 14px !important; margin-left: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-quote:hover { background: var(--red); color: var(--white) !important; }
.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: var(--white);
  font-weight: 800; font-size: 0.98rem; letter-spacing: 0.02em;
  padding: 11px 18px; border-radius: 6px; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.header-call:hover { background: var(--red-deep); transform: translateY(-1px); }
.header-call svg { flex: none; }

/* ---------- hero (Golden Hour) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: url("photos/mmxboIeoryQ.jpg") center 38% / cover no-repeat;
  background-color: var(--navy-deep);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,41,79,0.9) 0%, rgba(20,41,79,0.66) 46%, rgba(20,41,79,0.18) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 76px; padding-bottom: 72px; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; align-items: center;
}
.kicker {
  display: inline-block;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  border: 2px solid var(--gold); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 22px;
}
h1 {
  font-family: Anton, "Arial Narrow", sans-serif;
  font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.5rem, 5.8vw, 4.2rem);
  line-height: 1.02; letter-spacing: 0.015em;
  color: var(--white);
}
h1 em { font-style: normal; color: var(--gold); }
.hero p.lede {
  margin: 22px 0 30px; font-size: 1.12rem; color: rgba(255,253,248,0.88);
  max-width: 33em;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.06rem; text-decoration: none;
  padding: 15px 27px; border-radius: 6px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-lift); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.review-line {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; text-decoration: none;
  font-weight: 600; color: var(--white);
}
.stars { color: var(--amber); letter-spacing: 0.12em; font-size: 1.05rem; }
.review-line u { text-decoration-color: var(--gold); text-underline-offset: 3px; }
.hero-badge { position: relative; text-align: center; }
.brand-plate {
  background: var(--white);
  border-radius: 14px;
  border-bottom: 6px solid var(--red);
  padding: 20px 22px 14px;
  width: min(390px, 94%);
  margin: 0 auto;
  box-shadow: 0 28px 55px -18px rgba(0,0,0,0.55);
  animation: settle 0.9s ease both 0.15s;
}
.brand-plate img { width: 100%; }
@keyframes settle {
  from { opacity: 0; transform: translateY(14px) rotate(-2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.photo-credit {
  position: absolute; right: 10px; bottom: 8px; z-index: 2;
  font-size: 0.62rem; color: rgba(255,253,248,0.55); text-decoration: none;
}

/* ---------- page hero (area pages) ---------- */
.page-hero {
  background: var(--navy-deep);
  border-bottom: 6px solid var(--red);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("photos/PJBC7tazxxI.jpg") center 30% / cover no-repeat;
  opacity: 0.22;
}
.page-hero .wrap { position: relative; z-index: 2; padding-top: 58px; padding-bottom: 54px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.page-hero p.lede { margin: 16px 0 26px; font-size: 1.08rem; color: rgba(255,253,248,0.88); max-width: 36em; }

/* ---------- trust strip ---------- */
.trust { background: var(--navy); color: var(--cream); }
.trust-in {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 38px; padding: 16px 0;
  font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.trust-in span::before { content: "★"; color: var(--red); margin-right: 9px; }

/* ---------- sections ---------- */
.services { padding: 70px 0 76px; }
.sec-head { text-align: center; margin-bottom: 44px; }
h2 {
  font-family: Anton, "Arial Narrow", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--navy);
}
.sec-head p { color: var(--ink-soft); margin-top: 10px; }
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.chip {
  background: var(--white); border: 1px solid var(--paper-line);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 10px 24px -14px rgba(29,62,123,0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.chip:nth-child(1) { transform: rotate(-1.6deg) translateY(5px); }
.chip:nth-child(2) { transform: rotate(1deg); }
.chip:nth-child(3) { transform: rotate(-1deg); }
.chip:nth-child(4) { transform: rotate(1.8deg) translateY(5px); }
.chip:hover { transform: rotate(0deg) translateY(-6px); box-shadow: var(--shadow-lift); }
.chip-color {
  height: 128px; position: relative;
  display: flex; align-items: flex-end; padding: 14px 16px;
}
.chip-color::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.26), rgba(255,255,255,0) 45%);
  pointer-events: none;
}
.chip-color h3 {
  font-family: Anton, "Arial Narrow", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.3rem; line-height: 1.15; color: var(--white);
  position: relative; z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.22);
}
.chip-color.light h3 { color: var(--navy); text-shadow: none; }
.chip-code {
  position: absolute; top: 10px; left: 16px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em;
  color: rgba(255,253,248,0.92); text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.chip-code.dark { color: rgba(34,51,92,0.65); text-shadow: none; }
.chip-body { padding: 16px 18px 20px; }
.chip-body p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

.process { background: var(--white); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); padding: 64px 0 70px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.step { text-align: center; padding: 0 10px; }
.step-num {
  font-family: Anton, "Arial Narrow", sans-serif; font-size: 1.5rem;
  color: var(--white); background: var(--red);
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 4px 4px 0 rgba(29,62,123,0.2);
}
.step h3 {
  font-family: Anton, "Arial Narrow", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 8px;
}
.step p { font-size: 0.95rem; color: var(--ink-soft); }

.about { background: var(--cream-deep); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.about-in {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 66px 0; align-items: center;
}
.about h2 { margin-bottom: 16px; }
.about p { color: var(--ink-soft); margin-bottom: 14px; }
.about p strong { color: var(--ink); }
.review-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: 10px;
  padding: 34px 30px; text-align: center;
  box-shadow: 8px 8px 0 rgba(29,62,123,0.14);
}
.review-card .big-stars { font-size: 1.9rem; color: var(--amber); letter-spacing: 0.14em; }
.review-card .score {
  font-family: Anton, "Arial Narrow", sans-serif;
  font-size: 3.4rem; color: var(--navy); line-height: 1.1;
}
.review-card .count { color: var(--ink-soft); font-weight: 600; margin-bottom: 18px; }
.review-card a.btn-outline {
  display: inline-flex; font-weight: 800; font-size: 0.98rem; text-decoration: none;
  padding: 12px 22px; border-radius: 6px; border: 2px solid var(--navy); color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.review-card a.btn-outline:hover { background: var(--navy); color: var(--white); }

.faq { padding: 66px 0 72px; }
.faq-list { max-width: 760px; margin: 36px auto 0; }
.faq details {
  background: var(--white); border: 1px solid var(--paper-line);
  border-radius: 8px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 18px 52px 18px 20px; font-weight: 700; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: Anton, sans-serif; font-size: 1.3rem; color: var(--red);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- area pages ---------- */
.area-body { padding: 60px 0 10px; }
.area-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.area-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.area-body p { color: var(--ink-soft); margin-bottom: 14px; }
.area-body p strong { color: var(--ink); }
.area-side {
  background: var(--white); border: 1px solid var(--paper-line); border-radius: 10px;
  padding: 26px 26px 30px; box-shadow: 0 1px 0 rgba(29,62,123,0.08);
}
.area-side h3 {
  font-family: Anton, "Arial Narrow", sans-serif; font-weight: 400;
  text-transform: uppercase; font-size: 1.15rem; color: var(--navy); margin-bottom: 12px;
}
.area-side ul { list-style: none; }
.area-side li {
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid var(--cream-deep); font-size: 0.96rem; color: var(--ink-soft);
}
.area-side li:last-child { border-bottom: none; }
.area-side li::before {
  content: "★"; position: absolute; left: 0; color: var(--red); font-size: 0.85rem; top: 10px;
}
.other-towns { margin-top: 18px; font-size: 0.9rem; color: var(--ink-soft); }
.other-towns a { font-weight: 600; }

.cta-band { padding: 64px 0 70px; text-align: center; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band .sub { color: var(--ink-soft); margin-bottom: 28px; }

/* ---------- quote form section ---------- */
.quote { padding: 68px 0 76px; background: var(--cream-deep); border-top: 1px solid var(--paper-line); }
.quote-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 52px; align-items: start; margin-top: 40px;
}
.quote-form {
  background: var(--white); border: 1px solid var(--paper-line); border-radius: 12px;
  padding: 30px 28px 26px; box-shadow: 0 12px 30px -18px rgba(29,62,123,0.4);
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 2px solid var(--paper-line); border-radius: 6px;
  background: var(--cream); color: var(--ink);
  font-family: inherit; font-size: 1rem;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--white);
}
.field textarea { min-height: 96px; resize: vertical; }
.quote-form .btn-primary { width: 100%; justify-content: center; font-size: 1.12rem; padding: 16px; }
.form-note { font-size: 0.86rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.quote-side { text-align: center; }
.quote-side .brand-plate {
  animation: none; box-shadow: 0 14px 34px -16px rgba(29,62,123,0.4);
  margin-bottom: 26px;
}
.quote-side .or { font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.quote .btn-secondary { border-color: var(--navy); color: var(--navy); }
.quote .btn-secondary:hover { background: var(--navy); color: var(--white); }
.phone-big {
  display: inline-block; text-decoration: none;
  font-family: Anton, "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  color: var(--red); letter-spacing: 0.03em;
  border-bottom: 4px solid var(--navy);
  padding-bottom: 4px; margin-bottom: 24px;
}
.phone-big:hover { color: var(--red-deep); }
.contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.cta-band .btn-secondary { border-color: var(--navy); color: var(--navy); }
.cta-band .btn-secondary:hover { background: var(--navy); color: var(--white); }
.contact-meta { margin-top: 32px; color: var(--ink-soft); font-size: 0.95rem; }
.contact-meta a { color: var(--navy); font-weight: 600; }

/* ---------- footer ---------- */
footer { background: var(--navy); color: rgba(247,241,229,0.85); }
.footer-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding: 26px 0; font-size: 0.85rem;
}
footer a { color: var(--cream); }
.footer-towns { width: 100%; font-size: 0.8rem; color: rgba(247,241,229,0.6); }
.footer-towns a { color: rgba(247,241,229,0.75); text-decoration: none; margin-right: 14px; }
.footer-towns a:hover { color: var(--white); text-decoration: underline; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--navy); padding: 10px 12px;
  box-shadow: 0 -6px 18px rgba(29,62,123,0.3);
}
.callbar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  padding: 13px 10px; border-radius: 6px;
}
.callbar .cb-call { background: var(--red); color: var(--white); }
.callbar .cb-text { background: var(--white); color: var(--navy); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav { order: 3; width: 100%; justify-content: center; border-top: 1px solid var(--paper-line); padding-top: 10px; margin-top: 4px; }
  .brand img { width: 58px; }
  .brand-name { font-size: 1.35rem; }
  .header-call span.hide-sm { display: none; }
  .header-in { padding: 12px 0; }
}
@media (max-width: 900px) {
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .about-in, .area-cols, .quote-grid { grid-template-columns: 1fr; }
  .quote-grid { gap: 36px; }
  .hero .wrap { padding-top: 48px; padding-bottom: 46px; }
  .hero-badge { order: -1; }
  .brand-plate { width: min(270px, 74%); padding: 12px 14px 9px; border-bottom-width: 4px; }
  .chip:nth-child(n) { transform: none; }
}
@media (max-width: 640px) {
  .callbar { display: flex; gap: 10px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 520px) {
  .chip-grid { grid-template-columns: 1fr; }
  .header-call span.hide-sm { display: none; }
  .header-call { padding: 11px 14px; }
  .step-grid { grid-template-columns: 1fr; gap: 30px; }
}
