/* ============================================================
   ITD RESTORATION — Design System
   ThatsKrispy Agency Build
   ============================================================ */

/* ── Tokens — matched 1:1 to itdrestoration.com Elementor kit ── */
:root {
  /* Brand colors (live kit: primary/accent #009BCD, secondary #0C1015,
     text #494B4F, tints #B7E0ED / #7CCFE9, muted #747C89) */
  --navy:      #0C1015;   /* Live near-black */
  --slate:     #161D26;   /* Slightly lifted black for gradients */
  --teal:      #009BCD;   /* Live primary cyan */
  --teal-lt:   #29B6E8;   /* Hover cyan */
  --gold:      #009BCD;   /* Live has no gold — all accents cyan */
  --gold-lt:   #29B6E8;
  --white:     #FFFFFF;
  --off-white: #F2FAFD;
  --mist:      #E3F3F9;   /* Soft section tint */
  --tint:      #B7E0ED;   /* Live panel/card tint */
  --charcoal:  #1A222C;
  --mid-gray:  #747C89;
  --light-gray:#CFE8F2;
  --text-dark: #0C1015;
  --text-mid:  #494B4F;
  --text-light:#747C89;

  /* Typography (live: Saira Condensed headings, Roboto body) */
  --font-display: 'Saira Condensed', 'Barlow Condensed', sans-serif;
  --font-body:    'Roboto', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  1.5rem;
  --gap-lg:  2.5rem;
  --gap-xl:  4rem;
  --gap-2xl: 6rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(12,16,21,.08), 0 1px 2px rgba(12,16,21,.06);
  --shadow-md:  0 4px 16px rgba(12,16,21,.12);
  --shadow-lg:  0 12px 40px rgba(12,16,21,.18);
  --shadow-card:0 2px 8px rgba(12,16,21,.07), 0 8px 24px rgba(12,16,21,.06);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --transition: 220ms var(--ease);

  /* Layout */
  --container: 1200px;
  --container-sm: 800px;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ── */
/* Fonts are loaded via <link> in each page head (Saira Condensed + Roboto) */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); }
p + p { margin-top: 1em; }

.text-sm   { font-size: 0.875rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.lead      { font-size: 1.125rem; line-height: 1.7; color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.container--sm {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.section--lg {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section--sm {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.section--dark  { background: var(--navy); }
.section--slate { background: var(--slate); }
.section--mist  { background: var(--off-white); }
.section--teal  { background: var(--teal); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark .eyebrow,
.section--slate h1,
.section--slate h2,
.section--slate h3,
.section--slate p,
.section--teal h1,
.section--teal h2,
.section--teal h3,
.section--teal p {
  color: var(--white);
}

.section--dark .eyebrow { color: var(--gold); }
.section--teal .eyebrow { color: rgba(255,255,255,.7); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }

/* Service-page layout: article content + 340px sticky sidebar; stacks on small screens */
.layout-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: flex-start; }
@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}

.flex      { display: flex; }
.flex-col  { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.9rem;
  border-radius: 999px;   /* Live buttons are pills */
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-lt);
  border-color: var(--teal-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,126,164,.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,144,47,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--teal);   /* Live: cyan-outlined pills */
}
.btn--outline:hover {
  border-color: var(--teal-lt);
  background: rgba(0,155,205,.15);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(12,16,21,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

/* Live layout: links left · logo center · phone pill right */
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "links logo cta";
  align-items: center;
  height: 100%;
}
.nav__logo  { grid-area: logo; justify-self: center; }
.nav__links { grid-area: links; justify-self: start; }
.nav__cta   { grid-area: cta; justify-self: end; }
.nav__hamburger { grid-area: cta; justify-self: end; }

@media (max-width: 768px) {
  /* Mobile: logo left, hamburger right (links hidden) */
  .nav__inner { display: flex; justify-content: space-between; }
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0 1rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link--has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  transition: transform var(--transition);
}

.nav__item:hover .nav__link--has-dropdown::after {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav__dropdown-link:last-child { border-bottom: none; }

.nav__dropdown-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
  padding-left: 1.5rem;
}

.nav__dropdown-link.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
  box-shadow: inset 3px 0 0 var(--teal);
}

/* CTA in nav */
.nav__cta {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.nav__phone:hover { color: var(--gold-lt); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  overflow-y: auto;
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__mobile-sublabel {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 1rem 0 0.25rem;
  display: block;
}

.nav__mobile-sublink {
  display: block;
  padding: 0.6rem 0 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav__mobile-link.active,
.nav__mobile-sublink.active {
  color: var(--white);
  box-shadow: inset 3px 0 0 var(--teal);
}

.nav__mobile-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,16,21,.92) 0%,
    rgba(12,16,21,.7) 50%,
    rgba(10,126,164,.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vh, 5rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197,144,47,.15);
  border: 1px solid rgba(197,144,47,.4);
  color: var(--gold-lt);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.hero h1 .accent {
  color: var(--teal-lt);
  display: block;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* Hero quick-links sidebar */
.hero__services {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 2;
}

.hero__service-tab {
  background: rgba(10,126,164,.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), padding var(--transition);
  border-left: 3px solid transparent;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  cursor: pointer;
}

.hero__service-tab:first-child { border-top-left-radius: var(--radius-sm); }
.hero__service-tab:last-child  { border-bottom-left-radius: var(--radius-sm); }

.hero__service-tab:hover {
  background: var(--teal);
  border-left-color: var(--gold);
  padding-right: 1.75rem;
}

/* ── Emergency bar ── */
.emergency-bar {
  background: var(--gold);
  padding: 0.6rem 0;
  text-align: center;
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.emergency-bar p {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.emergency-bar a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.service-card__icon-wrap {
  padding: 1.75rem 1.75rem 0;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.5rem;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--teal);
  color: var(--white);
}

.service-card__body {
  padding: 1.25rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  color: var(--navy);
  gap: 0.7rem;
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--slate);
  padding: 2.5rem 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}

.stat-item {
  background: var(--slate);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item__number span {
  color: var(--gold);
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── Trust badges ── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-bar__item-icon {
  color: var(--teal);
  font-size: 1.1rem;
}

/* ── Process steps ── */
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.process-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process-step__num::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1.25rem);
  background: linear-gradient(to bottom, var(--teal), transparent);
  opacity: .3;
}

.process-steps > :last-child .process-step__num::after {
  display: none;
}

.process-step__content { padding-bottom: 2rem; }
.process-step__content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.process-step__content p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ── Photo gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery__item:first-child {
  /* Featured tile — spans 2×2 so the mosaic packs with no holes */
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--light-gray);
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mist);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── CTA Section ── */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,126,164,.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-block p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Contact form ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,126,164,.12);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7C93' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-message--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding-block: clamp(3rem, 8vw, 5rem);
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5rem));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 50%, rgba(10,126,164,.2) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.7); margin-top: 0.75rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(255,255,255,.3); }
.breadcrumb__current { color: var(--gold-lt); }

/* ── Service detail page ── */
.service-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-feature:last-child { border-bottom: none; }

.service-feature__icon {
  width: 32px;
  height: 32px;
  background: var(--mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.service-feature__text h5 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.service-feature__text p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
}

/* Sticky CTA sidebar */
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.sidebar-cta h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

.sidebar-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color var(--transition);
}

.sidebar-cta__phone:hover { color: var(--white); }

.sidebar-cta__divider {
  text-align: center;
  color: rgba(255,255,255,.3);
  font-size: 0.75rem;
  margin: 0.75rem 0;
}

/* ── FAQ Accordion ── */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--teal);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
}

.faq-answer__inner {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer__logo {
  height: 40px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--teal);
  color: var(--white);
}

.footer__col h5 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.75rem;
}

.footer__contact-icon { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

.footer__contact-item a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--white); }

.footer__cert {
  margin-top: 1.25rem;
}

.footer__cert-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 0.5rem;
}

.footer__cert-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer__cert-badges img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(.9);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer__cert-badges img:hover { opacity: 1; }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer__legal a:hover { color: rgba(255,255,255,.7); }

.footer__legal-btn {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}

.footer__legal-btn:hover { color: rgba(255,255,255,.7); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-sm       { margin-top: var(--gap-sm); }
.mt-md       { margin-top: var(--gap-md); }
.mt-lg       { margin-top: var(--gap-lg); }
.mb-sm       { margin-bottom: var(--gap-sm); }
.mb-md       { margin-bottom: var(--gap-md); }
.mb-lg       { margin-bottom: var(--gap-lg); }

.lic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mist);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__services { display: none; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links,
  .nav__cta .btn:not(:first-child) { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; height: auto; }

  .cta-block { padding: 2rem 1.5rem; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .hero__trust { gap: 0.75rem; }
  .hero__trust-item { font-size: 0.72rem; }

  .page-hero { padding-top: calc(var(--nav-h) + 2rem); }

  .sidebar-cta { position: static; }

  .trust-bar__inner { gap: 1rem; }
  .trust-bar__item { font-size: 0.72rem; }

  .nav__phone { display: none; }
}

@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item:first-child { grid-column: span 1; grid-row: auto; aspect-ratio: 4/3; height: auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Service card with photo header ── */
.service-card__photo {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.service-card:hover .service-card__photo img {
  transform: scale(1.06);
}

/* ── Services page - photo + card side-by-side layout ── */
.service-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: var(--transition);
}

.service-row:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-row__photo {
  overflow: hidden;
}

.service-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
  display: block;
}

.service-row:hover .service-row__photo img {
  transform: scale(1.05);
}

.service-row__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #EEF6FA;
}

.service-row__icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-row__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-row__body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  flex: 1;
}

@media (max-width: 640px) {
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row__photo {
    aspect-ratio: 16/7;
  }
}

/* ── Scroll reveal — CSS-driven (JS adds/removes classes) ── */
.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal-visible {
  opacity: 1;
  transform: none;
  transition: opacity 550ms ease, transform 550ms ease;
}

/* Stagger children in grids when parent has data-reveal */
.grid-3 [data-reveal].reveal-init:nth-child(2) { transition-delay: 80ms; }
.grid-3 [data-reveal].reveal-init:nth-child(3) { transition-delay: 160ms; }
.grid-4 [data-reveal].reveal-init:nth-child(2) { transition-delay: 60ms; }
.grid-4 [data-reveal].reveal-init:nth-child(3) { transition-delay: 120ms; }
.grid-4 [data-reveal].reveal-init:nth-child(4) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── 4-col dark gallery (homepage Our Work section) ── */
.gallery--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* 7 tiles pack a 4×3 grid exactly: featured 2×2 top-left,
   four singles beside it, two wide 2×1 tiles across the bottom row */
.gallery--4col .gallery__item:nth-last-child(-n+2) {
  grid-column: span 2;
  aspect-ratio: 21/10;
  height: auto;
}

@media (max-width: 900px) {
  .gallery--4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery--4col .gallery__item:first-child,
  .gallery--4col .gallery__item:nth-last-child(-n+2) {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/10;
    height: auto;
  }
}

@media (max-width: 480px) {
  .gallery--4col {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }
}

/* ── Stagger for testimonial cards ── */
.testimonial-card.reveal-init:nth-child(2) { transition-delay: 100ms; }
.testimonial-card.reveal-init:nth-child(3) { transition-delay: 200ms; }

/* ── Stagger for service cards ── */
.service-card.reveal-init:nth-child(2) { transition-delay: 60ms; }
.service-card.reveal-init:nth-child(3) { transition-delay: 120ms; }
.service-card.reveal-init:nth-child(4) { transition-delay: 180ms; }
.service-card.reveal-init:nth-child(5) { transition-delay: 60ms; }
.service-card.reveal-init:nth-child(6) { transition-delay: 120ms; }
.service-card.reveal-init:nth-child(7) { transition-delay: 180ms; }
.service-card.reveal-init:nth-child(8) { transition-delay: 240ms; }

/* ============================================================
   LIVE-SITE 1:1 COMPONENTS (matched to itdrestoration.com)
   ============================================================ */

/* ── Hero (black, centered, live style) ── */
.hero-live {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: calc(var(--nav-h) + 5.5rem) 0 5rem;
}
/* Background video (consent-gated). Iframe sized to cover 16:9 at any
   viewport; dark scrim keeps hero text legible — mirrors live. */
.hero-live__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-live__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-live__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,16,21,.78);
}
.hero-live .container { position: relative; z-index: 1; }
.hero-live__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.hero-live__eyebrow::before,
.hero-live__eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--teal);
}
.hero-live h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 1.25rem auto 0;
  max-width: 900px;
}
.hero-live h1 .swash {
  position: relative;
  display: inline-block;
}
.hero-live h1 .swash::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -0.12em;
  height: 0.14em;
  background: var(--teal);
  border-radius: 999px;
  transform: skewX(-18deg);
}
.hero-live__sub {
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin: 1.75rem auto 0;
  font-size: 0.95rem;
  line-height: 1.75;
}
.hero-live__actions { margin-top: 2rem; }
.hero-live__ticks {
  margin: 2.75rem auto 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hero-live__ticks span {
  width: 4px;
  height: 22px;
  background: var(--teal);
  transform: skewX(-18deg);
}

/* ── Service chip row ── */
.chip-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.chip {
  background: var(--white);
  border: 1px solid var(--tint);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem 1.1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.chip__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.chip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}
.chip__sub {
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Tinted "With You" panel ── */
.panel-tint {
  background: var(--tint);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border-radius: 2px;
}
.panel-tint__body { padding: 3rem 3.25rem; align-self: center; }
.panel-tint__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.panel-tint__body > p { margin-top: 0.9rem; color: var(--text-mid); font-size: 0.92rem; }
.panel-bullet { display: flex; gap: 0.9rem; margin-top: 1.6rem; }
.panel-bullet__icon { color: var(--teal); font-size: 1.5rem; flex: none; margin-top: 0.1rem; }
.panel-bullet h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.panel-bullet p { color: var(--text-mid); font-size: 0.85rem; margin-top: 0.2rem; }
.panel-tint__media { position: relative; min-height: 420px; }
.panel-tint__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge-years {
  position: absolute;
  left: -0px;
  bottom: 2.25rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  text-align: center;
}
.badge-years strong {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.badge-years strong span { font-size: inherit; }
.badge-years > span { font-size: 0.72rem; opacity: 0.9; }

/* ── Photo band with white cards ── */
.band-cards { position: relative; padding: 4.5rem 0; overflow: hidden; }
.band-cards__bg { position: absolute; inset: 0; }
.band-cards__bg img { width: 100%; height: 100%; object-fit: cover; }
.band-cards__bg::after { content: ''; position: absolute; inset: 0; background: rgba(183,224,237,.55); }
.band-cards .grid-3 { position: relative; z-index: 1; }
.band-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.band-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.band-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.band-card p { color: var(--text-mid); font-size: 0.85rem; margin-top: 0.6rem; }

/* ── Section eyebrow divider (live style) ── */
.eyebrow-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow-rule::before, .eyebrow-rule::after {
  content: '';
  height: 1px;
  width: min(160px, 18vw);
  background: var(--light-gray);
}

/* ── Tinted service rows ── */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.svc-card {
  background: var(--tint);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  min-height: 280px;
}
.svc-card__img { position: relative; }
.svc-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-card__body { padding: 1.9rem 1.7rem; display: flex; flex-direction: column; align-items: flex-start; }
.svc-card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.svc-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.svc-card p { color: var(--text-mid); font-size: 0.87rem; margin: 0.5rem 0 1.2rem; }
.svc-card .btn { margin-top: auto; border: 2px solid var(--teal); color: var(--text-dark); background: var(--white); font-size: 0.88rem; padding: 0.5rem 1.4rem; }
.svc-card .btn:hover { background: var(--teal); color: var(--white); }

/* ── Licensed & Certified band ── */
.band-cert { position: relative; padding: 3.5rem 0; overflow: hidden; color: var(--white); }
.band-cert__bg { position: absolute; inset: 0; }
.band-cert__bg img { width: 100%; height: 100%; object-fit: cover; }
.band-cert__bg::after { content: ''; position: absolute; inset: 0; background: rgba(12,16,21,.72); }
.band-cert__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.band-cert h2 { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.band-cert__lic { font-family: var(--font-display); letter-spacing: 0.15em; font-size: 0.9rem; opacity: 0.85; text-transform: uppercase; margin-top: 0.3rem; }
.band-cert__badges { display: flex; align-items: center; gap: 2.5rem; }
.band-cert__badges img { height: 64px; width: auto; filter: grayscale(1) brightness(1.7); opacity: 0.9; }

/* ── Google reviews strip ── */
.greviews { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.greviews__summary { display: flex; flex-direction: column; gap: 0.4rem; }
.greviews__summary img { width: 56px; height: auto; }
.greviews__summary h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.gstars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 0.05em; }
.greviews__count { color: var(--text-mid); font-size: 0.85rem; }
.greviews__write {
  margin-top: 0.6rem;
  display: inline-block;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  width: fit-content;
}
.greviews__write:hover { border-color: var(--teal); color: var(--teal); }
.greviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.greview {
  border: 1px solid #ECEFF3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 1.25rem;
  position: relative;
}
.greview__g { position: absolute; top: 1rem; right: 1rem; width: 20px; height: 20px; }
.greview__head { display: flex; align-items: center; gap: 0.7rem; }
.greview__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex: none;
}
.greview__name { font-weight: 700; font-size: 0.92rem; }
.greview__date { color: var(--text-light); font-size: 0.78rem; }
.greview__verified { color: #1D9BF0; font-size: 0.95rem; }
.greview p { color: var(--text-mid); font-size: 0.85rem; margin-top: 0.7rem; }

/* ── Instagram bar ── */
.insta-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.insta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1.4rem 1rem;
}
.insta-bar a:hover { color: var(--teal); }
.insta-bar i { font-size: 1.4rem; }

/* ── Live-components responsive ── */
@media (max-width: 1024px) {
  .chip-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .panel-tint { grid-template-columns: 1fr; }
  .panel-tint__media { min-height: 300px; }
  .svc-grid { grid-template-columns: 1fr; }
  .greviews { grid-template-columns: 1fr; }
  .band-cert__inner { justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  .chip-row { grid-template-columns: repeat(2, 1fr); }
  .svc-card { grid-template-columns: 1fr; min-height: 0; }
  .svc-card__img { height: 200px; position: relative; }
  .greviews__cards { grid-template-columns: 1fr; }
}
