/* Momentum Construction + Design — BND competitive mockup, v2 "editorial light"
   Direction: premium remodeling references from the 2026-07-01 gallery
   (TRG Design Remodel, Charleene's Houses, Stately Design): full-bleed
   photography with gentle scrims, editorial serif headlines, script tagline
   accent, single quiet CTA pair, awards strip below the hero, lead form in
   its own section. Palette stays sampled from the real logo + mascot. */

:root {
  --red: #e91c34;
  --red-dark: #c71c2f;
  --ink: #191b20;
  --ink-2: #24262c;
  --ink-3: #43464e;
  --silver: #a7a9ac;
  --cream: #faf8f4;
  --stone: #f3f0ea;
  --paper: #ffffff;
  --line: #e7e3db;
  --text: #3b3e45;
  --gutter: clamp(20px, 4vw, 32px);
  --radius: 12px;
  --shadow-card: 0 12px 34px rgba(25, 27, 32, .10);
  --font-display: "Fraunces", Georgia, serif;
  --font-script: "Caveat", cursive;
  --font-body: "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 560;
  letter-spacing: -.01em;
}

/* Eyebrow: small-caps letterspaced red + thin rule (replaces v1 skew pill) */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--red); flex: none; }
.script { font-family: var(--font-script); font-weight: 600; color: var(--red); }

.section { padding: 96px 0; }
.section--stone { background: var(--stone); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.section-head p { font-size: 17.5px; color: var(--ink-3); }

/* Buttons: sentence case, quiet confidence */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 16px 30px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(233, 28, 52, .28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(233,28,52,.34); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(25,27,32,.25); }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ===== Utility bar ===== */
.utility {
  background: var(--ink);
  color: #cfd1d4;
  font-size: 13px;
  letter-spacing: .02em;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}
.utility a { color: #fff; font-weight: 600; }
.utility .u-award { color: #fff; font-weight: 600; }
.utility .u-award .star { color: #f7b32b; }
.utility .u-short { display: none; }

/* ===== Header ===== */
.header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav > li { list-style: none; position: relative; }
.nav a {
  display: block;
  padding: 10px 13px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
}
.nav a:hover { color: var(--red); }
.nav .caret { font-size: 9px; color: var(--silver); margin-left: 3px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  box-shadow: var(--shadow-card);
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 70;
}
.nav > li:hover .dropdown, .nav > li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { font-weight: 500; padding: 10px 18px; font-size: 15px; }
.dropdown a:hover { background: var(--cream); color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10.5px; color: var(--silver); text-transform: uppercase; letter-spacing: .12em; }
.header .btn { padding: 12px 22px; font-size: 14.5px; }
.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 90;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px; background: var(--ink);
  margin: 5.5px auto; border-radius: 2px; transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Mobile drawer ===== */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--paper);
  transform: translateX(103%);
  visibility: hidden;
  transition: transform .3s ease, visibility 0s linear .3s;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); visibility: visible; transition: transform .3s ease; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.drawer-head img { height: 36px; width: auto; }
.drawer-close {
  background: var(--stone); border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  font-size: 22px; line-height: 1; color: var(--ink);
}
.drawer-close:hover { background: var(--line); }
.drawer-nav { padding: 8px 0; flex: 1; }
.drawer-nav .d-item { border-bottom: 1px solid var(--line); }
.drawer-nav a, .drawer-nav .d-toggle {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 17px var(--gutter);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 19px;
  color: var(--ink);
  background: none; border: 0; cursor: pointer; text-align: left;
}
.d-sub { display: none; background: var(--cream); }
.d-item.open .d-sub { display: block; }
.d-sub a { font-family: var(--font-body); font-weight: 500; font-size: 15.5px; padding: 13px calc(var(--gutter) + 14px); }
.d-toggle .caret { transition: transform .2s; color: var(--silver); font-size: 12px; }
.d-item.open .d-toggle .caret { transform: rotate(180deg); }
.drawer-foot { background: var(--ink); padding: 22px var(--gutter) 30px; }
.drawer-foot .btn { display: block; width: 100%; margin-bottom: 14px; }
.drawer-call {
  display: block; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff;
  margin-bottom: 10px;
}
.drawer-foot p { color: var(--silver); font-size: 13px; text-align: center; }
.scrim {
  position: fixed; inset: 0; background: rgba(25,27,32,.55); z-index: 75;
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.scrim.show { opacity: 1; visibility: visible; }
body.locked { overflow: hidden; }

/* ===== Hero: magazine cover on cream — type interlocks with photo panel ===== */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  /* faint oversized brand word running behind the composition */
  content: "MOMENTUM";
  position: absolute;
  top: 34px; left: -1%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(120px, 17vw, 250px);
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25,27,32,.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
}
.hero-copy { position: relative; min-width: 0; }
.hero .tagline {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--red);
  display: inline-block;
  margin-bottom: 10px;
  transform: rotate(-2deg);
}
.hero h1 {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .hero-headline {
  font-family: var(--font-display);
  font-weight: 480;
  color: var(--ink);
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -.022em;
  margin-bottom: 22px;
}
.hero .hero-headline em {
  font-style: italic;
  color: var(--red);
  font-weight: 560;
}
.hero-sub { font-size: 18px; color: var(--ink-3); max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.hero .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); backdrop-filter: none; }
.hero .btn-ghost:hover { background: var(--ink); color: #fff; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-3);
}
.hero-rating .stars { color: #f7b32b; letter-spacing: 2px; font-size: 13px; }

/* Photo composition: tall panel + overlapping detail card + floating award chip */
.hero-visual { position: relative; min-width: 0; padding-bottom: 64px; padding-left: 6px; }
.hero-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: 0 30px 70px rgba(25,27,32,.22);
}
.hero-panel img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.07) translateY(-1.5%); }
}
.hero-chip {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(25,27,32,.86);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  backdrop-filter: blur(3px);
}
.hero-chip small { display: block; font-weight: 500; letter-spacing: .02em; text-transform: none; color: #cfd1d4; font-size: 11.5px; }
.hero-detail {
  position: absolute;
  left: -34px; bottom: 0;
  width: min(46%, 240px);
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 18px 44px rgba(25,27,32,.28);
}
.hero-detail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-detail figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(25,27,32,.78));
  color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 18px 12px 8px;
}
/* momentum line: script -> arrow toward the work */
.hero-line {
  position: absolute;
  top: 96px; right: -8px;
  width: 120px; height: 40px;
  color: var(--red);
  display: block;
}

/* ===== Marquee band: literal momentum ===== */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 17px 0;
  border-bottom: 3px solid var(--red);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  letter-spacing: .04em;
  white-space: nowrap;
  padding-right: 18px;
}
.marquee .sep { color: var(--red); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-panel img { animation: none; }
}

/* ===== Awards strip (Charleene's pattern) ===== */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar .container {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 8px 42px;
  padding-top: 22px; padding-bottom: 22px;
}
.tb-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.tb-item .tb-ico { color: var(--red); font-size: 17px; flex: none; }
.tb-item small { display: block; font-weight: 500; color: var(--ink-3); font-size: 12px; }

/* ===== Services ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(25,27,32,.07);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.svc-card img { height: 190px; width: 100%; object-fit: cover; }
.svc-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 20px; margin-bottom: 8px; }
.svc-body p { font-size: 14.5px; color: var(--ink-3); flex: 1; }
.svc-link {
  margin-top: 14px;
  font-size: 14px; font-weight: 700;
  color: var(--red);
}
.svc-link::after { content: " \2192"; }

/* ===== Why us ===== */
.why .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.why-photo { position: relative; }
.why-photo img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.why-photo .why-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(25,27,32,.88); color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 19px;
}
.why h2 { font-size: clamp(28px, 3.2vw, 40px); }
.why-points { list-style: none; margin: 24px 0 28px; }
.why-points li { display: flex; gap: 15px; margin-bottom: 18px; }
.why-points .chk {
  flex: none; width: 24px; height: 24px;
  border: 1.5px solid var(--red); color: var(--red); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 900;
  margin-top: 3px;
}
.why-points strong { display: block; color: var(--ink); font-size: 16.5px; font-weight: 700; }
.why-points span { font-size: 15px; color: var(--ink-3); }
.platform-row { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 17px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.platform-chip .star { color: #f7b32b; }

/* ===== Stat band: quiet editorial ===== */
.stats { background: var(--stone); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-top: 58px; padding-bottom: 58px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: -13px; top: 12%; bottom: 12%;
  width: 1px; background: var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 50px);
  color: var(--ink);
  line-height: 1;
}
.stat .num em { font-style: normal; color: var(--red); }
.stat .lbl {
  margin-top: 10px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ===== Gallery: editorial mixed-size grid ===== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gal-grid a { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.gal-grid a:first-child { grid-column: span 2; grid-row: span 2; }
.gal-grid img { height: 100%; width: 100%; object-fit: cover; transition: transform .35s ease; }
.gal-grid a:hover img { transform: scale(1.04); }
.gal-grid .gal-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 13px; border-radius: 999px;
}
.gal-grid a:first-child .gal-tag { font-size: 13px; padding: 8px 16px; }
.gal-cta { text-align: center; margin-top: 38px; }

/* ===== Consult section (form's new home) ===== */
.consult { background: var(--ink); color: #fff; }
.consult .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding-top: 96px; padding-bottom: 96px;
}
.consult .script { color: #ff5a6e; font-size: 28px; }
.consult h2 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); margin: 4px 0 16px; }
.consult .c-sub { color: #cfd1d4; font-size: 17px; max-width: 480px; margin-bottom: 26px; }
.c-awards { list-style: none; }
.c-awards li {
  display: flex; gap: 12px; align-items: baseline;
  color: #e8e9ea; font-size: 15.5px; font-weight: 600;
  margin-bottom: 12px;
}
.c-awards .tb-ico { color: #ff5a6e; }
.c-phone { margin-top: 26px; color: #cfd1d4; font-size: 15px; }
.c-phone a { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #fff; display: block; }
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
  color: var(--text);
}
.quote-body { padding: 30px 30px 30px; }
.quote-body h3 { font-size: 25px; margin-bottom: 6px; }
.quote-body .q-sub { font-size: 14.5px; color: var(--ink-3); margin-bottom: 18px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid var(--red); outline-offset: -1px; background: #fff;
}
.quote-form .full { grid-column: 1 / -1; }
.quote-form textarea { resize: vertical; min-height: 74px; }
.quote-form .btn { grid-column: 1 / -1; width: 100%; margin-top: 6px; }
.quote-alt { text-align: center; font-size: 13.5px; margin-top: 14px; color: var(--ink-3); }
.quote-alt a { font-weight: 700; color: var(--ink); }

/* ===== Process: the momentum line connects the stages ===== */
.proc-wrap { position: relative; }
.proc-line {
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 24px;
  color: var(--red);
  pointer-events: none;
}
.proc-line path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.4s ease;
}
.proc-wrap.in .proc-line path { stroke-dashoffset: 0; }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.proc-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: 0 3px 16px rgba(25,27,32,.06);
  border-top: 3px solid var(--red);
}
.proc-step .p-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  color: var(--red);
  opacity: .28;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.proc-step .p-stage {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
  display: block; margin-bottom: 8px;
}
.proc-step h3 { font-size: 20px; margin-bottom: 10px; }
.proc-step p { font-size: 14.5px; color: var(--ink-3); }
.proc-note {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  color: var(--ink-3);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex; align-items: center; gap: 18px;
  font-size: 15.5px;
}
.proc-note strong { color: var(--ink); }
.proc-note .p-ico { flex: none; font-size: 24px; color: var(--red); }

/* ===== Team ===== */
.team-lead { margin-bottom: 36px; }
.team-lounge { border-radius: var(--radius); box-shadow: var(--shadow-card); margin-bottom: 40px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.tm-card { text-align: center; }
.tm-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(25,27,32,.10);
  margin-bottom: 12px;
}
.tm-card strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--ink); line-height: 1.25; }
.tm-card span { font-size: 12.5px; color: var(--ink-3); }

/* ===== Testimonials ===== */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.q-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 3px 16px rgba(25,27,32,.06);
  display: flex; flex-direction: column;
}
.q-card .q-mark {
  font-family: var(--font-display);
  font-size: 46px; line-height: .6; color: var(--red);
  display: block; margin-bottom: 14px;
}
.q-card .stars { color: #f7b32b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.q-card p { font-size: 15.5px; color: var(--ink-2); flex: 1; }
.q-card footer { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.q-src { text-align: center; margin-top: 32px; font-size: 14.5px; color: var(--ink-3); }
.q-src strong { color: var(--ink); }

/* ===== Service area ===== */
.area { color: #fff; }
.area h2 { color: #fff; }
.area .section-head p { color: var(--silver); }
.area .eyebrow { color: #ff5a6e; }
.area .eyebrow::before { background: #ff5a6e; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 999px;
  padding: 9px 19px;
  font-size: 14.5px; font-weight: 500;
}
a.area-chip:hover, .area-chip--link { border-color: var(--red); background: var(--red); font-weight: 600; }
.area-note { margin-top: 24px; color: var(--silver); font-size: 14.5px; max-width: 640px; }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 19px; text-align: left; color: var(--ink);
}
.faq-q .caret { color: var(--red); transition: transform .2s; flex: none; font-size: 13px; }
.faq-item.open .faq-q .caret { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 4px 24px; font-size: 15.5px; color: var(--ink-3); max-width: 760px; }
.faq-item.open .faq-a { display: block; }

/* ===== Final CTA ===== */
.final-cta { background: var(--cream); border-top: 1px solid var(--line); }
.final-cta .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 28px;
  padding-top: 72px; padding-bottom: 72px;
}
.final-cta .script { font-size: 27px; display: block; margin-bottom: 2px; }
.final-cta h2 { font-size: clamp(28px, 3.2vw, 40px); max-width: 560px; }
.final-cta p { color: var(--ink-3); margin-top: 10px; max-width: 500px; }
.final-cta .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.final-cta .mascot { height: 64px; width: auto; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #cfd1d4; }
.footer a { color: #cfd1d4; }
.footer a:hover { color: #fff; }
.f-trust { border-bottom: 1px solid #303239; }
.f-trust .container {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 36px;
  padding-top: 24px; padding-bottom: 24px;
  font-size: 13px; font-weight: 600; color: var(--silver);
}
.f-trust span { white-space: nowrap; }
.f-trust .star { color: #f7b32b; }
.f-main .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 60px; padding-bottom: 44px;
}
.f-about img { height: 38px; width: auto; margin-bottom: 18px; }
.f-about p { font-size: 14.5px; }
.f-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; font-size: 14.5px; }
.f-contact .f-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px; color: #fff;
  margin-bottom: 8px;
}
.f-contact p { font-size: 14.5px; margin-bottom: 14px; }
.f-coverage { border-top: 1px solid #303239; }
.f-coverage .container { padding-top: 22px; padding-bottom: 22px; font-size: 13.5px; }
.f-coverage strong { color: #fff; }
.f-exit { background: var(--ink-2); }
.f-exit .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 18px;
  padding-top: 28px; padding-bottom: 28px;
}
.f-exit p { font-family: var(--font-display); font-weight: 560; color: #fff; font-size: 19px; }
.f-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
  padding-top: 18px; padding-bottom: 20px;
  font-size: 12.5px; color: var(--silver);
}
.f-bottom img { height: 30px; width: auto; opacity: .9; }
.back-top {
  position: fixed; right: 18px; bottom: 84px; z-index: 50;
  width: 46px; height: 46px;
  background: var(--ink); color: #fff;
  border: 0; border-radius: 10px; cursor: pointer;
  font-size: 18px;
  opacity: 0; visibility: hidden; transition: opacity .25s;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}
.back-top.show { opacity: 1; visibility: visible; }

/* ===== Mobile sticky CTA bar ===== */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  background: var(--ink);
  box-shadow: 0 -6px 18px rgba(0,0,0,.25);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 15px 6px;
  font-size: 13px; font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.sticky-cta .s-mid { background: var(--red); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== City page ===== */
.breadcrumbs { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; }
.breadcrumbs a { color: var(--ink); font-weight: 600; }
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(26px, 3vw, 36px); margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 16.5px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: block; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .f-main .container { grid-template-columns: 1fr 1fr; }
  .consult .container { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 60px 0; }
  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 44px;
    padding-bottom: 56px;
    gap: 40px;
  }
  .hero::before { font-size: 96px; top: 12px; }
  .hero-copy { min-width: 0; }
  .hero .hero-headline { font-size: clamp(40px, 10.5vw, 54px); }
  .hero-visual { padding-left: 0; padding-bottom: 52px; }
  .hero-panel { aspect-ratio: 4/4.2; }
  .hero-detail { left: 0; width: 46%; }
  .hero-line { display: none; }
  .gal-grid { grid-auto-rows: 210px; }
  .gal-grid a:first-child { grid-column: auto; grid-row: span 2; }
  .proc-line { display: none; }
  .quotes-grid, .gal-grid { grid-template-columns: 1fr; }
  .why .container { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .stat + .stat::before { display: none; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .header .btn { display: none; }
  .consult .container { padding-top: 64px; padding-bottom: 64px; }

  .svc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--gutter);
    gap: 14px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 10px;
  }
  .svc-card { flex: 0 0 76%; max-width: 300px; scroll-snap-align: start; }
  .team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--gutter);
    gap: 14px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-bottom: 10px;
  }
  .tm-card { flex: 0 0 46%; max-width: 200px; scroll-snap-align: start; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 52px; }
  .back-top { bottom: 68px; }
  .final-cta .mascot { height: 54px; }
  .utility .u-award { display: none; }
  .utility .container { justify-content: center; }
  .utility .u-full { display: none; }
  .utility .u-short { display: inline; }
  .utility .u-area { white-space: nowrap; }
}

@media (max-width: 560px) {
  .proc-grid { grid-template-columns: 1fr; }
  .f-main .container { grid-template-columns: 1fr; gap: 30px; }
  .quote-form { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .logo img { height: 34px; }
  .header .container { height: 66px; }
  .hero .hero-headline { font-size: clamp(34px, 9.6vw, 40px); }
}

/* ===== v3.1 detail passes ===== */
::selection { background: var(--red); color: #fff; }

/* scroll progress: the momentum meter */
.progress {
  position: fixed; top: 0; left: 0; z-index: 100;
  height: 3px; width: 0;
  background: var(--red);
}

/* nav hover underline slides in */
.nav > li > a { position: relative; }
.nav > li > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav > li > a:hover::after { transform: scaleX(1); }

/* primary buttons carry a nudging arrow */
.btn-primary::after {
  content: "\2192";
  display: inline-block;
  margin-left: 9px;
  transition: transform .18s ease;
}
.btn-primary:hover::after { transform: translateX(4px); }

/* hero: swash under the red word, sticker-tilt detail card */
.hero .hero-headline em.sw { position: relative; white-space: nowrap; }
.hero .hero-headline em.sw::after {
  content: ""; position: absolute; left: 1%; right: 6%; bottom: -.1em; height: .13em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 16' preserveAspectRatio='none'%3E%3Cpath d='M4 12 C 60 3, 150 2, 216 7' fill='none' stroke='%23e91c34' stroke-width='5' stroke-linecap='round' opacity='.55'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero-detail { transform: rotate(-2.5deg); transition: transform .3s ease; }
.hero-detail:hover { transform: rotate(0deg); }

/* service cards: editorial numerals + photo zoom */
.svc-card { position: relative; }
.svc-card .svc-media { position: relative; overflow: hidden; }
.svc-card .svc-media img { transition: transform .35s ease; }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-num {
  position: absolute; top: 10px; left: 14px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: 21px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.svc-card:hover .svc-link { text-decoration: underline; text-underline-offset: 3px; }

/* gallery hover: quiet view chip */
.gal-grid a::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(25,27,32,0); transition: background .25s ease;
}
.gal-grid a:hover::before { background: rgba(25,27,32,.26); }
.gal-view {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: 16px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.gal-grid a:hover .gal-view { opacity: 1; transform: none; }
.gal-grid .gal-tag { z-index: 2; }

/* stats: cite it like we mean it */
.stats-src {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px; color: var(--silver);
  margin-top: -8px;
}

/* process: the real people on each stage */
.p-people { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.p-people .pp {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line);
}
.p-people .pp + .pp { margin-left: -12px; }
.p-people .init {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line);
}
.p-people .nm { font-size: 12.5px; font-weight: 600; color: var(--ink-3); }

/* mascot: leads the momentum line once it finishes drawing */
.proc-mascot {
  position: absolute; top: -64px; right: -4px;
  height: 50px; width: auto;
  opacity: 0; transform: translateX(-14px);
  transition: opacity .5s ease 1.9s, transform .5s ease 1.9s;
}
.proc-wrap.in .proc-mascot { opacity: 1; transform: none; }

/* mascot at the conversion point */
.c-talk { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.c-talk .c-mascot { height: 54px; width: auto; flex: none; }
.c-talk .c-phone { margin-top: 0; }

/* footer sign-off */
.f-bottom .script { font-size: 21px; color: #ff8493; }

@media (max-width: 860px) {
  .proc-mascot { display: none; }
  .hero-detail { transform: rotate(-2deg); }
}
