/* ============================================================
   Summit Roofing Solutions — spec preview by Woodcrest
   Brand: charcoal ink + burgundy + dusty mauve + warm cream
   ============================================================ */

:root {
  /* color */
  --ink:        #1b1d22;
  --ink-2:      #25272e;
  --ink-3:      #34363f;
  --burgundy:   #6d2435;
  --burgundy-d: #4f1925;
  --burgundy-l: #8c3247;
  --mauve:      #b3979d;
  --mauve-soft: #d9c9cd;
  --cream:      #f4efe9;
  --paper:      #faf8f5;
  --white:      #ffffff;
  --muted:      #5f5961;
  --line:       rgba(27,29,34,.12);
  --line-light: rgba(255,255,255,.16);

  /* type */
  --font-display: "Hoefler Text", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --fs-eyebrow: clamp(.72rem, .68rem + .2vw, .8rem);
  --fs-small:   clamp(.85rem, .82rem + .2vw, .94rem);
  --fs-body:    clamp(1rem, .96rem + .3vw, 1.12rem);
  --fs-lead:    clamp(1.18rem, 1.08rem + .6vw, 1.45rem);
  --fs-h4:      clamp(1.2rem, 1.08rem + .6vw, 1.45rem);
  --fs-h3:      clamp(1.5rem, 1.25rem + 1.2vw, 2.1rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --fs-h1:      clamp(2.5rem, 1.7rem + 3.6vw, 4.9rem);
  --fs-display: clamp(2.4rem, 1.4rem + 5vw, 6rem);

  /* spacing */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --gutter: clamp(1.25rem, .8rem + 2.4vw, 3rem);
  --maxw: 1240px;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -22px rgba(27,29,34,.4);
  --shadow-soft: 0 10px 30px -18px rgba(27,29,34,.35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

::selection { background: var(--burgundy); color: #fff; }

:focus-visible {
  outline: 3px solid var(--burgundy-l);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--maxw)); margin-inline: auto; }
.wrap--wide { --maxw: 1440px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--burgundy);
  display: inline-block;
}
.eyebrow--light { color: #e7c08e; }
.eyebrow--light::before { background: #d99a4e; }
.eyebrow--center { justify-content: center; }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-2); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--burgundy);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 650;
  font-size: var(--fs-small);
  letter-spacing: .02em;
  padding: .95em 1.7em;
  border: 1px solid var(--bg);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,.16);
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(109,36,53,.6); }
.btn:hover::after { transform: translateX(101%); }
.btn .ar { transition: transform .35s var(--ease); }
.btn:hover .ar { transform: translate(3px,-3px); }

.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { box-shadow: none; border-color: var(--ink); }

.btn--light {
  --bg: #fff; --fg: var(--ink);
  border-color: #fff;
}
.btn--outline-light {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover { box-shadow: none; background: rgba(255,255,255,.08); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(.7rem, .4rem + .8vw, 1.1rem) 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.brand img { height: clamp(38px, 5vw, 52px); width: auto; transition: filter .4s var(--ease); }
/* logo is dark-on-transparent; over the dark hero, lift it to white */
.site-header:not(.is-stuck) .brand img { filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, .6rem + 1.4vw, 2.2rem); }
.nav__links { display: flex; gap: clamp(1rem, .5rem + 1.2vw, 2rem); list-style: none; }
.nav__links a {
  font-size: var(--fs-small);
  font-weight: 550;
  letter-spacing: .01em;
  position: relative;
  padding: .3em 0;
  color: #fff;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--burgundy-l);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
.site-header.is-stuck .nav__links a { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 650; font-size: var(--fs-small);
  color: #fff; transition: color .3s var(--ease);
  white-space: nowrap;
}
.site-header.is-stuck .header-phone { color: var(--ink); }
.header-phone svg { width: 16px; height: 16px; }

.site-header.is-stuck {
  background: rgba(250,248,245,.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(0,0,0,.5);
}
.site-header.is-stuck .brand img { filter: none; }

/* mobile nav toggle */
.nav-toggle { display: none; }

@media (max-width: 920px) {
  .nav__links, .header-phone span { display: none; }
}
@media (max-width: 720px) {
  .nav { gap: 0; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 8px; z-index: 120;
  }
  .nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .35s var(--ease); }
  .site-header.is-stuck .nav-toggle span { background: var(--ink); }
  body.menu-open .nav-toggle span { background: #fff; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--ink);
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 2rem var(--gutter);
    gap: 1.4rem;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    z-index: 110;
  }
  body.menu-open .mobile-menu { transform: translateY(0); }
  .mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 1.8rem; }
  .mobile-menu a:not(:last-child) { border-bottom: 1px solid var(--line-light); padding-bottom: 1.2rem; }
  .mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }
}
@media (min-width: 721px) { .mobile-menu { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 884px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 22%; }
/* layered scrim: cinematic side-raked light + a contained bottom anchor (no flat black slab) */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,18,.58) 0%, rgba(20,15,18,.06) 22%, transparent 44%, rgba(16,11,14,.55) 78%, rgba(13,9,11,.9) 100%),
    linear-gradient(74deg, rgba(13,9,11,.86) 0%, rgba(20,15,18,.5) 32%, rgba(20,15,18,.08) 58%, transparent 78%),
    radial-gradient(135% 110% at 8% 108%, rgba(96,30,45,.7) 0%, rgba(79,25,37,.2) 38%, transparent 64%);
}
/* faint film grain so the dark areas don't band */
.hero__media::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 3px 3px;
}
.hero__inner {
  width: 100%;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
}
.hero__copy { max-width: 47ch; position: relative; padding-left: clamp(1.1rem, .5rem + 1.1vw, 1.9rem); }
/* slim accent rule anchoring the copy block */
.hero__copy::before {
  content: ""; position: absolute; left: 0; top: .4rem; bottom: .4rem;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--burgundy-l) 0%, #d99a4e 60%, rgba(217,154,78,.25) 100%);
}
.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  max-width: 18ch;
  margin: 1rem 0 1.5rem;
  line-height: 1.0;
  letter-spacing: -.025em;
  text-shadow: 0 2px 44px rgba(0,0,0,.5);
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 40ch;
  color: rgba(255,255,255,.92);
  font-weight: 400;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: 2rem;
}

/* hero proof card */
.hero__proof {
  background: linear-gradient(165deg, rgba(31,21,25,.72), rgba(16,11,14,.82));
  backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid rgba(231,192,142,.28);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.6rem;
  display: grid;
  gap: .95rem;
  min-width: 232px;
  box-shadow: 0 24px 60px -32px rgba(0,0,0,.85);
}
.hero__proof .stars { color: #e7b15a; letter-spacing: 3px; font-size: 1.05rem; }
.hero__proof b { font-size: 1.8rem; font-family: var(--font-display); display: block; line-height: 1; letter-spacing: -.01em; }
.hero__proof .row { display: flex; align-items: baseline; gap: .55rem; }
.hero__proof .row:first-of-type { margin-top: .15rem; }
.hero__proof .row span { font-size: var(--fs-small); color: rgba(255,255,255,.78); }
.hero__proof hr { border: 0; border-top: 1px solid rgba(231,192,142,.2); }
.hero__proof .badge { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-small); font-weight: 600; letter-spacing: .01em; }
.hero__proof .badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #76b87a; box-shadow: 0 0 0 4px rgba(118,184,122,.25); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero__scroll .line { width: 1px; height: 38px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; animation: scrolldown 2.2s var(--ease) infinite;
}
@keyframes scrolldown { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(300%)} }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; }
  .hero__proof { justify-self: start; }
  .hero__copy { max-width: 34ch; }
  .hero h1 { max-width: 16ch; }
}
@media (max-width: 600px) {
  .hero { align-items: flex-end; }
  .hero__copy { max-width: none; }
  .hero h1 { max-width: 14ch; }
  .hero__actions { margin-top: 1.6rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__scroll { display: none; }
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}
.trust__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.trust:hover .trust__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust__item {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: var(--fs-small); letter-spacing: .04em; white-space: nowrap;
  color: rgba(255,255,255,.86);
}
.trust__item svg { width: 17px; height: 17px; color: var(--mauve); flex: none; }
@media (prefers-reduced-motion: reduce) {
  .trust__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: var(--space-section) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section__head h2 { font-size: var(--fs-h2); margin-top: .8rem; }
.section__head.center { margin-inline: auto; text-align: center; }

/* editorial split masthead: headline left, supporting lead right */
.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .85fr);
  gap: clamp(1.6rem, 1rem + 3vw, 4.5rem);
  align-items: end;
  padding-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  border-bottom: 1px solid var(--line);
}
.section__head--split .section__head-main { max-width: 22ch; }
.section__head--split .section__head-main h2 { margin-top: .9rem; }
.section__head-aside { display: grid; gap: 1.3rem; justify-items: start; align-content: end; }
.section__head-aside .lead { max-width: 42ch; }
@media (max-width: 760px) {
  .section__head--split { grid-template-columns: 1fr; align-items: start; gap: 1.4rem; }
  .section__head--split .section__head-main { max-width: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 5.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about__media .accent {
  position: absolute;
  inset: auto auto -26px -26px;
  width: 58%;
  aspect-ratio: 1 / 1.05;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__media .stat-chip {
  position: absolute;
  right: -18px; top: 26px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem 1.3rem;
  text-align: center;
  max-width: 180px;
}
.about__media .stat-chip b { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--burgundy); display: block; }
.about__media .stat-chip span { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.about__body h2 { font-size: var(--fs-h2); margin: .8rem 0 1.4rem; }
.about__body p + p { margin-top: 1.1rem; }
.about__signoff {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.about__signoff .tag {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--burgundy);
  background: rgba(109,36,53,.08);
  border: 1px solid rgba(109,36,53,.16);
  padding: .45em 1em;
  border-radius: 50px;
}
.about__team {
  margin-top: 2rem;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--burgundy);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about__team p { font-size: var(--fs-small); color: var(--ink-2); }
.about__team strong { color: var(--ink); }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__media .stat-chip { right: 8px; }
}

/* ============================================================
   SERVICES  (editorial offset grid)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, .5rem + 1.6vw, 1.6rem);
}
.svc {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* photo-driven cards */
.svc--photo { color: #fff; justify-content: flex-end; min-height: 360px; }
.svc--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s var(--ease); }
.svc--photo:hover img { transform: scale(1.06); }
.svc--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(27,29,34,0) 30%, rgba(27,29,34,.45) 60%, rgba(27,29,34,.92) 100%);
}
.svc--photo .svc__inner { position: relative; z-index: 2; }
.svc--photo .svc__inner p { color: rgba(255,255,255,.85); }
.svc--photo h3 { color: #fff; }

.svc__inner { padding: clamp(1.4rem, 1rem + 1vw, 2rem); display: grid; gap: .6rem; }
.svc__num { font-size: .78rem; letter-spacing: .2em; font-weight: 700; color: var(--burgundy); }
.svc--photo .svc__num { color: var(--mauve-soft); }

/* text-only cards: hairline top accent that fills on hover */
.svc:not(.svc--photo)::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--burgundy); transition: width .5s var(--ease); z-index: 3;
}
.svc:not(.svc--photo):hover::before { width: 100%; }

/* feature card (Insurance claims) anchors the grid with burgundy */
.svc--feature { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.svc--feature::before { background: #e7b15a; }
.svc--feature .svc__num { color: #e7c08e; }
.svc--feature h3 { color: #fff; }
.svc--feature p { color: rgba(255,255,255,.82); }
.svc--feature .svc__link { color: #fff; }
.svc h3 { font-size: var(--fs-h4); }
.svc p { font-size: var(--fs-small); color: var(--muted); line-height: 1.55; }
.svc__link {
  margin-top: .3rem;
  font-size: var(--fs-small); font-weight: 650; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--burgundy);
}
.svc--photo .svc__link { color: #fff; }
.svc__link .ar { transition: transform .35s var(--ease); }
.svc:hover .svc__link .ar { transform: translateX(4px); }

/* span layout */
.svc--a { grid-column: span 7; }       /* big residential photo */
.svc--b { grid-column: span 5; }       /* insurance claims */
.svc--c { grid-column: span 4; }
.svc--d { grid-column: span 4; }
.svc--e { grid-column: span 4; }
.svc--wide { grid-column: span 5; }    /* metal photo */
.svc--tall { grid-column: span 7; }

@media (max-width: 880px) {
  .svc--a, .svc--b, .svc--wide, .svc--tall { grid-column: span 12; }
  .svc--c, .svc--d, .svc--e { grid-column: span 6; }
}
@media (max-width: 560px) {
  .svc { grid-column: span 12 !important; }
}

/* ============================================================
   BANNER (no-door-knocking statement band)
   ============================================================ */
.banner {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.banner__media { position: absolute; inset: 0; z-index: -2; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.banner__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(79,25,37,.92) 0%, rgba(27,29,34,.82) 55%, rgba(27,29,34,.5) 100%);
}
.banner__inner {
  padding: clamp(4rem, 3rem + 5vw, 7rem) 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.banner h2 { color: #fff; font-size: var(--fs-h2); max-width: 18ch; }
.banner p { margin-top: 1.2rem; color: rgba(255,255,255,.88); max-width: 46ch; font-size: var(--fs-lead); line-height: 1.5; }
.banner__points { display: grid; gap: 1.1rem; }
.banner__point {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-light);
}
.banner__point:last-child { border-bottom: 0; padding-bottom: 0; }
.banner__point .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line-light);
  display: grid; place-items: center; color: var(--mauve-soft);
  flex: none;
}
.banner__point .ic svg { width: 20px; height: 20px; }
.banner__point h4 { color: #fff; font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }
.banner__point p { margin-top: .2rem; font-size: var(--fs-small); color: rgba(255,255,255,.78); line-height: 1.5; }
@media (max-width: 820px) { .banner__inner { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 22vw, 250px);
  gap: clamp(.7rem, .4rem + 1vw, 1.1rem);
}
.gal {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gal:hover img { transform: scale(1.07); }
.gal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27,29,34,.78));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gal:hover::after { opacity: 1; }
.gal figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; right: 1.1rem;
  color: #fff; font-size: var(--fs-small); font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 2;
}
.gal:hover figcaption { opacity: 1; transform: translateY(0); }
.gal--a { grid-column: span 2; grid-row: span 2; }
.gal--b { grid-column: span 2; grid-row: span 1; }
.gal--c { grid-column: span 1; grid-row: span 1; }
.gal--d { grid-column: span 1; grid-row: span 1; }
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gal--a { grid-column: span 2; }
  .gal--b { grid-column: span 2; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.4rem);
}
.reviews__head h2 { font-size: var(--fs-h2); margin-top: .7rem; max-width: 16ch; }
.reviews__rating {
  text-align: right; flex: none;
}
.reviews__rating .stars { color: #d99a4e; font-size: 1.3rem; letter-spacing: 3px; }
.reviews__rating b { font-family: var(--font-display); font-size: 1.5rem; display: block; margin-top: .2rem; }
.reviews__rating span { font-size: var(--fs-small); color: var(--muted); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, .6rem + 1.4vw, 1.6rem);
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.2vw, 2.1rem);
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review .stars { color: #d99a4e; letter-spacing: 2px; font-size: 1rem; }
.review p {
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--ink-2);
}
.review__by { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--burgundy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  flex: none;
}
.review__by b { font-size: var(--fs-small); display: block; }
.review__by span { font-size: .78rem; color: var(--muted); }
.review--feature { grid-column: span 1; }

/* burgundy CTA panel that closes the review grid */
.review--cta {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(140,50,71,.9), transparent 55%),
    var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
  justify-content: space-between;
  gap: 1.3rem;
}
.review--cta p {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.65rem);
  line-height: 1.28;
  letter-spacing: -.01em;
}
.review--cta .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .review:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review:nth-child(3) { grid-column: span 1; }
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.community__logos {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(.8rem, .5rem + 1vw, 1.2rem);
}
.community__logos figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  padding: 1.4rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.community__logos figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.community__logos img { max-height: 72px; width: auto; object-fit: contain; }
.community h2 { font-size: var(--fs-h2); margin: .8rem 0 1.2rem; }
@media (max-width: 820px) {
  .community__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(109,36,53,.5), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(109,36,53,.32), transparent 55%);
}
.contact__inner { position: relative; z-index: 1; padding: var(--space-section) 0; }
.contact__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 1rem + 5vw, 6rem);
  align-items: center;
}
.contact h2 { color: #fff; font-size: var(--fs-display); max-width: 12ch; }
.contact__lead { margin-top: 1.3rem; color: rgba(255,255,255,.85); font-size: var(--fs-lead); max-width: 42ch; }
.contact__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.contact__card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 1.6vw, 2.4rem);
  backdrop-filter: blur(4px);
  display: grid; gap: 1.4rem;
}
.contact__row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.contact__row .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--burgundy); display: grid; place-items: center; color: #fff; flex: none;
}
.contact__row .ic svg { width: 20px; height: 20px; }
.contact__row .lbl { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve); }
.contact__row a, .contact__row p { color: #fff; font-weight: 600; font-size: 1.05rem; line-height: 1.4; }
.contact__row a:hover { color: var(--mauve-soft); }
.contact__hours { font-weight: 400 !important; font-size: var(--fs-small) !important; color: rgba(255,255,255,.7) !important; }
.contact__areas {
  margin-top: .4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-light);
  font-size: var(--fs-small); color: rgba(255,255,255,.72);
}
.contact__areas b { color: #fff; display: block; margin-bottom: .3rem; font-family: var(--font-sans); letter-spacing: .04em; }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #15171b; color: rgba(255,255,255,.7); padding: clamp(3rem,2rem+3vw,4.5rem) 0 1.5rem; }
.site-footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-light);
}
.site-footer__brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
.site-footer__brand p { font-size: var(--fs-small); max-width: 36ch; line-height: 1.6; }
.site-footer__brand .bbb {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; color: #fff;
  border: 1px solid var(--line-light); border-radius: 50px; padding: .4em 1em;
}
.site-footer h5 { color: #fff; font-family: var(--font-sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; display: grid; gap: .6rem; }
.site-footer ul a, .site-footer__col p { font-size: var(--fs-small); transition: color .3s var(--ease); }
.site-footer ul a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.5);
}
@media (max-width: 720px) { .site-footer__top { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   spec footer (mandatory)
   ============================================================ */
.spec-footer {
  background: #0e0f12;
  color: rgba(255,255,255,.6);
  text-align: center;
  font-size: .82rem;
  padding: 1.2rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--mauve-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   REVEAL ANIMATION (JS-gated; visible without JS)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js [data-delay="1"] { transition-delay: .08s; }
.js [data-delay="2"] { transition-delay: .16s; }
.js [data-delay="3"] { transition-delay: .24s; }
.js [data-delay="4"] { transition-delay: .32s; }
.js [data-delay="5"] { transition-delay: .4s; }

/* hero on-load stagger */
.js .hero [data-hero] { opacity: 0; transform: translateY(30px); filter: blur(10px); }
.js .hero.is-ready [data-hero] { opacity: 1; transform: none; filter: none; transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease); }
.js .hero.is-ready [data-hero="1"] { transition-delay: .15s; }
.js .hero.is-ready [data-hero="2"] { transition-delay: .3s; }
.js .hero.is-ready [data-hero="3"] { transition-delay: .45s; }
.js .hero.is-ready [data-hero="4"] { transition-delay: .6s; }
.js .hero.is-ready [data-hero="5"] { transition-delay: .78s; }
.js .hero__media img { transform: scale(1.08); transition: transform 1.6s var(--ease); }
.js .hero.is-ready .hero__media img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .hero [data-hero] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .js .hero__media img { transform: none !important; }
  .trust__track { animation: none !important; }
  .hero__scroll .line::after { animation: none; }
  .svc--photo img, .gal img { transition: none; }
  * { scroll-behavior: auto; }
}
