/* ==========================================================================
   Hammer Strength Electric Inc. — Production Stylesheet
   Design: Bold Industrial (Option 1 Approved)
   ========================================================================== */

/* ---------- Reset & Custom Properties ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --orange: #ff8a00;
  --orange-glow: #ff8a0040;
  --blue: #00b4ff;
  --blue-glow: #00b4ff30;
  --text: #f0f0f0;
  --text-muted: #999;
  --border: #333;
  --nav-h: 72px;
  --section-pad: clamp(60px, 10vw, 100px);
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--orange);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--orange);
  color: #000;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: box-shadow 0.3s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover {
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.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);
}

/* ---------- Video Background (shared) ---------- */
.hero__video,
.section__video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
  pointer-events: none;
}

/* Hide video on mobile / prefers-reduced-motion — fall back to photo bg */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .hero__video,
  .section__video { display: none; }
}

/* Sections with video need relative + overflow hidden */
.services,
.about,
.contact { position: relative; overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 2rem 80px;
  background: linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.85) 100%),
              url('../assets/photos/hero-banner.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* When video loads, dim photo bg so video takes over */
.hero:has(.hero__video[src]) {
  background-image: none;
}

/* Dark overlay on top of video */
.hero__video + .hero__content::before,
.section__video ~ .section-header::before {
  content: none; /* overlay handled by hero::after */
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.65) 0%, rgba(13,13,13,0.4) 40%, rgba(13,13,13,0.8) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 60px,
    rgba(255, 138, 0, 0.015) 60px,
    rgba(255, 138, 0, 0.015) 61px
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 30px var(--orange-glow));
  border-radius: 8px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero h1 .accent { color: var(--orange); }

.hero__tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero__desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: box-shadow 0.3s, transform 0.2s;
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--border);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ---------- Section Common ---------- */
section {
  padding: var(--section-pad) 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header .bar {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Services ---------- */
.services {
  background: linear-gradient(180deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.95) 100%),
              url('../assets/photos/services-bg.webp') center/cover no-repeat;
}

/* Ensure content sits above video */
.services .section-header,
.services .services__grid,
.about .section-header,
.about .about__content,
.contact .section-header,
.contact .contact__grid {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: #444;
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Why Choose Us ---------- */
.why-us { background: #111; }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-item__number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.why-item h4 {
  font-size: 1rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(90deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.8) 50%, rgba(13,13,13,0.6) 100%),
              url('../assets/photos/about-bg.webp') right center/cover no-repeat;
}

.about__content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__text strong { color: var(--text); }

.about__badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.badge:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.badge__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.badge h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- Testimonials ---------- */
.testimonials { background: #111; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Oswald', serif;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-dark); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__overlay h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery__overlay p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery__placeholder-icon {
  font-size: 2rem;
  opacity: 0.4;
}

/* ---------- Service Area / Map ---------- */
.service-area { background: #111; }

.service-area__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-area__text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-area__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.service-area__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-area__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.service-area__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.service-area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
  transition: filter 0.4s;
}

.service-area__map:hover iframe {
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* ---------- Contact ---------- */
.contact { background: #111; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__group {
  position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: var(--bg-card);
  color: var(--text);
}

.contact-form__error {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.contact-form__error.show {
  display: block;
}

.contact-form__submit {
  background: var(--orange);
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-form__submit:hover {
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-1px);
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form__success {
  display: none;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.contact-form__success.show {
  display: block;
}

.contact-form__success h4 {
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-form__success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 300px;
}

.footer__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__bottom a { color: var(--orange); text-decoration: none; }
.footer__bottom a:hover { text-decoration: underline; }

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  /* Remove backdrop-filter when menu is open so position:fixed on
     .nav__links is relative to the viewport, not the nav bar */
  .nav.nav--menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 138, 0, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 100%, rgba(0, 180, 255, 0.05) 0%, transparent 50%),
      linear-gradient(180deg, #111 0%, #0d0d0d 40%, #111 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 105;
    border-bottom: 2px solid var(--orange);
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    font-size: 1.3rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .nav__hamburger { display: flex; }

  .nav__cta { display: none; }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .service-area__content {
    grid-template-columns: 1fr;
  }

  .service-area__list {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin: 0 auto;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  section { padding: 48px 1rem; }

  .section-header { margin-bottom: 2.5rem; }

  .section-header h2 { font-size: 1.6rem; }

  .hero { padding-top: calc(var(--nav-h) + 24px); }

  .hero__logo { width: 120px; }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .why-item__number { font-size: 2.2rem; }
}

/* ---------- Utilities ---------- */
.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;
}

/* ---------- Print ---------- */
@media print {
  .nav, .hero::before, .gallery, .service-area__map { display: none; }
  body { background: #fff; color: #000; }
  section { padding: 1rem; }
  .service-card, .badge, .testimonial-card { border-color: #ccc; }
}
