/* ============================================================
   Stewart Paint Service LLC — Site in 5 Demo
   Agency-level custom design. Not a template.
   ============================================================ */

/* === DESIGN TOKENS ========================================= */
:root {
  --ink:         #0c1824;
  --navy:        #1a3a5c;
  --navy-deep:   #122a44;
  --navy-soft:   #274a63;
  --charcoal:    #1c1c1c;
  --slate:       #5a6b7b;
  --paper:       #f8f5f0;
  --mist:        #f2f4f7;
  --line:        #e0e8ef;
  --brass:       #e0a82e;
  --brass-deep:  #c98f20;
  --brass-text:  #7a5200;
  --white:       #ffffff;
  --star:        #9a6400;
  --star-bright: #f5a623;

  --shadow-xs:    0 2px 8px rgba(12,24,36,.06);
  --shadow-sm:    0 4px 18px rgba(12,24,36,.10);
  --shadow-md:    0 12px 36px rgba(12,24,36,.14);
  --shadow-lg:    0 28px 70px rgba(12,24,36,.22);
  --shadow-float: 0 18px 54px rgba(12,24,36,.18);

  --radius:    14px;
  --radius-lg: 22px;
  --wrap:      1200px;
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* === RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px; /* keep anchored sections clear of the sticky header */
}
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  line-height: 1.08;
  color: var(--navy-deep);
  font-weight: 700;
  text-wrap: balance; /* even, intentional line breaks on headings */
}
h1, h2 { letter-spacing: -0.02em; } /* subtle display tracking, scales with size */
p { text-wrap: pretty; } /* avoid typographic widows */
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brass-deep); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

/* Selection + keyboard focus — quiet craftsmanship details */
::selection { background: var(--brass); color: var(--ink); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

/* === LAYOUT ================================================ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.section { padding: clamp(72px, 9vw, 120px) 0; }

/* === TYPE UTILITIES ======================================== */
.eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 14px;
}
.eyebrow--brass { color: var(--brass); }
.stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
.stars--bright { color: var(--star-bright); }
.text-brass-italic { color: var(--brass-text); font-style: italic; }
.demo-copy-note {
  color: #9eb7c9;
  font-size: 14px;
  font-weight: 600;
}

/* === BUTTONS =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .08s; }
.btn--primary {
  background: var(--brass);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(224,168,46,.35);
}
.btn--primary:hover {
  background: var(--brass-deep);
  color: #fff;
  box-shadow: 0 12px 32px rgba(201,143,32,.45);
}
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-white:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #0a1520; }
.btn--lg { padding: 18px 42px; font-size: 17px; }
.btn--block { width: 100%; justify-content: center; }

/* === HEADER ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px clamp(20px, 4vw, 40px);
  max-width: var(--wrap);
  margin-inline: auto;
}
.brand img { height: 42px; }
.nav { display: flex; align-items: center; gap: 26px; }
/* Desktop: the Free Estimate CTA lives in .header-actions, so hide the in-nav
   duplicate. It reappears inside the mobile dropdown menu (see media query). */
.nav .btn { display: none; }
.nav a.navlink {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 15px;
  position: relative;
}
.nav a.navlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width .25s var(--ease);
}
.nav a.navlink:hover { color: var(--navy-deep); }
.nav a.navlink:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px; width: 24px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* === HERO — Cinematic Split: Dark Type + Photography ======= */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 0 clamp(120px, 18vw, 200px);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
/* Cinematic photo on right 48% of hero */
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    var(--ink) 0%,
    rgba(12,24,36,.9) 20%,
    rgba(12,24,36,.45) 55%,
    rgba(12,24,36,.15) 100%);
  z-index: 1;
}
/* Subtle grain/texture over the photo for painterly depth */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .35;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(20px, 4vw, 40px);
}
.hero-bg-num {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(220px, 38vw, 520px);
  font-weight: 700;
  color: #fff;
  opacity: .014;
  line-height: 1;
  letter-spacing: -16px;
  white-space: nowrap;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
/* Left — headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #c0d4e8;
  margin-bottom: 26px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -2.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass);
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18.5px);
  color: #839db4;
  line-height: 1.75;
  margin: 22px 0 36px;
  max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #f2f7fb;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.htdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}
/* Right — glass stat card sits over the hero photo */
.hero-stats {
  display: flex;
  flex-direction: column;
  background: rgba(8,16,28,.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2.5vw, 28px);
  position: relative;
  z-index: 2;
}
.hstat { padding: 28px 0; }
.hstat + .hstat { border-top: 1px solid rgba(255,255,255,.07); }
.hstat-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -2px;
}
.hstat-num sup {
  font-size: .44em;
  vertical-align: super;
  margin-top: 6px;
  display: inline-block;
}
.hstat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.74);
  margin-top: 8px;
  line-height: 1.5;
}

/* === PROOF CARDS =========================================== */
.proof-section {
  background: var(--white);
  position: relative;
  z-index: 10;
  margin-top: calc(-1 * clamp(44px, 7vw, 80px));
  padding-bottom: clamp(60px, 7vw, 96px);
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(210,225,240,.5);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
/* hairline brass top-edge that wipes in on hover */
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,168,46,.35);
}
.proof-card:hover::before { transform: scaleX(1); }
.pcard-num {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  letter-spacing: -1px;
}
.pcard-label { font-size: 14px; color: var(--slate); line-height: 1.4; }
.pcard-accent {
  font-size: 11.5px;
  color: var(--brass-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* === SHOWCASE — Full-Width Hero B/A Slider ================= */
.showcase-section {
  background: var(--paper);
  padding-top: clamp(60px, 8vw, 100px);
}
.showcase-head { margin-bottom: 0; }
.showcase-head h2 { font-size: clamp(34px, 5.5vw, 64px); }
.showcase-head p { color: var(--slate); margin-top: 14px; font-size: 18px; }
/* Typographic transformation counter — pauses the eye before the slider */
.showcase-counter {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(12,24,36,.1);
  margin-top: 32px;
}
.sc-num {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: .9;
  letter-spacing: -5px;
}
.sc-divider {
  width: 2px;
  height: clamp(56px, 8vw, 90px);
  background: var(--line);
  flex-shrink: 0;
}
.sc-label strong {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(16px, 2.2vw, 26px);
  color: var(--navy-deep);
}
.sc-label span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--slate);
  margin-top: 6px;
}
/* Ghost word overlays inside the showcase BA slider — reveal with the drag.
   No z-index: DOM order handles stacking (ba-after paints on top of ba-img--before). */
.ba-ghost-word {
  position: absolute;
  bottom: 11%;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(48px, 7vw, 130px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}
.gw-before {
  left: clamp(20px, 3.5vw, 60px);
  color: rgba(255,255,255,.14);
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.gw-after {
  right: clamp(20px, 3.5vw, 60px);
  color: rgba(224,168,46,.2);
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.showcase-frame { position: relative; }
.ba--hero {
  border-radius: 0 !important;
  box-shadow: none !important;
  aspect-ratio: auto !important;
  height: clamp(400px, 72vh, 840px);
}
.showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 40px 26px;
  background: linear-gradient(transparent, rgba(8,16,28,.76));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}
.showcase-overlay-cap {
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.showcase-overlay-link {
  pointer-events: all;
  font-weight: 700;
  color: var(--brass);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .2s, color .2s;
}
.showcase-overlay-link:hover { color: #fff; gap: 12px; }

/* === ABOUT — Dark Editorial ================================ */
.about-section {
  background: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
/* Wrap gives us room for the floating badge without clipping */
.about-img-wrap { position: relative; padding-bottom: 24px; padding-right: 24px; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.about-img-wrap:hover .about-img img { transform: scale(1.04); }
/* Floating stat badge overlaid on the crew photo */
.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--brass);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  min-width: 130px;
}
.about-badge-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}
.about-badge-star { font-size: .55em; vertical-align: super; }
.about-badge-text {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 5px;
  color: rgba(12,24,36,.65);
}
.about-content { color: #8aafc8; }
.about-content h2 { color: #fff; font-size: clamp(26px, 3.8vw, 42px); margin-bottom: 20px; }
.about-content p { line-height: 1.8; margin-bottom: 16px; }
.about-points { margin: 28px 0; display: grid; gap: 16px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.ab-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}
.about-points strong { color: #ddeaf5; }
.about-sig {
  margin-top: 28px;
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--brass);
}
.about-sig small {
  display: block;
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  margin-top: 5px;
  letter-spacing: .5px;
}

/* === SERVICES — Editorial Horizontal Bands ================= */
.services-section { background: var(--white); }
.svc-section-head { padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); }
.svc-section-head h2 { font-size: clamp(28px, 4.5vw, 48px); }
.svc-section-head p { color: var(--slate); margin-top: 14px; font-size: 18px; max-width: 600px; }
.svc-bands { border-top: 1px solid var(--line); }
.svc-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.svc-content {
  padding: clamp(44px, 6vw, 76px) clamp(32px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
/* Alternating tint gives the three bands a rhythm instead of three identical rows */
.svc-band:nth-of-type(even) .svc-content { background: var(--paper); }
.svc-num {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -5px;
  margin-bottom: 10px;
  /* outlined "architectural" numeral — reads as editorial, not a heavy grey block */
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(26,58,92,.2);
  transition: -webkit-text-stroke-color .4s var(--ease);
}
.svc-band:hover .svc-num { -webkit-text-stroke-color: rgba(224,168,46,.55); }
.svc-content h3 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
/* Per-service sub-list — distinguishes each band so they don't read the same */
.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass-text);
}
.svc-meta span { position: relative; padding: 0 14px 0 0; margin-right: 4px; }
.svc-meta span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 3px;
  color: rgba(122,82,0,.4);
}
.svc-content p { color: var(--slate); font-size: 16px; line-height: 1.75; max-width: 460px; }
.svc-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  transition: gap .2s var(--ease), color .2s;
}
.svc-link:hover { gap: 16px; color: var(--brass-text); }
.svc-link svg, .svc-link .svc-arrow { transition: transform .25s var(--ease); }
.svc-img {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  min-height: 320px;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .9s var(--ease);
}
/* Subtle editorial gradient grounds each photo and adds depth */
.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,24,36,0) 55%, rgba(12,24,36,.2) 100%);
  pointer-events: none;
}
.svc-band:hover .svc-img img { transform: scale(1.045); filter: saturate(1.06); }

/* === REVIEWS — Monument Spotlight ========================= */
.reviews-section {
  background: var(--navy-deep);
  padding: clamp(90px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle project photo texture behind review section */
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/photo-showcase.jpg);
  background-size: cover;
  background-position: center 40%;
  opacity: .05;
  z-index: 0;
  pointer-events: none;
}
.reviews-section .wrap { position: relative; z-index: 1; }
.reviews-section .eyebrow { color: var(--brass); margin-bottom: 0; }
.reviews-section h2 { color: #fff; font-size: clamp(26px, 3.8vw, 46px); margin: 12px 0 0; }
/* Editorial rule between heading and the quote */
.review-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px auto 0;
  max-width: 560px;
}
.review-rule::before,
.review-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224,168,46,.22), transparent);
}
.review-rule span {
  font-size: 11px;
  color: rgba(224,168,46,.45);
  letter-spacing: 5px;
  white-space: nowrap;
}
.review-demo-note {
  color: #9eb7c9;
  font-size: 13.5px;
  margin: 22px auto 42px;
  max-width: 640px;
}
.qmark {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(100px, 18vw, 260px);
  color: var(--brass);
  opacity: .13;
  line-height: .65;
  margin-bottom: -28px;
  pointer-events: none;
  user-select: none;
}
.review-spotlight { max-width: 920px; margin-inline: auto; }
.review-hero-text {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(21px, 3.2vw, 40px);
  font-style: italic;
  line-height: 1.55;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.review-hero-text p { color: #c4d8ea; }
.review-hero-text.fading { opacity: 0; transform: translateY(10px); }
.review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  justify-content: center;
}
.review-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 2px solid var(--brass);
  color: var(--brass);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  flex-shrink: 0;
}
.review-who strong { display: block; color: #fff; font-size: 16px; text-align: left; }
.review-who span { font-size: 13px; color: #aebfce; display: block; text-align: left; }
.review-dots { display: flex; justify-content: center; margin-top: 26px; }
.rdot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.rdot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: background .2s, transform .2s;
}
.rdot.rdot--active::before { background: var(--brass); transform: scale(1.45); }
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
}
.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #8aafc8;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.review-platform:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(224,168,46,.06);
  transform: translateY(-2px);
}

/* === AWARD MOMENT ========================================= */
.award-section {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-deep) 100%);
  padding: clamp(72px, 10vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.award-bg-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-size: 38vw;
  font-weight: 700;
  color: rgba(0,0,0,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.award-badge {
  width: clamp(110px, 14vw, 190px);
  margin: 0 auto 30px;
  filter: drop-shadow(0 14px 32px rgba(0,0,0,.22));
}
.award-inner { position: relative; z-index: 1; }
.award-section h2 { color: var(--ink); font-size: clamp(28px, 5vw, 56px); }
.award-section p {
  color: rgba(12,24,36,.62);
  max-width: 540px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.7;
}

/* === QUOTE FORM =========================================== */
.quote-section { background: var(--ink); padding: clamp(72px, 9vw, 120px) 0; }
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.quote-card h2 { color: var(--navy-deep); font-size: 26px; margin-bottom: 6px; }
.quote-card-sub { color: var(--slate); margin-bottom: 26px; font-size: 15px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--navy-deep); }
.req { color: var(--brass-text); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fcfcfd;
  color: var(--charcoal);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26,58,92,.12);
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180,35,24,.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 20px; }
.form-note { font-size: 12.5px; color: var(--slate); text-align: center; margin-top: 14px; }
.quote-aside { color: #7a9ab4; }
.quote-aside .eyebrow { color: var(--brass); }
.quote-aside h2 { color: #fff; font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 10px; }
.qa-list { margin: 28px 0; display: grid; gap: 18px; }
.qa-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.6; }
.qa-ico { color: var(--brass); flex-shrink: 0; font-size: 18px; margin-top: 1px; }
.qa-list strong { color: #ddeaf5; display: block; }
.callbox {
  margin-top: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.callbox small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #3d5970;
  font-weight: 700;
}
.callbox a { display: block; font-family: 'Roboto Slab', serif; font-size: 28px; color: #fff; margin-top: 8px; }
.callbox a:hover { color: var(--brass); }
.callbox-note { font-size: 13px; color: #3d5970; margin-top: 7px; }

/* === FOOTER =============================================== */
.site-footer {
  background: #060e18;
  color: #5a7a91;
  padding: 68px 0 28px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.flogo { height: 46px; margin-bottom: 18px; }
.site-footer p { color: #9bb2c6; line-height: 1.75; }
.footer-rating { margin-top: 14px; font-size: 14px; }
.footer-rating-score { color: #aabfcf; }
.footer-rating-muted { color: #9bb2c6; }
.site-footer h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #9bb2c6; font-size: 15px; }
.footer-links a:hover { color: var(--brass); }
.footer-contact { display: grid; gap: 11px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact li > span:not(.fci) { color: #9bb2c6; }
.fci { color: var(--brass); flex-shrink: 0; font-size: 14px; margin-top: 3px; }
.footer-contact a { color: #8aafc8; }
.footer-contact a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: #9bb2c6;
}
.demo-notice { color: var(--brass); font-weight: 600; }

/* === MOBILE CTA BAR ======================================= */
.mobile-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(12,24,36,.2);
}
.mobile-bar a {
  padding: 15px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mb-call { background: var(--ink); color: #fff; }
.mb-quote { background: var(--brass); color: var(--navy-deep); }

/* === STATUS PAGES ========================================= */
.status-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.status-section--tall { min-height: 80vh; }
.status-wrap {
  max-width: 640px;
  text-align: center;
}
.status-wrap--narrow { max-width: 560px; }
.status-icon {
  font-size: 52px;
  margin-bottom: 20px;
}
.status-title {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 18px;
}
.status-title--large { font-size: clamp(28px, 5vw, 52px); }
.status-copy {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.status-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--slate);
}
.status-phone {
  font-weight: 700;
  color: var(--navy);
}
.status-demo-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--brass-text);
  font-weight: 600;
}
.site-footer--compact { padding: 28px 0; }

/* === GALLERY HELPERS ====================================== */
.gallery-section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.gallery-title { font-size: clamp(26px, 4vw, 42px); }
.gallery-title--spaced { margin-bottom: 36px; }
.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  margin-top: 32px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* === SUBPAGE HERO ========================================= */
.page-hero {
  background: linear-gradient(120deg, var(--ink), var(--navy));
  color: #fff;
  padding: clamp(56px, 8vw, 100px) 0 clamp(44px, 6vw, 72px);
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 5.5vw, 56px); }
.page-hero p { color: #7aaccc; margin-top: 16px; max-width: 620px; font-size: 18px; }
.crumbs { font-size: 13px; color: #47688a; margin-bottom: 16px; }
.crumbs a { color: #7aaccc; }

/* === B/A SLIDER =========================================== */
.ba {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: #c8d4de;
}
.ba:focus-visible { outline: 4px solid rgba(224,168,46,.8); outline-offset: 4px; }
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
/* CSS filter "before" treatment: same photo looks worn/faded */
.ba-img--before img {
  filter: grayscale(0.68) contrast(0.88) brightness(0.76) saturate(0.28) sepia(0.12);
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.lbl-before { left: 14px; background: rgba(12,24,36,.62); backdrop-filter: blur(4px); }
.lbl-after { right: 14px; background: rgba(224,168,46,.92); color: var(--ink); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,.35);
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -3px;
}
.ba-caption { margin-top: 14px; font-size: 14px; color: var(--slate); text-align: center; }
.ba-wrap { display: flex; flex-direction: column; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Gallery tile */
.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
/* hairline inset ring keeps photos crisp against light backgrounds */
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(12,24,36,.08);
  pointer-events: none;
  z-index: 2;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile:hover img { transform: scale(1.06); }
.tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 18px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  background: linear-gradient(transparent, rgba(8,16,28,.86));
  z-index: 3;
}

/* === GALLERY PAGE INTRO =================================== */
.gallery-intro {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--white);
}
.gallery-intro p { color: var(--slate); font-size: 18px; max-width: 680px; }
.gallery-sliders { padding: clamp(56px, 7vw, 90px) 0 clamp(60px, 8vw, 96px); background: var(--mist); }
.gallery-tiles { padding: clamp(60px, 8vw, 96px) 0; }
.gallery-tiles h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 36px; }
.gallery-cta { padding: clamp(60px, 8vw, 96px) 0; background: var(--paper); text-align: center; }
.gallery-cta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.gallery-cta p { color: var(--slate); margin-bottom: 32px; }

/* === SCROLL REVEAL ======================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* === RESPONSIVE =========================================== */
@media (max-width: 1040px) {
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    z-index: 99;
  }
  .nav.open { transform: translateY(0); }
  .nav a.navlink { padding: 14px 24px; font-size: 17px; border-bottom: 1px solid rgba(0,0,0,.05); }
  .nav a.navlink::after { display: none; }
  .nav .btn { display: inline-flex; margin: 14px 20px 0; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .header-phone { display: none; }
  .hero-photo { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .hstat { flex: 1; min-width: 110px; padding: 0; }
  .hstat + .hstat {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid rgba(255,255,255,.08);
    padding-left: 20px;
  }
  .proof-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { padding-bottom: 16px; padding-right: 16px; }
  .about-badge { min-width: 100px; padding: 12px 14px; }
  .about-badge-num { font-size: 28px; }
  .about-badge-text { font-size: 10px; }
  .svc-band { grid-template-columns: 1fr; min-height: auto; }
  .svc-img { min-height: 300px; }
  .quote-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .ba--hero { height: clamp(360px, 60vh, 640px); }
  .showcase-counter { gap: 20px; }
  .sc-divider { height: 52px; }
}
@media (max-width: 680px) {
  .hero {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  .proof-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba--hero { height: clamp(240px, 64vw, 420px); }
  .showcase-counter { gap: 14px; padding: 22px 0 32px; }
  .sc-divider { height: 36px; }
  .ba-ghost-word { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 56px; }
  .showcase-overlay { padding: 30px 20px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-stats { gap: 0; }
  .hstat + .hstat { padding-left: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .review-hero-text { transition: none !important; }
  .svc-img img,
  .about-img img,
  .tile img,
  .proof-card,
  .tile { transition: none; }
}
