/* ============================================
   ALL OVER ROOFING INC. — Full Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap'); */

/* ============ TOKENS ============ */
:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --panel:      #1a1a1a;
  --red:        #8b1a1a;
  --red-light:  #a82020;
  --red-dim:    #5a1010;
  --white:      #f5f2ee;
  --muted:      #888888;
  --divider:    #2a2a2a;
  --serif:      'Noto Serif', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --max:        1200px;
  --nav-h:      80px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============ REVEAL ANIMATION ============ */
/* Hidden state only applies after JS adds .js-loaded — content always visible without JS */
.js-loaded .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 1px 0 var(--divider);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 75px; width: auto; }
.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta a {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  opacity: 1 !important;
}
.nav__cta a:hover { background: var(--red-light) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav__links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 32px;
  gap: 24px;
  border-bottom: 1px solid var(--divider);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-light); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(245,242,238,0.3); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ============ SECTION LABELS ============ */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ============ HOME — HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,26,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__sub { font-size: 17px; color: var(--muted); max-width: 420px; margin-bottom: 16px; line-height: 1.7; }
.hero__badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.hero__badge::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--red); flex-shrink: 0; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image { display: flex; justify-content: center; align-items: center; }
.hero__phone { width: 100%; max-width: 340px; filter: drop-shadow(0 40px 80px rgba(139,26,26,0.3)); }

/* ============ HOME — STATS ============ */
.stats { border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); background: var(--panel); }
.stats__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--divider); }
.stats__item:last-child { border-right: none; }
.stats__number { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stats__label { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ============ HOME — SERVICES PREVIEW ============ */
.services-preview { padding: 100px 0; background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--divider); }
.service-card { background: var(--dark); padding: 40px 32px; transition: background 0.2s; }
.service-card:hover { background: var(--panel); }
.service-card__icon { font-size: 32px; margin-bottom: 20px; }
.service-card__title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-card__link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-light); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.service-card:hover .service-card__link { gap: 12px; }
.service-card--emergency { background: var(--red-dim); border-left: 3px solid var(--red-light); }
.service-card--emergency:hover { background: var(--red-dim); filter: brightness(1.1); }
.service-card--emergency .service-card__title,
.service-card--emergency .service-card__desc { color: var(--white); }
.service-card--emergency .service-card__desc { opacity: 0.8; }

/* ============ HOME — PARTNERS ============ */
.partners { padding: 80px 0; background: var(--panel); border-top: 1px solid var(--divider); }
.partners__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.partners__copy .section-sub { margin-bottom: 0; }
.partners__logos { display: flex; align-items: center; justify-content: flex-end; }
.partners__logos img { max-height: 200px; width: auto; opacity: 0.7; filter: grayscale(100%); transition: opacity 0.2s; }
.partners__logos img:hover { opacity: 1; }

/* ============ HOME — GALLERY ============ */
.gallery { padding: 100px 0; background: var(--black); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 56px; }
.gallery__item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--panel); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__label { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; background: rgb(45, 44, 44); color: var(--white); }
.gallery__label--after { background: rgb(45, 44, 44); }
.gallery__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.gallery__placeholder-icon { font-size: 36px; opacity: 0.4; }
.gallery__placeholder-text { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; }

/* ============ HOME — EMERGENCY CTA ============ */
.emergency { background: var(--red-dim); border-top: 3px solid var(--red-light); padding: 80px 0; }
.emergency__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.emergency__icon { font-size: 48px; flex-shrink: 0; }
.emergency__copy { flex: 1; }
.emergency__title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.emergency__sub { font-size: 16px; color: rgba(245,242,238,0.7); }
.emergency__action { flex-shrink: 0; text-align: center; }
.emergency__phone { display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--white); letter-spacing: -0.01em; margin-bottom: 8px; transition: color 0.2s; }
.emergency__phone:hover { color: #ff9999; }
.emergency__callout { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,242,238,0.6); }

/* ============ FOOTER ============ */
.footer { background: var(--dark); border-top: 1px solid var(--divider); padding: 60px 0 32px; }
.footer__main { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 48px; }
.footer__logo { height: 120px; margin-bottom: 16px; }
.footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__nav-group h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__nav-group ul { list-style: none; }
.footer__nav-group li { margin-bottom: 10px; font-size: 14px; color: rgba(245,242,238,0.7); }
.footer__nav-group a { font-size: 14px; color: rgba(245,242,238,0.7); transition: color 0.2s; }
.footer__nav-group a:hover { color: var(--white); }
.footer__bottom { max-width: var(--max); margin: 0 auto; padding: 24px 32px 0; border-top: 1px solid var(--divider); display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__legal { font-size: 13px; color: var(--muted); }

/* ============ PAGE HERO (shared) ============ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--black);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(139,26,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; padding: 80px 32px 72px; }
.page-hero__breadcrumb { font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.page-hero__breadcrumb a { color: var(--red-light); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__title { font-family: var(--serif); font-size: clamp(42px, 6vw, 80px); font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; color: var(--white); margin-bottom: 20px; }
.page-hero__sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ============ SERVICES PAGE ============ */
.service-section { padding: 96px 0; border-bottom: 1px solid var(--divider); }
.service-section:nth-child(even) { background: var(--panel); }
.service-section:nth-child(odd)  { background: var(--black); }
.service-section__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.service-section:nth-child(even) .service-section__inner { direction: rtl; }
.service-section:nth-child(even) .service-section__copy { direction: ltr; }
.service-section__image { direction: ltr; position: relative; aspect-ratio: 4/3; background: var(--panel); overflow: hidden; }
.service-section:nth-child(even) .service-section__image { background: var(--dark); }
.service-section__image img { width: 100%; height: 100%; object-fit: cover; }
.service-section__img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); min-height: 300px; }
.service-section__img-placeholder-icon { font-size: 52px; opacity: 0.35; }
.service-section__img-placeholder-text { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; }
.service-section__copy { direction: ltr; }
.service-section__number { font-family: var(--serif); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.service-section__number::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--red); }
.service-section__title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.service-section__desc { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.service-section__points { list-style: none; margin-bottom: 36px; }
.service-section__points li { font-size: 14px; color: rgba(245,242,238,0.75); padding: 8px 0; border-bottom: 1px solid var(--divider); display: flex; align-items: center; gap: 12px; }
.service-section__points li::before { content: '—'; color: var(--red-light); font-weight: 700; flex-shrink: 0; }
.service-section__cta { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); background: var(--red); padding: 14px 28px; transition: background 0.2s; }
.service-section__cta:hover { background: var(--red-light); }
.service-section--emergency { background: var(--red-dim) !important; border-top: 3px solid var(--red-light); }
.service-section--emergency .service-section__desc { color: rgba(245,242,238,0.75); }
.service-section--emergency .service-section__points li { color: rgba(245,242,238,0.85); border-color: rgba(245,242,238,0.15); }
.service-section--emergency .service-section__cta { background: var(--white); color: var(--red); }
.service-section--emergency .service-section__cta:hover { background: var(--white); opacity: 0.9; }
.services-cta { background: var(--dark); padding: 100px 0; text-align: center; border-top: 1px solid var(--divider); }
.services-cta__inner { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.services-cta__title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.services-cta__sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.services-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ ABOUT PAGE ============ */
.owner { padding: 100px 0; background: var(--black); border-bottom: 1px solid var(--divider); }
.owner__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.owner__photo { position: relative; }
.owner__photo-frame { aspect-ratio: 3/4; background: var(--panel); border: 1px solid var(--divider); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); }
.owner__photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.owner__photo-placeholder-icon { font-size: 52px; opacity: 0.3; }
.owner__photo-placeholder-text { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; }
.owner__accent { position: absolute; bottom: -16px; left: -16px; width: 80px; height: 80px; background: var(--red); z-index: -1; }
.owner__copy { padding-top: 8px; }
.owner__name { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 6px; }
.owner__title-label { font-size: 13px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-light); margin-bottom: 32px; }
.owner__bio { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.owner__bio strong { color: var(--white); font-weight: 600; }
.owner__divider { width: 48px; height: 2px; background: var(--red); margin: 36px 0; }
.owner__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.owner__stat-item { border-left: 2px solid var(--red); padding-left: 16px; }
.owner__stat-number { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.owner__stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.why { padding: 100px 0; background: var(--panel); border-bottom: 1px solid var(--divider); }
.why__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.why__header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.why__header .section-sub { margin-bottom: 0; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--divider); }
.why__card { background: var(--dark); padding: 44px 36px; }
.why__card-icon { font-size: 36px; margin-bottom: 24px; }
.why__card-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.why__card-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }
.mission { padding: 100px 0; background: var(--black); border-bottom: 1px solid var(--divider); }
.mission__inner { max-width: 800px; margin: 0 auto; padding: 0 32px; text-align: center; }
.mission__quote { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 32px; position: relative; }
.mission__quote::before { content: '\201C'; font-size: 120px; color: var(--red-dim); position: absolute; top: -40px; left: -20px; font-family: var(--serif); line-height: 1; z-index: 0; pointer-events: none; }
.mission__quote span { position: relative; z-index: 1; }
.mission__attr { font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-light); }
.about-cta { padding: 100px 0; background: var(--panel); text-align: center; }
.about-cta__inner { max-width: 600px; margin: 0 auto; padding: 0 32px; }
.about-cta__title { font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.about-cta__sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.about-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT PAGE ============ */
.call-strip { background: var(--red-dim); border-top: 3px solid var(--red-light); border-bottom: 1px solid var(--divider); padding: 48px 0; }
.call-strip__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.call-strip__copy h2 { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--white); margin-bottom: 6px; }
.call-strip__copy p { font-size: 15px; color: rgba(245,242,238,0.7); }
.call-strip__btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); padding: 16px 32px; transition: all 0.2s; white-space: nowrap; }
.call-strip__btn:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }
.call-strip__btn-icon { font-size: 24px; }
.contact-form-section { padding: 100px 0; background: var(--black); }
.contact-form-section__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-aside { padding-top: 8px; }
.contact-aside__title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-aside__desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--divider); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-light); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--white); line-height: 1.5; }
.contact-info-value a { color: var(--white); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--red-light); }
.contact-form { background: var(--panel); border: 1px solid var(--divider); padding: 48px; }
.contact-form__title { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-form__sub { font-size: 14px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: var(--dark); border: 1px solid var(--divider); color: var(--white); font-family: var(--sans); font-size: 15px; padding: 14px 16px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; border-radius: 0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red-light); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkboxes { margin-bottom: 24px; }
.form-checkboxes__label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.checkbox-item span { font-size: 14px; color: rgba(245,242,238,0.8); }
.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; text-align: center; font-size: 15px; padding: 18px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__sub { margin: 0 auto 16px; }
  .hero__badge { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; }
  .hero__phone { max-width: 260px; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-top: 1px solid var(--divider); }
  .stats__item:nth-child(4) { border-top: 1px solid var(--divider); border-right: none; }

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

  .partners__inner { grid-template-columns: 1fr; gap: 40px; }
  .partners__logos { justify-content: flex-start; }

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

  .emergency__inner { flex-direction: column; text-align: center; }

  .footer__main { grid-template-columns: 1fr; gap: 48px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .service-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-section:nth-child(even) .service-section__inner { direction: ltr; }
  .service-section__image { aspect-ratio: 16/9; }

  .owner__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__header { grid-template-columns: 1fr; gap: 24px; }
  .why__grid { grid-template-columns: 1fr; }

  .contact-form-section__inner { grid-template-columns: 1fr; gap: 56px; }
  .call-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .owner__stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}