/* ============================================
   Fowler Professional Painting - Styles v3
   ============================================ */

:root {
  --red: #D91B1B;
  --red-dark: #a71313;
  --red-soft: #f5d7d4;
  --ink: #121826;
  --ink-soft: #364152;
  --gray: #5f6b7a;
  --line: #e8eaf0;
  --white: #fff;
  --cream: #f6e6d0;
  --bg-light: #f6f7f9;
  --bg-alt: #f1f3f6;
  --gold: #f5a623;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 26px 60px rgba(15, 23, 42, 0.18);
  --radius: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: .3s ease;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #ef4444 100%);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(217, 27, 27, 0.25);
}
.btn-primary:hover { color: var(--white); background: linear-gradient(135deg, var(--red-dark) 0%, #d72626 100%); }
.btn-outline {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(18,24,38,.12);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { color: var(--red); border-color: rgba(217,27,27,.24); }
.btn-lg { padding: 1.08rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(18,24,38,.05);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  background: rgba(255,255,255,.97);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: .5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img { height: 70px; width: auto; }

.nav-list { list-style: none; display: flex; align-items: center; gap: .2rem; }
.nav-list a {
  padding: .55rem .85rem; color: var(--ink); font-weight: 600; font-size: .92rem;
  border-radius: 999px; transition: all var(--transition);
}
.nav-list a:hover { color: var(--red); background: rgba(217,27,27,.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--red) 0%, #ef4444 100%) !important;
  color: var(--white) !important;
  padding: .7rem 1.35rem !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(217,27,27,.22);
}
.nav-cta:hover { transform: translateY(-1px); background: linear-gradient(135deg, var(--red-dark) 0%, #d72626 100%) !important; }

.header-phone {
  display: flex; align-items: center; gap: .5rem;
  color: var(--red); font-weight: 800; font-size: .96rem;
  text-decoration: none; white-space: nowrap;
}
.header-phone:hover { color: var(--red-dark); }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 100%; height: 3px; background: var(--ink);
  border-radius: 2px; position: absolute; left: 0; transition: all var(--transition);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8.5rem 1.5rem 5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,27,27,.22), transparent 24%),
    radial-gradient(circle at 80% 22%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(140deg, #0e1524 0%, #180d13 36%, #321215 68%, #161c2c 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.16) 0%, rgba(6, 10, 20, 0.54) 100%),
    radial-gradient(circle at 70% 75%, rgba(217,27,27,.18), transparent 32%);
}
.hero-texture,
.hero-texture::before,
.hero-texture::after {
  position: absolute;
  inset: auto;
  content: '';
  pointer-events: none;
}
.hero-texture {
  inset: 0;
  opacity: .38;
  background:
    linear-gradient(105deg, transparent 0 28%, rgba(255,255,255,.06) 28% 31%, transparent 31% 100%),
    linear-gradient(115deg, transparent 0 56%, rgba(217,27,27,.08) 56% 59%, transparent 59% 100%);
}
.hero-texture::before {
  width: 420px; height: 420px;
  right: -60px; bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 70%);
  animation: floatGlow 10s ease-in-out infinite;
}
.hero-texture::after {
  width: 280px; height: 8px;
  left: 8%; top: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(-10deg);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.2rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
  text-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.paint-stroke {
  position: relative;
  display: inline-block;
  color: var(--white);
}
.paint-stroke::after {
  content: '';
  position: absolute;
  left: -.08em;
  right: -.1em;
  bottom: .05em;
  height: .32em;
  background: linear-gradient(90deg, rgba(217,27,27,.84), rgba(255,119,119,.92), rgba(217,27,27,.78));
  border-radius: 999px 30px 999px 24px;
  transform-origin: left center;
  z-index: -1;
  opacity: .95;
  animation: paintStrokeReveal 1.4s ease-out both, paintStrokeShift 4s ease-in-out 1.4s infinite;
}
.hero-sub {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2.4vw, 1.26rem);
  color: rgba(255,255,255,.88);
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.7rem;
}
.hero-trust {
  display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem;
}
.trust-badge {
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(10px);
  padding: .48rem .95rem;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.hero-highlight {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.hero-highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: .2rem;
}
.hero-highlight span { color: rgba(255,255,255,.78); font-size: .92rem; }

.section {
  position: relative;
  padding: 5.5rem 0;
}
.section:nth-of-type(odd):not(.hero):not(.reviews) { background: var(--white); }
.section:nth-of-type(even):not(.hero):not(.reviews) { background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-alt) 100%); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: .85rem;
  color: var(--ink);
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.section-cta-left { justify-content: flex-start; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.35rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border-radius: 22px;
  padding: 2rem 1.55rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,24,38,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, #ff7878 100%);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217,27,27,.12);
}
.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(217,27,27,.08);
  color: var(--red);
  font-size: 1.9rem;
  margin-bottom: 1.15rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: .72rem;
  color: var(--ink);
}
.service-card p { color: var(--gray); font-size: .96rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}
.why-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .8rem 1rem;
  padding: 1.55rem;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,24,38,.06);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #ef4444 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.why-card h3 { font-family: var(--font-heading); font-size: 1.05rem; align-self: center; }
.why-card p { grid-column: 1 / -1; color: var(--gray); font-size: .95rem; }

.how-it-works {
  background: linear-gradient(135deg, #fff5ef 0%, #f8ebdd 100%);
  border-radius: 28px;
  padding: 2.8rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(217,27,27,.08);
}
.how-it-works h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--ink);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}
.step {
  position: relative;
  text-align: center;
  padding: 1.3rem 1rem 0;
}
.step:not(:last-child)::after {
  content: '➜';
  position: absolute;
  top: 1.35rem;
  right: -.72rem;
  font-size: 1.2rem;
  color: rgba(217,27,27,.55);
}
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #ef4444 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 14px 28px rgba(217,27,27,.20);
}
.step h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: .45rem; }
.step p { color: var(--gray); font-size: .93rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  object-fit: cover; width: 100%; height: 300px; display: block; transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-note { text-align: center; margin-top: 1.6rem; color: var(--gray); }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,8,14,.92); align-items: center; justify-content: center;
  padding: 2rem; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 3rem; cursor: pointer; line-height: 1;
  z-index: 2001; transition: transform var(--transition);
}
.lightbox-close:hover { transform: scale(1.14); }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45); cursor: default;
}

.reviews { background: linear-gradient(180deg, #f7ead8 0%, #f3e2cb 100%) !important; }
.reviews-aggregate {
  text-align: center; padding: 1rem 1.5rem; margin-bottom: 1.35rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); border-radius: 18px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 18px 36px rgba(217,27,27,.18);
}
.reviews-aggregate-stars { font-size: 1.25rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
  position: relative;
  background: rgba(255,255,255,.92);
  border-radius: 24px;
  padding: 2rem 1.45rem 1.45rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,24,38,.06);
  overflow: hidden;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: -.2rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(217,27,27,.14);
}
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(217,27,27,.22));
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .8rem; letter-spacing: 2px; position: relative; z-index: 1; }
.review-card p {
  position: relative; z-index: 1;
  color: var(--ink-soft); font-size: .96rem; margin-bottom: 1rem; line-height: 1.72;
}
.review-card footer { color: var(--gray); font-size: .86rem; font-weight: 700; }
.review-source { color: var(--red); font-weight: 600; }

.area-content { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2rem; align-items: start; }
.area-list {
  padding: 1.8rem;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,24,38,.06);
}
.area-list h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 1rem; }
.area-list ul { list-style: none; margin-bottom: 1.4rem; columns: 2; column-gap: 1.5rem; }
.area-list li { padding: .38rem 0 .38rem 1.4rem; position: relative; color: var(--ink); break-inside: avoid; }
.area-list li::before { content: '📍'; position: absolute; left: 0; font-size: .85rem; }
.area-note { color: var(--gray); font-size: .94rem; margin-bottom: .8rem; }
.area-map { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.area-map iframe { display: block; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 18px; margin-bottom: .9rem; overflow: hidden; background: var(--white);
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: rgba(217,27,27,.22); box-shadow: var(--shadow-md); }
.faq-item summary {
  padding: 1.25rem 1.35rem; cursor: pointer; font-weight: 700;
  font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--red); }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--red); }
.faq-answer { padding: 0 1.35rem 1.2rem; color: var(--gray); }
.faq-answer p { font-size: .95rem; }

.contact { background: linear-gradient(180deg, #f6f7f9 0%, #eff2f6 100%) !important; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(18,24,38,.06);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.contact-item h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: .45rem; }
.contact-link { font-size: 1.1rem; font-weight: 800; color: var(--red); display: block; margin-bottom: .2rem; }
.phone-link { font-size: 1.55rem; }
.contact-item address, .contact-item p { color: var(--gray); font-style: normal; }
.contact-direct-cta { margin-top: .3rem; }
.contact-form {
  background: var(--white); border-radius: 26px;
  padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(18,24,38,.06);
}
.form-fast-response {
  text-align: center; padding: .85rem 1rem; margin-bottom: 1.4rem;
  background: linear-gradient(135deg, #fff2e8 0%, #fff7f2 100%);
  border-radius: 16px; border: 1px solid #ffd7c2; color: var(--ink-soft); font-size: .95rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .42rem; color: var(--ink); }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .92rem 1rem; border: 1px solid #d9dee7;
  border-radius: 14px; font-family: var(--font-body); font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition); background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: rgba(217,27,27,.65); box-shadow: 0 0 0 4px rgba(217,27,27,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; margin-top: 1rem; color: var(--gray); font-size: .9rem; }
.form-status {
  padding: 1rem; border-radius: 14px; text-align: center;
  font-weight: 600; margin-top: 1rem; display: none;
}
.form-status.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-status.error { background: #ffebee; color: var(--red); display: block; }

.footer { background: linear-gradient(180deg, #131a29 0%, #0d1320 100%); color: rgba(255,255,255,.78); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand img { margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { font-size: .93rem; line-height: 1.65; max-width: 390px; }
.footer h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.8); }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { font-size: .9rem; margin-bottom: .45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 1.5rem;
  text-align: center; font-size: .82rem; opacity: .72;
}

.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem; background: rgba(255,255,255,.95); box-shadow: 0 -8px 24px rgba(15,23,42,.10);
  z-index: 999; text-align: center; backdrop-filter: blur(12px);
}
.floating-cta .btn { width: 100%; font-size: 1.02rem; }

@keyframes paintStrokeReveal {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: .95; }
}
@keyframes paintStrokeShift {
  0%, 100% { transform: scaleX(1) translateX(0); }
  50% { transform: scaleX(1.02) translateX(2px); }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0); opacity: .42; }
  50% { transform: translateY(-18px); opacity: .62; }
}

@media (max-width: 1024px) {
  .nav-list a { padding: .5rem .6rem; font-size: .84rem; }
  .nav-cta { padding: .58rem 1rem !important; font-size: .85rem !important; }
  .header-phone { font-size: .85rem; }
  .hero-highlights { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .area-content, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand p, .footer-brand img { margin-left: auto; margin-right: auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%; width: 82%; max-width: 320px; height: 100vh;
    background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg);
    padding: 5rem 2rem 2rem; transition: right var(--transition); z-index: 999;
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: .92rem 0; font-size: 1.03rem; border-bottom: 1px solid #eee; border-radius: 0; }
  .nav-cta { text-align: center !important; margin-top: .7rem; border-bottom: none !important; }
  .menu-toggle { display: block; }
  .header-phone span { display: none; }

  .hero { min-height: auto; padding: 7rem 1rem 4rem; }
  .hero-kicker { font-size: .74rem; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.7rem); }
  .hero-sub { font-size: 1.02rem; }
  .section { padding: 4rem 0; }
  .section-cta, .section-cta-left { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { content: '↓'; top: auto; bottom: -1.2rem; left: 50%; right: auto; transform: translateX(-50%); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 220px; }
  .area-list ul { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .floating-cta { display: block; }
  .footer { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  html { scroll-padding-top: 94px; }
  .hero-ctas, .section-cta { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .section-cta .btn { width: 100%; }
  .trust-badge { font-size: .76rem; }
  .section { padding: 3.25rem 0; }
  .services-grid, .why-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 250px; }
  .contact-form, .area-list, .how-it-works { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px;
}

@media print {
  .header, .floating-cta, .menu-toggle, .lightbox { display: none; }
  .hero { min-height: auto; padding: 2rem; background: none; color: var(--ink); }
  .hero-overlay, .hero-texture { display: none; }
  .section { padding: 1.5rem 0; }
}
