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

/* ── Tokens ── */
:root {
  /* Brand colors */
  --navy:      #0D1B2A;   /* Deep authority navy */
  --slate:     #1E3A5F;   /* Mid navy */
  --teal:      #0A7EA4;   /* Action teal */
  --teal-lt:   #12A5D8;   /* Lighter teal for hover */
  --gold:      #C5902F;   /* Trust gold accent */
  --gold-lt:   #E5AE48;
  --white:     #FFFFFF;
  --off-white: #F5F7FA;
  --mist:      #EBF1F8;   /* Subtle bg */
  --charcoal:  #2C3E50;
  --mid-gray:  #6B7C93;
  --light-gray:#D8E1EB;
  --text-dark: #12212F;
  --text-mid:  #3D5166;
  --text-light:#8398AD;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-body:    'Inter', '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(13,27,42,.08), 0 1px 2px rgba(13,27,42,.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,.12);
  --shadow-lg:  0 12px 40px rgba(13,27,42,.18);
  --shadow-card:0 2px 8px rgba(13,27,42,.07), 0 8px 24px rgba(13,27,42,.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 ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  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); }

.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.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  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: rgba(255,255,255,.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.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(13,27,42,.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);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.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;
}

/* 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-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(13,27,42,.92) 0%,
    rgba(13,27,42,.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 {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

.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); }

/* ── 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; }

  .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; }
  .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;
  }
}
