/* ==========================================================================
   O'Leary Holiday Lighting — site stylesheet
   Design system carried over from the Claude Design prototype.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --red: #C8102E;
  --red-deep: #8E0B20;
  --red-band: #E95259;   /* full-bleed red section band */
  --white: #FFFFFF;
  --warm: #FAF7F4;
  --ink: #1A1A1A;
  --ink-60: #4A4A4A;
  --night: #0E1420;
  --border: #EAE6E1;
  --glow: #F5C563;

  --font-display: Bitter, Georgia, "Times New Roman", serif;
  --font-body: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1248px;   /* 1248 - 2x24 padding = the prototype's 1200px content */
  --header-h: 88px;
  --section-y: 96px;
  --radius-card: 12px;
  --radius-tile: 16px;
  --shadow-tile: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-tile-strong: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }

body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
}

p { margin: 0; }

/* The UA gives blockquote a 40px side margin and dl/figure their own — zero
   them so cards built on semantic elements line up with the grid. */
blockquote,
figure,
dl,
dd { margin: 0; }

ul { margin: 0; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 888px; }  /* 840px of content */

.section { padding: var(--section-y) 0; }
.section--tight { padding: 72px 0; }
.section--tall { padding: 126px 0; }

.section--white { background: var(--white); }
.section--warm { background: var(--warm); }
.section--red { background: var(--red-band); color: var(--white); }
.section--night { background: var(--night); color: var(--white); }

/* Section with a photo behind a wash */
.section--photo { position: relative; overflow: hidden; }
.section--photo > .section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.section--photo > .section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 244, 0.88);
}
.section--photo > .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */
.h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 28px;
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head--left { text-align: left; }

.h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--red);
  margin: 0 0 12px;
}
.section--red .h2,
.section--night .h2 { color: var(--white); }

.h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.section--red .h3,
.section--night .h3 { color: var(--white); }

/* The subhead under a section heading is bold site-wide (client request). */
.subhead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  font-weight: 700;
  color: var(--ink-60);
  max-width: 640px;
  margin: 0 auto;
}
.section-head--left .subhead { margin-left: 0; }
.section--red .subhead,
.section--night .subhead { color: var(--white); opacity: 0.85; }

/* A card is its own surface: the light-on-dark overrides above stop at its
   edge, otherwise white text lands on a white card. */
.section--red .card .h2,
.section--night .card .h2 { color: var(--red); }
.section--red .card .h3,
.section--night .card .h3,
.section--red .card .checklist li,
.section--night .card .checklist li { color: var(--ink); }
.section--red .card .subhead,
.section--night .card .subhead,
.section--red .card .intro-copy,
.section--night .card .intro-copy,
.section--red .card .note,
.section--night .card .note { color: var(--ink-60); opacity: 1; }

.lede { font-size: 18px; line-height: 1.6; color: var(--ink-60); }
.body { font-size: 17px; line-height: 1.6; color: var(--ink-60); }
.small { font-size: 14px; color: var(--ink-60); }
.note {
  font-size: 15px;
  color: var(--ink-60);
  text-align: center;
  margin-top: 20px;
}
.section--red .note,
.section--night .note { color: var(--white); opacity: 0.8; }

.prose p { margin: 0 0 16px; font-size: 17px; line-height: 1.6; color: var(--ink-60); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }
.prose ul { margin: 0 0 16px; padding-left: 22px; font-size: 17px; line-height: 1.8; color: var(--ink-60); }
.prose h2 {
  font-size: 26px;
  color: var(--red);
  margin: 40px 0 16px;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn--sm { font-size: 16px; padding: 0 32px; }

.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-deep); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline:hover { background: rgba(200, 16, 46, 0.08); color: var(--red); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.15); color: var(--white); }

.btn--white { background: var(--white); color: var(--red); }
.btn--white:hover { background: var(--warm); color: var(--red); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-row--center { justify-content: center; }
.btn-row--cta { gap: 24px; justify-content: center; }
.btn-row--spaced { margin-top: 40px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header__bar {
  display: flex;
  align-items: stretch;
  gap: 40px;
  height: var(--header-h);
  padding: 0 60px;
}

.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.site-header__logo img {
  height: 81px;
  width: 123px;
  object-fit: contain;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 20px;
  font-weight: 600;
}

.nav__link {
  position: relative;
  color: var(--ink);
  padding-bottom: 8px;
}
.nav__link:hover { color: var(--red); }

/* Active page: red + 2px underline. Hover never adds an underline, so the
   current page stays identifiable. */
.nav__link.is-active { color: var(--red); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.nav__item { position: relative; display: flex; align-items: center; height: 100%; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown,
.dropdown.is-open { opacity: 1; visibility: visible; }

.dropdown a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 17px;
  color: var(--ink);
}
.dropdown a:hover { color: var(--red); background: var(--warm); }
.dropdown a.is-active { color: var(--red); background: var(--warm); }

.dropdown__divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header__phone {
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}
.site-header__phone:hover { color: var(--red); }
.site-header__quote {
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 15px;
}
.site-header__quote:hover { background: var(--red-deep); color: var(--white); }

.nav-burger {
  display: none;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  padding: 12px 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  border-left: 3px solid transparent;
}
.mobile-menu a.is-sub { padding-left: 26px; font-size: 16px; }
.mobile-menu a.is-active {
  color: var(--red);
  border-left-color: var(--red);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 72px 0;
  overflow: hidden;
  background: var(--night);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 32, 0.55);
}
.hero > .container { position: relative; z-index: 2; }

.hero__copy { max-width: 760px; }
.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--white);
  opacity: 0.92;
  margin: 0 0 32px;
  max-width: 600px;
}

/* Homepage hero: taller, with the quote card floated right */
.hero--home { min-height: 640px; }
.hero--home .hero__copy { max-width: 620px; }
.hero--home .hero__sub { text-shadow: 0 0 14px rgba(255, 255, 255, 0.5); }
.hero--home > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}
.hero__trust li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.5;
}
.hero__trust svg { flex-shrink: 0; margin-top: 4px; }
.hero__call {
  color: var(--white);
  font-size: 17px;
  margin: 0 0 8px;
}
.hero__call a { color: var(--white); text-decoration: underline; }

/* Google rating pill */
.google-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.google-pill:hover { background: var(--warm); }
.google-wordmark { font-weight: 700; font-size: 16px; }
.google-pill__score { font-weight: 700; font-size: 16px; color: var(--ink); }
.google-pill__stars { color: #FBBC05; font-size: 15px; letter-spacing: 1px; }
.google-pill__rule { width: 1px; height: 16px; background: var(--border); }
.google-pill__count { font-size: 14px; color: var(--ink-60); }

/* --------------------------------------------------------------------------
   8. Quote form card
   -------------------------------------------------------------------------- */
.quote-card {
  flex: 0 0 452px;
  width: 452px;
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--ink);
}
.quote-card__title { font-size: 25px; line-height: 1.1; margin: 0 0 6px; }
.quote-card__note { font-size: 16px; color: var(--ink-60); margin: 0 0 20px; }

.form { display: flex; flex-direction: column; gap: 12px; }

.field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field .req { color: var(--red); }

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
}
.input:focus,
.select:focus,
.textarea:focus { border-color: var(--red); outline: none; }
.textarea { min-height: 110px; resize: vertical; }

.fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.fieldset legend {
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 20px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--red); }

.form__footnote {
  font-size: 14px;
  color: var(--ink-60);
  text-align: center;
  margin: 12px 0 0;
}

.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-tile);
}

/* --------------------------------------------------------------------------
   9. Trust bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--red);
  padding: 22px 24px;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.trust-bar__rule { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.4); }

/* --------------------------------------------------------------------------
   10. Cards, tiles, photo placeholders
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  color: var(--ink);
}
.card--center { text-align: center; }
.card--pad-lg { padding: 56px 60px; }
.card--shadow { box-shadow: var(--shadow-tile); border: none; border-radius: var(--radius-tile); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--gap-lg { gap: 48px; }
.grid--split { grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid--stretch { align-items: stretch; }
.grid--split-photo { grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; }

/* Media tile — a photo (or a "photos coming soon" block) with an optional
   red badge straddling its bottom edge. */
.tile {
  position: relative;
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-tile-strong);
  min-height: 420px;
}
.tile--tall { min-height: 600px; }
.tile__media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-tile);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile__media--top { background-position: top center; }
.tile__placeholder {
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  text-align: center;
  max-width: 340px;
  padding: 0 16px;
}
.badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Sections that end with a badged tile need clearance for the overhang. */
.has-badge { padding-bottom: calc(var(--section-y) + 18px); }

/* --------------------------------------------------------------------------
   11. Homepage service cards
   -------------------------------------------------------------------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px 24px;
}
.service-card {
  position: relative;
  width: 352px;
  height: 420px;
}
.service-card__media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-tile);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  background-size: cover;
  background-position: center;
}
.service-card__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  background: rgba(14, 20, 32, 0.75);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  transition: opacity 0.25s;
}
.service-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}
.service-card__panel p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}
.service-card__link {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.35);
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.service-card__link:hover { background: var(--red-deep); color: var(--white); }

/* Hovering a card fades its text so the photo reads clearly. */
@media (hover: hover) {
  .service-card:hover .service-card__panel,
  .service-card:hover .service-card__link { opacity: 0; pointer-events: none; }
}

/* --------------------------------------------------------------------------
   12. "One price covers the season" step flow
   -------------------------------------------------------------------------- */
.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 56px 0 40px;
}
.flow__step { text-align: center; width: 200px; }
.flow__arrow { color: var(--red); font-size: 23px; margin-top: 24px; }
.flow__label { font-weight: 600; font-size: 17px; color: var(--ink); }

/* Ornament-shaped icon holder: cap, hanging loop, ring. */
.ornament {
  width: 56px;
  height: 64px;
  position: relative;
  margin: 0 auto 16px;
}
.ornament__loop {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.ornament__cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
}
.ornament__ring {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ornament__ring img { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   13. Numbered step cards
   -------------------------------------------------------------------------- */
.step-card { text-align: center; padding: 32px 24px; }
.step-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--red);
  margin: 0 0 16px;
}
.step-card h3 { font-size: 23px; line-height: 1.1; margin: 0 0 10px; }
.step-card p { font-size: 17px; color: var(--ink-60); line-height: 1.6; margin: 0; }

/* --------------------------------------------------------------------------
   14. Checklists
   -------------------------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0 0 32px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.checklist li:last-child { margin-bottom: 0; }
.checklist svg { flex-shrink: 0; margin-top: 5px; }
.section--red .checklist li { color: var(--white); }

.callout {
  background: var(--warm);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.callout p { font-size: 18px; line-height: 1.6; color: var(--ink-60); margin: 0; }

/* Bordered item boxes (Request a Quote "what's included") */
.box-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.box svg { flex-shrink: 0; margin-top: 3px; }

/* --------------------------------------------------------------------------
   15. City pill grid ("Where we install")
   -------------------------------------------------------------------------- */
.cities {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cities__col { display: flex; flex-direction: column; gap: 16px; }
.cities__photo {
  position: relative;
  width: 280px;
  height: 420px;
}

.city-pill {
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.city-pill:hover { border-color: var(--red); color: var(--red); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

/* --------------------------------------------------------------------------
   16. Reviews
   -------------------------------------------------------------------------- */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.reviews-head .h2 { flex: 1 1 420px; }
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.rating__score { color: var(--ink); font-size: 19px; font-weight: 700; }
.rating__stars { color: var(--red); font-size: 21px; }
.rating__count { color: var(--ink-60); font-size: 16px; }
.rating a { font-size: 16px; font-weight: 600; }

.review-card { padding: 28px; }
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.review-card__stars { color: var(--red); font-size: 21px; }
.review-card p { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; }
.review-card__name { font-size: 16px; font-weight: 600; color: var(--ink-60); }

/* --------------------------------------------------------------------------
   17. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-group { max-width: 820px; margin: 0 auto 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title { margin: 0 0 24px; }

/* Rows divided by a hairline, matching the prototype. */
.accordion { max-width: 820px; }
.accordion__item { border-bottom: 1px solid var(--border); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.accordion__trigger:hover,
.accordion__trigger[aria-expanded="true"] { color: var(--red); }

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--red);
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.accordion__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.accordion__icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
  transition: transform 0.2s;
}
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }

.accordion__panel { padding: 0 0 22px; }
.accordion__panel[hidden] { display: none; }
.accordion__panel p { font-size: 17px; line-height: 1.6; color: var(--ink-60); margin: 0; }

/* --------------------------------------------------------------------------
   18. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.phone-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.1;
  color: var(--red);
  display: inline-block;
  margin-bottom: 8px;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { margin-bottom: 20px; }
.contact-list li:last-child { margin-bottom: 0; }
.contact-list dt {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-list dd { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink-60); }

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-tile);
  display: block;
}

/* --------------------------------------------------------------------------
   19. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
  background: var(--night);
  border-top: 4px solid var(--red);
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner__scrim { position: absolute; inset: 0; background: var(--night); opacity: 0.65; }
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin: 0 0 16px; }
.cta-banner__line {
  font-size: clamp(18px, 1.7vw, 21px);
  color: var(--white);
  opacity: 0.85;
  font-weight: 700;
  margin: 0 0 36px;
}
.cta-banner__foot {
  font-size: 16px;
  color: var(--white);
  opacity: 0.7;
  margin: 24px 0 0;
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer img { height: 110px; width: auto; object-fit: contain; }
.site-footer__blurb {
  color: var(--ink-60);
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 240px;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.site-footer__contact a { color: var(--ink); font-size: 16px; }
.site-footer__contact a:hover { color: var(--red); }

.social { display: flex; gap: 12px; margin-top: 20px; }
.social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.social a:hover { border-color: var(--red); color: var(--red); }
.social__fb { border-radius: 50%; font-size: 16px; font-weight: 700; }
.social__ig { border-radius: 6px; }
.social__ig span {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
  display: block;
}
.social__ig span span {
  width: 6px;
  height: 6px;
  background: currentColor;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.site-footer__col-title {
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { color: var(--ink-60); font-size: 16px; }
.site-footer__links a:hover { color: var(--red); }

.site-footer__bar {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-60);
  font-size: 15px;
}
.site-footer__bar a { color: var(--ink-60); }
.site-footer__bar a:hover { color: var(--red); }

/* --------------------------------------------------------------------------
   21. Decorative hero accents (homepage only)
   -------------------------------------------------------------------------- */
.light-strand {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 5;
  pointer-events: none;
}
.snow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.snow i {
  position: absolute;
  top: 0;
  background: var(--white);
  border-radius: 50%;
  animation: snowfall linear infinite;
}
@keyframes snowfall {
  0%   { transform: translateY(-10px); }
  100% { transform: translateY(700px); }
}
@keyframes twinkleGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
@keyframes wreathShake {
  0%, 100% { transform: rotate(0deg); }
  20%      { transform: rotate(-8deg); }
  40%      { transform: rotate(7deg); }
  60%      { transform: rotate(-5deg); }
  80%      { transform: rotate(4deg); }
}
.wreath-accent {
  width: 61px;
  height: 53px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 14px;
  animation: wreathShake 2.5s ease-in-out infinite;
}

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

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .site-header__bar { padding: 0 24px; gap: 24px; }
  .nav { gap: 22px; font-size: 18px; }
  .card--pad-lg { padding: 40px; }
  .cities { gap: 24px; }
  .cities__photo { width: 220px; }
}

@media (max-width: 1000px) {
  :root { --section-y: 72px; }

  .hero--home > .container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero--home .hero__copy { max-width: none; }
  .quote-card { flex: 1 1 auto; width: 100%; max-width: 560px; }
  .hero--home { min-height: 0; padding: 64px 0; }

  .grid--split,
  .grid--split-photo,
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3,
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tile--tall { min-height: 420px; }
}

/* Nav collapses to the hamburger */
@media (max-width: 900px) {
  .nav,
  .site-header__cta { display: none; }
  .nav-burger { display: flex; }
  .site-header__bar { justify-content: space-between; padding: 0 20px; }
  .site-header__logo img { height: 64px; width: 98px; }
  :root { --header-h: 72px; }
}

@media (max-width: 760px) {
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

  .cities { grid-template-columns: 1fr; }
  .cities__photo { width: 100%; max-width: 340px; margin: 0 auto; height: 360px; }

  .flow { flex-direction: column; align-items: center; gap: 8px; }
  .flow__arrow { transform: rotate(90deg); margin: 4px 0; }
  .flow__step { width: 100%; max-width: 320px; }

  .trust-bar__inner { gap: 16px 20px; }
  .trust-bar__rule { display: none; }
  .trust-bar__item { font-size: 15px; }

  .reviews-head { flex-direction: column; align-items: flex-start; }

  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero .btn-row { align-items: stretch; }

  .card,
  .review-card { padding: 24px; }
  .card--pad-lg { padding: 28px 24px; }
  .form-card { padding: 24px; }
  .quote-card { padding: 24px; }

  .accordion__trigger { font-size: 18px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__bar { flex-direction: column; }

  .tile { min-height: 300px; }
  .tile--tall { min-height: 340px; }

  .service-card { width: 100%; max-width: 352px; }

  .light-strand,
  .snow { display: none; }
  /* Decorative only, and it orphans onto its own line once the H1 wraps. */
  .wreath-accent { display: none; }

  .map-embed { height: 320px; }
}

@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}

/* --------------------------------------------------------------------------
   23. Service-page building blocks
   -------------------------------------------------------------------------- */
.hero--center { text-align: center; }
.hero--center .hero__copy { max-width: 900px; margin: 0 auto; }
.hero--center .hero__sub {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}
.hero--center .btn-row { justify-content: center; }

.eyebrow {
  display: inline-block;
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Alternating copy / photo rows on the service pages */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.split--photo-first { grid-template-columns: 0.9fr 1.1fr; }
.split__copy { max-width: 560px; }
.split__copy p { font-size: 19px; line-height: 1.7; color: var(--ink-60); margin: 0 0 20px; }
.split__copy p:last-child { margin-bottom: 0; }
.split__copy .best-for { font-size: 17px; line-height: 1.6; color: var(--ink); }
.split__copy .best-for strong { color: var(--ink); }
.split__copy .eyebrow { color: var(--red); }
.price-line,
.split__copy .price-line { font-size: 19px; line-height: 1.6; color: var(--red); font-weight: 700; }

.section--split { padding: 130px 0; }

/* Centred "what's included" card on a red band */
.included-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.included-card .checklist li { margin-bottom: 18px; }
.included-card__total {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin: 28px 0 0;
}

.intro-lede {
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 820px;
  margin: 0 auto;
  font-weight: 700;
}
.section--red .intro-lede { color: var(--white); }

@media (max-width: 1000px) {
  .section--split { padding: 84px 0; }
  .split,
  .split--photo-first { grid-template-columns: 1fr; }
  /* Keep the photo above the copy when the design put it first. */
  .split--photo-first .split__copy { order: 2; }
  .split__copy { max-width: none; }
}

@media (max-width: 760px) {
  .section--split { padding: 64px 0; }
}

/* --------------------------------------------------------------------------
   24. Q&A cards (service pages) + plain intro copy
   -------------------------------------------------------------------------- */
.intro-copy {
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 760px;
  margin: 0 auto;
}
.section--red .intro-copy,
.section--night .intro-copy { color: var(--white); }

.qa-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qa {
  background: var(--warm);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}
.section--warm .qa,
.section--red .qa { background: var(--white); }
.qa__q {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.qa__a { font-size: 17px; line-height: 1.6; color: var(--ink-60); margin: 0; }

@media (max-width: 760px) {
  .qa { padding: 22px 20px; }
}

/* --------------------------------------------------------------------------
   25. Request a Quote hero trust lines (wrap inline on wide screens)
   -------------------------------------------------------------------------- */
.hero__trust--inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  max-width: 800px;
  margin: 0 auto 16px;
  list-style: none;
  padding: 0;
}
.hero__trust--inline li { align-items: center; font-size: 16px; }
.hero__trust--inline svg { margin-top: 0; }
