/* 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: #17181a;
  --ink-2: #202226;
  --ink-3: #474a50;
  --silver: #9ea1a6;
  --cream: #f1f1ef;
  --stone: #e6e6e3;
  --paper: #f7f7f5;
  --card: #ffffff;
  --line: #dedddb;
  --text: #2b2d31;
  --amber: #c07d2c;
  --kraft: #e7e7e4;
  --gutter: clamp(20px, 4vw, 32px);
  --radius: 14px;
  --shadow-card: 0 14px 38px rgba(18,20,26, .12);
  --font-display: "Fraunces", Georgia, serif;
  --font-script: "Caveat", cursive;
  --font-body: "Archivo", sans-serif;
  --font-athletic: "Barlow Condensed", "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
[id] { scroll-margin-top: 96px; }
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: var(--card);
  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: var(--card);
  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: var(--card);
  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: #e91c34; 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: #e7e8ea; font-size: 15.5px; font-weight: 600;
  margin-bottom: 12px;
}
.c-awards .tb-ico { color: #e91c34; }
.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: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
  color: var(--text);
  border-top: 3px solid var(--red);
}
.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: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9a9ca1; }
.quote-form input:hover, .quote-form select:hover, .quote-form textarea:hover { border-color: #cbc6bb; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(233, 28, 52, .15);
  background: var(--card);
}
.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: var(--card);
  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: var(--card);
  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 (praise + proof editorial spread) ===== */
.reviews { padding: 0 0 clamp(72px, 9vw, 120px); }
.rv-stars { color: #f7b32b; letter-spacing: 3px; font-size: 14px; }
.rv-hl { color: var(--red); }

/* kinetic praise ribbon */
.rv-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: clamp(56px, 7vw, 96px);
  background: var(--stone);
}
.rv-ribbon-track {
  display: flex; width: max-content;
  animation: marquee 46s linear infinite;
}
.rv-ribbon:hover .rv-ribbon-track { animation-play-state: paused; }
.rv-ribbon span {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.2vw, 30px);
  letter-spacing: -.01em; color: var(--ink);
  white-space: nowrap; padding-right: 26px;
}
.rv-ribbon span i { font-style: normal; color: var(--red); font-size: .62em; vertical-align: middle; margin-left: 4px; }

/* intro + scorecard */
.rv-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.rv-intro h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 18px; }
.rv-intro p { font-size: 17px; color: var(--ink-3); max-width: 46ch; }
.rv-scorecard { border-top: 2px solid var(--ink); padding-top: 22px; }
.rv-sc-rating { display: flex; align-items: center; gap: 16px; }
.rv-sc-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(50px, 5.5vw, 74px); line-height: .9; color: var(--ink);
  letter-spacing: -.02em;
}
.rv-sc-meta .rv-stars { font-size: 16px; }
.rv-sc-meta > span { display: block; margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.rv-sc-badges { list-style: none; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.rv-sc-badges li { display: flex; align-items: baseline; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.rv-sc-badges .tb-ico { color: var(--red); flex: none; }
.rv-link { display: inline-block; margin-top: 20px; font-weight: 700; font-size: 14.5px; color: var(--red); }
.rv-link span { display: inline-block; transition: transform .15s ease; }
.rv-link:hover { color: var(--red-dark); }
.rv-link:hover span { transform: translate(2px, -2px); }
.rv-src { margin-top: 12px; font-size: 12px; color: var(--silver); }

/* featured review: photo + oversized quote */
.rv-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 104px);
}
.rv-feature-media { margin: 0; }
.rv-feature-media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-card);
}
.rv-feature-media figcaption,
.rv-card-media figcaption {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  letter-spacing: .04em; margin-top: 12px;
}
.rv-feature-media figcaption .ix,
.rv-card-media figcaption .ix { color: var(--red); font-weight: 700; }
.rv-feature-body { position: relative; }
.rv-qmark {
  font-family: var(--font-display); color: var(--red);
  font-size: clamp(80px, 9vw, 130px); line-height: .8;
  display: block; margin-bottom: -6px;
}
.rv-feature-body .rv-stars { margin-bottom: 16px; }
.rv-feature-body blockquote {
  font-family: var(--font-display); font-weight: 500;
  color: var(--ink); letter-spacing: -.01em;
  font-size: clamp(24px, 2.7vw, 38px); line-height: 1.3;
}
.rv-feature-body footer {
  margin-top: 22px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
}

/* supporting review pair: stacked photo + quote */
.rv-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.rv-card { display: flex; flex-direction: column; }
.rv-card-media { margin: 0; }
.rv-card-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 14px;
}
.rv-card-body { padding-top: 20px; }
.rv-card-body .rv-stars { margin-bottom: 14px; }
.rv-card-body blockquote {
  font-family: var(--font-display); font-weight: 440;
  color: var(--ink); letter-spacing: -.005em;
  font-size: clamp(18px, 1.7vw, 21px); line-height: 1.5;
}
.rv-card-body footer {
  margin-top: 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3);
}
@media (prefers-reduced-motion: reduce) {
  .rv-ribbon-track { animation: none; }
}

/* ===== Service area ===== */
.area { color: #fff; }
.area h2 { color: #fff; }
.area .section-head p { color: var(--silver); }
.area .eyebrow { color: #e91c34; }
.area .eyebrow::before { background: #e91c34; }
.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: 88px; 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 img.f-combined { height: 96px; margin-bottom: 20px; }
.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: 40px; width: auto; opacity: .95; }
.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 (choreographed) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity .8s cubic-bezier(.16,.72,.2,1),
              transform .8s cubic-bezier(.16,.72,.2,1),
              filter .8s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: 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; }
  .gal-grid { grid-template-columns: 1fr; }
  .rv-top { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .rv-feature { grid-template-columns: 1fr; gap: 24px; }
  .rv-feature-media img { aspect-ratio: 3 / 2; }
  .rv-qmark { font-size: 72px; }
  .rv-pair { grid-template-columns: 1fr; gap: 40px; }
  .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: 64px; }
  .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: linear-gradient(90deg, var(--red), #e91c34);
  box-shadow: 0 0 12px rgba(233,28,52,.55);
}

/* 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: -76px; right: -4px;
  height: 62px; 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: 72px; width: auto; flex: none; }
.c-talk .c-phone { margin-top: 0; }

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

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

/* ============================================================
   Concept B2 — "the work speaks" editorial portfolio
   Cover opener, hover-list rooms, sticky project chapters,
   curated cinema grid, oversized numerals. All motion honors
   prefers-reduced-motion.
   ============================================================ */

.section--roomy { padding: clamp(96px, 12vw, 170px) 0; }

/* overline labels with index */
.ovl {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 26px;
}
.ovl .ix { color: var(--silver); letter-spacing: .06em; font-weight: 600; }
.ovl::after { content: ""; flex: 1; height: 1px; background: var(--line); align-self: center; }
.section--ink .ovl::after { background: #2c2e33; }

/* ===== Cover ===== */
.cover { background: var(--cream); overflow: hidden; }
.cover-head { padding-top: clamp(48px, 7vw, 96px); position: relative; }
.cover-kicker {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px; margin-bottom: clamp(28px, 4vw, 56px);
}
.cover-kicker .script { font-size: 26px; letter-spacing: 0; text-transform: none; transform: rotate(-2deg); display: inline-block; }
.statement {
  font-family: var(--font-display);
  font-weight: 460;
  color: var(--ink);
  font-size: clamp(58px, 10.4vw, 164px);
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: clamp(30px, 4vw, 56px);
}
.statement em { font-style: italic; color: var(--red); }
.st-line { display: block; overflow: hidden; }
.st-line > span { display: inline-block; transform: translateY(112%); animation: strise 1s cubic-bezier(.16,.66,.22,1) forwards; }
.st-line:nth-child(2) > span { animation-delay: .14s; }
@keyframes strise { to { transform: translateY(0); } }
.st-sub {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: clamp(26px, 3vw, 44px);
}
.st-sub p { max-width: 440px; font-size: 17px; color: var(--ink-3); }
.st-sub .hero-rating { color: var(--ink-3); flex: none; }
.cover-media { position: relative; }
.cover-frame {
  position: relative;
  height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  transform-origin: center bottom;
}
.cover-frame img {
  width: 100%; height: 116%;
  object-fit: cover; object-position: center 62%;
  will-change: transform;
}
.cover-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,27,32,0) 52%, rgba(25,27,32,.6) 100%);
}
.cover-ctas {
  position: absolute; left: clamp(20px, 4vw, 48px); bottom: clamp(22px, 3vw, 40px); z-index: 2;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cover-credit {
  position: absolute; right: clamp(20px, 4vw, 48px); bottom: clamp(26px, 3vw, 46px); z-index: 2;
  text-align: right;
  color: #eaebec; font-size: 13px; font-weight: 600; letter-spacing: .04em;
}
.cover-credit small { display: block; color: #adb0b5; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 10.5px; margin-bottom: 3px; }

/* ===== Rooms: interactive index list ===== */
.rooms { position: relative; }
.rooms-list { list-style: none; counter-reset: rm; }
.rooms-list li { border-top: 1px solid var(--line); }
.rooms-list li:last-child { border-bottom: 1px solid var(--line); }
.rooms-list a {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr) auto 40px;
  align-items: center; gap: 18px;
  padding: clamp(20px, 2.6vw, 34px) 4px;
  color: var(--ink);
}
.rm-ix { font-size: 13px; font-weight: 600; color: var(--silver); letter-spacing: .08em; }
.rm-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -.02em;
  transition: transform .28s ease, color .28s ease;
}
.rooms-list a:hover .rm-name { transform: translateX(16px); color: var(--red); font-style: italic; }
.rm-meta { font-size: 13.5px; font-weight: 600; color: var(--ink-3); text-align: right; }
.rm-go {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center; font-size: 15px; color: var(--ink);
  transition: background .25s, color .25s, border-color .25s;
}
.rooms-list a:hover .rm-go { background: var(--red); border-color: var(--red); color: #fff; }
.rooms-preview {
  position: absolute;
  right: 6%; top: 50%;
  width: clamp(260px, 24vw, 360px);
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(-50%) rotate(2.5deg);
  box-shadow: 0 40px 80px rgba(25,27,32,.34);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 5;
}
/* fallback (no cursor-follow JS): static right-center card on hover */
.rooms:hover .rooms-preview { opacity: 1; }
/* JS cursor-follow mode: anchor top-left, transform driven inline */
.rooms.rp-follow .rooms-preview {
  right: auto; top: 0; left: 0;
  transform: translate3d(-9999px, 0, 0) rotate(3deg);
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity .4s ease;
}
.rooms.rp-follow.rp-on .rooms-preview { opacity: 1; }
.rooms-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s ease;
}
.rooms-preview img.on { opacity: 1; }

/* ===== Sticky project chapters ===== */
.sproj-wrap { background: var(--ink); color: #fff; }
.sproj-head { padding-top: clamp(80px, 9vw, 140px); }
.sproj-head h2 { color: #fff; font-size: clamp(38px, 5vw, 72px); letter-spacing: -.02em; max-width: 900px; }
.sproj-head p { color: var(--silver); font-size: 17px; max-width: 560px; margin-top: 16px; }
.sproj {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(60px, 7vw, 110px) 0;
}
.sproj-media {
  position: sticky;
  top: 110px;
  height: min(72vh, 640px);
  border-radius: 18px;
  overflow: hidden;
}
.sproj-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.sproj-media img.on { opacity: 1; }
.sproj-media .sp-tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  padding: 7px 14px; border-radius: 999px;
}
.sp-chapters { padding: 4vh 0 10vh; }
.sp-ch { min-height: 52vh; display: flex; flex-direction: column; justify-content: center; }
.sp-ch .ovl { color: #e91c34; }
.sp-ch .ovl .ix { color: #676b73; }
.sp-ch .ovl::after { background: #2c2e33; }
.sp-ch h3 { color: #fff; font-size: clamp(26px, 2.8vw, 40px); margin-bottom: 14px; letter-spacing: -.015em; }
.sp-ch p { color: #c3c6ca; font-size: 16px; max-width: 460px; }
.sp-ch .proj-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sp-ch .proj-meta span {
  border: 1px solid #363a41; border-radius: 999px;
  padding: 6px 14px; font-size: 12.5px; font-weight: 600; color: #d0d3d6;
}

/* ===== Cinema grid: curated editorial gallery ===== */
.cine { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 24px); align-items: start; }
.cine figure { margin: 0; position: relative; }
.cine figure a { display: block; border-radius: 14px; overflow: hidden; position: relative; }
.cine img { width: 100%; display: block; transition: transform .45s ease; }
.cine figure a:hover img { transform: scale(1.045); }
.cine figcaption {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  letter-spacing: .04em;
  margin-top: 10px;
}
.cine figcaption .ix { color: var(--red); font-weight: 700; }
.c-a { grid-column: 1 / 8; }
.c-b { grid-column: 8 / 13; margin-top: clamp(40px, 6vw, 110px); }
.c-c { grid-column: 1 / 5; margin-top: clamp(-60px, -4vw, -20px); }
.c-d { grid-column: 5 / 10; margin-top: clamp(24px, 3vw, 60px); }
.c-e { grid-column: 10 / 13; margin-top: clamp(60px, 8vw, 140px); }
.c-f { grid-column: 2 / 7; margin-top: clamp(24px, 3vw, 60px); }
.c-g { grid-column: 7 / 12; margin-top: clamp(70px, 9vw, 150px); }
.cine-note {
  grid-column: 1 / 13;
  text-align: center;
  margin-top: clamp(36px, 5vw, 64px);
}

/* ===== Oversized numerals ===== */
.bigstats { border-top: 1px solid var(--line); }
.bigstats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.bstat .num {
  font-family: var(--font-display);
  font-weight: 440;
  font-size: clamp(56px, 6.6vw, 116px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--ink);
}
.bstat .num em { font-style: italic; color: var(--red); }
.bstat .lbl {
  margin-top: 14px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1.5px solid var(--ink);
  padding-top: 12px;
  max-width: 220px;
}
.bigstats .stats-src { grid-column: 1 / -1; text-align: left; margin-top: 0; }

/* parallax util */
[data-plx] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .st-line > span { animation: none; transform: none; }
  .cover-frame img { transform: none !important; }
  [data-plx] { transform: none !important; }
}

@media (max-width: 1080px) {
  .rooms-preview { display: none; }
  .sproj { grid-template-columns: 1fr; }
  .sproj-media { position: relative; top: 0; height: 52vh; }
  .sp-ch { min-height: 0; padding: 28px 0; }
}
@media (max-width: 860px) {
  .cover-frame { height: 62vh; border-radius: 14px 14px 0 0; }
  .st-sub { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cover-credit { display: none; }
  .rooms-list a { grid-template-columns: 40px minmax(0,1fr) 40px; }
  .rm-meta { display: none; }
  .cine { grid-template-columns: repeat(6, 1fr); }
  .c-a { grid-column: 1 / 7; }
  .c-b { grid-column: 2 / 7; margin-top: 20px; }
  .c-c { grid-column: 1 / 5; margin-top: 20px; }
  .c-d { grid-column: 1 / 7; margin-top: 20px; }
  .c-e { grid-column: 3 / 7; margin-top: 20px; }
  .c-f { grid-column: 1 / 6; margin-top: 20px; }
  .c-g { grid-column: 1 / 7; margin-top: 20px; }
  .bigstats .container { grid-template-columns: 1fr 1fr; }
}

/* mascot leaning over the form (kept from approved round) */
.quote-card--mascot { overflow: visible; position: relative; }
.quote-card--mascot .q-mascot {
  position: absolute; top: -74px; right: 26px;
  height: 92px; width: auto;
  transform: rotate(2deg);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
@media (max-width: 860px) {
  .quote-card--mascot .q-mascot { height: 72px; top: -58px; right: 18px; }
}

/* ===== Cover v2: the work lives inside the sentence ===== */
.cover-head { padding-top: clamp(32px, 4.5vw, 60px); }
.cover-kicker { margin-bottom: clamp(22px, 3vw, 40px); }
.statement { margin-bottom: clamp(24px, 3vw, 40px); }
.st-line--indent { text-align: right; }
.st-img {
  display: inline-block;
  height: .74em;
  aspect-ratio: 4 / 3;
  border-radius: .16em;
  overflow: hidden;
  vertical-align: -.1em;
  margin: 0 .06em;
  box-shadow: 0 14px 34px rgba(25,27,32,.22);
  transform: rotate(-2.5deg) scale(.6);
  opacity: 0;
  animation: stpop .7s cubic-bezier(.2,.7,.3,1.1) forwards;
}
.st-img--sq { aspect-ratio: 1 / 1; transform: rotate(2deg) scale(.6); }
.st-line:nth-child(1) .st-img { animation-delay: .55s; }
.st-line:nth-child(2) .st-img { animation-delay: .75s; }
@keyframes stpop {
  to { opacity: 1; transform: rotate(-2.5deg) scale(1); }
}
.st-img--sq { animation-name: stpop-sq; }
@keyframes stpop-sq {
  to { opacity: 1; transform: rotate(2deg) scale(1); }
}
.st-img img { width: 100%; height: 100%; object-fit: cover; }
.st-img:hover img { transform: scale(1.06); transition: transform .3s ease; }
.st-sub { margin-bottom: clamp(22px, 2.6vw, 36px); }
@media (prefers-reduced-motion: reduce) {
  .st-img, .st-img--sq { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 860px) {
  .st-line--indent { text-align: right; }
  .st-img { height: .66em; box-shadow: 0 8px 20px rgba(25,27,32,.2); }
}

@media (max-width: 640px) {
  .cover-kicker { flex-direction: column; align-items: flex-start; gap: 2px; }
  .cover-kicker .script { transform: rotate(-2deg) translateX(-2px); }
}

/* ============================================================
   Hero X + overlay header (full rework)
   ============================================================ */

/* header: fixed + transparent over the hero, inks on scroll */
.utility { display: none; }
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.16);
  z-index: 70;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.header .container { height: 96px; transition: height .3s ease; }
.logo img {
  height: 58px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.45));
  transition: height .3s ease;
}
.nav a { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav a:hover { color: #e91c34; }
.nav > li > a::after { background: #e91c34; }
.nav .caret { color: rgba(255,255,255,.65); }
.header-phone { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.header-phone small { color: rgba(255,255,255,.7); }
.hamburger span { background: var(--card); }
.header.scrolled {
  background: rgba(20,22,26,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: transparent;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.header.scrolled .container { height: 74px; }
.header.scrolled .logo img { height: 44px; }
[id] { scroll-margin-top: 96px; }

/* hero X: full-viewport photo, statement, awards showcase */
.heroX {
  position: relative;
  height: 100svh;
  min-height: 660px;
  background: var(--ink);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.heroX-bg { position: absolute; inset: 0; }
.heroX-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
.heroX-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,17,20,.54) 0%, rgba(16,17,20,.10) 30%, rgba(16,17,20,.24) 55%, rgba(12,13,15,.90) 100%),
    linear-gradient(100deg, rgba(16,17,20,.52) 0%, rgba(16,17,20,.12) 48%, rgba(16,17,20,0) 70%);
}
.heroX .container { position: relative; width: 100%; padding-bottom: 34px; }
.heroX .tagline {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(28px, 2.9vw, 40px);
  color: #e91c34;
  display: block; width: fit-content;
  transform: rotate(-2deg);
  margin-bottom: 10px;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.heroX h1 {
  display: inline-block;
  font-family: var(--font-athletic);
  font-weight: 800; font-style: italic;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff; background: var(--ink);
  padding: 4px 20px 5px 16px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
  box-shadow: 3px 3px 0 var(--red);
  margin-bottom: 18px;
}
.heroX .statement {
  color: #fff;
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: .97;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.heroX .statement em { color: #e91c34; }
.heroX .st-line--indent { text-align: left; margin-left: clamp(48px, 8vw, 150px); }
.heroX-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 18px;
  margin-bottom: clamp(26px, 3.4vw, 46px);
}
.heroX-sub { max-width: 470px; font-size: 16.5px; color: #e7e8ea; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.heroX-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* awards showcase: glass badge cards on the hero's bottom edge */
.awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.award {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 15px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.award-ico {
  flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  display: grid; place-items: center;
  font-size: 18px;
  color: #f7b32b;
  background: rgba(16,18,22,.35);
}
.award-ico--red { color: #e91c34; }
.award strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 16.5px;
  color: #fff;
  line-height: 1.15;
}
.award span { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: #c3c6ca; text-transform: uppercase; }

@media (max-width: 1080px) {
  .awards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .header .container { height: 76px; }
  .logo img { height: 44px; }
  .header.scrolled .container { height: 64px; }
  .header.scrolled .logo img { height: 38px; }
  .heroX { min-height: 100svh; }
  .heroX .container { padding-bottom: 20px; }
  .heroX .statement { font-size: clamp(46px, 13.5vw, 64px); }
  .heroX .st-line--indent { margin-left: 10vw; }
  .heroX-row { flex-direction: column; align-items: flex-start; }
  .awards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .award { padding: 11px 13px; gap: 10px; }
  .award-ico { width: 34px; height: 34px; font-size: 14px; }
  .award strong { font-size: 13.5px; }
  .award span { font-size: 10px; }
}

/* ================= 10x craft pass ================= */

/* Film grain + tonal depth on dark sections */
.sproj-wrap, .consult, .area, .footer { position: relative; isolation: isolate; }
.sproj-wrap::before, .consult::before, .area::before, .footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: .055;
  mix-blend-mode: overlay;
}
.sproj-wrap::after, .consult::after, .area::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(130% 90% at 50% -12%, rgba(255,255,255,.055), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.20), transparent 20%, transparent 82%, rgba(0,0,0,.24));
}
.sproj-wrap > .container, .consult > .container, .area > .container { position: relative; z-index: 1; }
.footer > div { position: relative; z-index: 1; }

/* Focus-visible: real keyboard affordance */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .rooms-list a:focus-visible {
  outline: 2.5px solid var(--red); outline-offset: 3px; border-radius: 5px;
}
.section--ink a:focus-visible, .footer a:focus-visible,
.consult a:focus-visible, .consult button:focus-visible, .area a:focus-visible {
  outline-color: #e91c34;
}

/* Magnetic buttons trail smoothly (JS sets inline transform) */
.btn-primary { will-change: transform; }

/* Service Area: editorial coverage layout */
.area .ovl { color: var(--silver); margin-bottom: 20px; }
.area .ovl .ix { color: #e91c34; }
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.area-lead h2 { color: #fff; font-size: clamp(30px, 3.4vw, 48px); margin-bottom: 16px; }
.area-lead p { color: var(--silver); font-size: 16.5px; max-width: 42ch; margin-bottom: 22px; }
.area-phone {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  color: #fff; border-bottom: 2px solid var(--red); padding-bottom: 2px;
}
.area-phone:hover { color: #e91c34; }
.area-cov { display: flex; flex-direction: column; }
.area-co {
  display: grid; grid-template-columns: minmax(0, 42%) 1fr; gap: 8px 32px;
  align-items: baseline;
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-top: 1px solid #2c2e33;
}
.area-co:first-child { border-top: 0; padding-top: 0; }
.area-co-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(21px, 2.1vw, 30px); color: #fff; line-height: 1.05;
}
.area-co-cities { font-size: 16px; color: var(--silver); font-weight: 500; }
.area-co-cities a { color: #fff; font-weight: 600; border-bottom: 1.5px solid var(--red); padding-bottom: 1px; }
.area-co-cities a:hover { color: #e91c34; border-color: #e91c34; }
.area-note { margin-top: clamp(30px, 4vw, 48px); color: var(--silver); font-size: 14.5px; max-width: 640px; }

/* Final CTA: bolder closer */
.final-cta .script { font-size: clamp(28px, 3vw, 40px); }
.final-cta h2 { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.02em; }

@media (max-width: 860px) {
  .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .area-co { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}

/* Hero load choreography: elements arrive in sequence on first paint */
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.heroX .tagline, .heroX h1, .heroX-row, .awards .award {
  opacity: 0;
  animation: heroIn .9s cubic-bezier(.16,.72,.2,1) both;
}
.heroX .tagline { animation-delay: .10s; }
.heroX h1 { animation-delay: .22s; }
.heroX-row { animation-delay: .52s; }
.awards .award:nth-child(1) { animation-delay: .66s; }
.awards .award:nth-child(2) { animation-delay: .74s; }
.awards .award:nth-child(3) { animation-delay: .82s; }
.awards .award:nth-child(4) { animation-delay: .90s; }
@media (prefers-reduced-motion: reduce) {
  .heroX .tagline, .heroX h1, .heroX-row, .awards .award { opacity: 1; animation: none; }
}

/* ================= Warm & human pivot ================= */

/* Warm welcome / mascot greeting band */
.welcome { background: var(--stone); border-bottom: 1px solid var(--line); overflow: hidden; }
.welcome-grid {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 76px); align-items: center;
  padding: clamp(46px, 6vw, 84px) var(--gutter);
}
.welcome-figure { position: relative; text-align: center; align-self: center; }
.welcome-mascot {
  width: clamp(280px, 34vw, 470px); height: auto; display: inline-block;
  filter: drop-shadow(0 22px 30px rgba(18,20,26, .26));
}
/* athletic flag banner — echoes the condensed italic wordmark on its angular banner */
.mlabel {
  display: inline-block;
  font-family: var(--font-athletic); font-weight: 800; font-style: italic;
  font-size: 16px; letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.15;
  color: #fff; background: var(--ink);
  padding: 4px 20px 5px 16px;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0% 100%);
  box-shadow: 3px 3px 0 var(--red);
  margin-bottom: 18px;
}
.welcome-copy h2 { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.14; letter-spacing: -.01em; margin-bottom: 18px; }
.welcome-copy > p { font-size: 17px; color: var(--ink-3); max-width: 52ch; margin-bottom: 24px; line-height: 1.62; }
.welcome-trust { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.welcome-trust span { font-size: 14.5px; color: var(--ink-3); display: inline-flex; align-items: baseline; }
.welcome-trust strong { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); margin-right: 6px; }

/* hand-drawn red underline accent */
.scribble { position: relative; white-space: nowrap; color: var(--ink); }
.scribble::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: -.15em; height: .22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M4 13 C 70 4, 150 3, 296 9' fill='none' stroke='%23e91c34' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 40px; padding-bottom: 44px; }
  .welcome-figure { align-self: auto; order: -1; }
  .welcome-mascot { height: 168px; }
  .welcome-bubble { top: 4%; right: 12%; }
}
