/* === CSS Variables === */
:root {
  --color-dark: #111111;
  --color-dark-soft: #1c1c1c;
  --color-accent: #c48520;
  --color-accent-hover: #a36e18;
  --color-accent-dark: #8a5e15; /* AA-safe accent for text on white / text on accent */
  --color-blue: #1e3a5f;
  --color-blue-light: #2d5a8e;
  --color-ice: #f3f4f6;
  --color-cream: #faf9f6; /* tinted form-field fill, brightens to white on focus */
  --color-white: #ffffff;
  --color-text: #1f2937;
  --color-text-light: #5b6472; /* 5.4:1 on the ice sections */
  --rainbow: linear-gradient(90deg, #1e3a5f 0%, #2d5a8e 28%, #c48520 64%, #8a5e15 100%); /* navy-to-gold paint-swatch accent */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

/* === Skip link === */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 3000;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
}

/* === Visible focus ring (keyboard only) === */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Light ring variant for dark surfaces */
.navbar a:focus-visible,
.navbar button:focus-visible,
.trust-bar a:focus-visible,
.stats a:focus-visible,
.service-area a:focus-visible,
.footer a:focus-visible,
.mobile-cta a:focus-visible,
.lightbox button:focus-visible,
.hero a:focus-visible {
  outline-color: #fff;
}

/* === Top Contact Bar === */
.top-bar {
  background: var(--color-accent-dark);
  color: #fff;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
}
.top-bar a {
  color: #fff;
  text-decoration: underline;
}
.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* === Utility === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
  display: inline-block;
  color: var(--color-blue-light);
}

.section-label--blue { color: var(--color-blue-light); }
.section-label--gold { color: var(--color-accent-dark); }

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: 1px;
}

/* Hand-painted brush-stroke underline beneath section titles (brand asset) */
.section-title::after {
  content: '';
  display: block;
  width: 132px;
  height: 14px;
  margin: 12px auto 0;
  background: var(--color-accent);
  -webkit-mask: url('../image/brush-wide.png') center / contain no-repeat;
  mask: url('../image/brush-wide.png') center / contain no-repeat;
}

/* On dark sections the gold reads; keep it gold there too */
.service-area .section-title::after {
  background: var(--color-accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* === Scroll Animations === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 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.35s; }

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-dark);
  backdrop-filter: blur(10px);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.navbar__name {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 4px;
}

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

.navbar__phone {
  background: var(--color-blue);
  color: var(--color-white) !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.navbar__phone:hover {
  background: var(--color-blue-light);
}

.navbar__accent {
  height: 4px;
  background: var(--rainbow);
}

/* Hamburger (mobile) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Hero === */
.hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

/* No overlay effects - clean look */

.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.05;
  letter-spacing: 1px;
}

/* Gold brush-stroke flourish under the hero headline (brand asset) */
.hero__title::after {
  content: '';
  display: block;
  width: 180px;
  height: 18px;
  margin: 16px auto 0;
  background: var(--color-accent);
  -webkit-mask: url('../image/brush-wide.png') center / contain no-repeat;
  mask: url('../image/brush-wide.png') center / contain no-repeat;
}

.hero__text {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Trust Bar === */
.trust-bar {
  background: var(--color-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.trust-bar__stars {
  display: flex;
  gap: 2px;
  color: #f5c542;
}

.trust-bar__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

/* === Services === */
.services {
  padding: 70px 0;
  text-align: center;
  background: #fff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 1rem;
}

.service-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: default;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: #fff;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: #fff;
  letter-spacing: 0.5px;
}

.service-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* === Gallery === */
.gallery {
  padding: 70px 0;
  text-align: center;
  background: var(--color-ice);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 1rem;
}

.gallery__item {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--color-dark);
  font: inherit;
  color: inherit;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s;
}

.gallery__item--portrait img {
  object-position: top center;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.08);
}

/* Hover/focus affordance: gold tint + expand icon */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    rgba(196, 133, 32, 0.0)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E")
    center / 28px no-repeat;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
  pointer-events: none;
}

.gallery__item:hover::after,
.gallery__item:focus-visible::after {
  opacity: 1;
  background-color: rgba(138, 94, 21, 0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.lightbox.active {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox__close:hover {
  color: var(--color-accent);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  transition: color 0.3s;
}

.lightbox__nav:hover {
  color: var(--color-accent);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* === Testimonials === */
.testimonials {
  padding: 70px 0;
  text-align: center;
  background: var(--color-ice);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 1rem;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote-mark {
  display: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f5c542;
  margin-bottom: 14px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-card__info {
  text-align: left;
}

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

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

/* Social Proof Badges */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.social-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-ice);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.social-badge__icon svg {
  width: 100%;
  height: 100%;
}

.social-badge__content {
  text-align: left;
}

.social-badge__rating {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-badge__rating-stars {
  display: flex;
  gap: 1px;
  color: #f5c542;
}

.social-badge__rating-stars svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-badge__label {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Stats Counter === */
.stats {
  padding: 50px 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rainbow);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.stat-item__number span {
  color: var(--color-accent);
  font-size: 0.7em;
}

.stat-item__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  font-weight: 500;
}

/* === Before/After === */
.before-after {
  padding: 80px 0;
  text-align: center;
  background: var(--color-white);
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 1rem;
}

.ba-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--color-white);
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-slider__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M8 4l-6 8 6 8M16 4l6 8-6 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.ba-slider__label {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  color: white;
}

.ba-slider__label--before {
  right: 12px;
  background: rgba(0,0,0,0.6);
}

.ba-slider__label--after {
  left: 12px;
  background: var(--color-accent-dark);
}

/* === Why Choose Us === */
.why-us {
  padding: 70px 0;
  text-align: center;
  background: #fff;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}

.why-us__item {
  padding: 28px 20px;
  background: var(--color-ice);
  border-radius: 6px;
  text-align: center;
}

.why-us__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.why-us__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.why-us__item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* === FAQ === */
.faq {
  padding: 80px 0;
  text-align: center;
  background: var(--color-white);
}

.faq__list {
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  gap: 16px;
}

.faq__question:hover {
  color: var(--color-accent-dark);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text-light);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq__answer p {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

/* === Service Area === */
.service-area {
  padding: 60px 0;
  text-align: center;
  background: var(--color-dark);
  color: var(--color-white);
}

.service-area .section-title {
  color: var(--color-white);
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-area__city {
  padding: 6px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.service-area__city:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.service-area__cta {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* === Sticky Mobile CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-dark);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.mobile-cta__inner {
  display: flex;
  gap: 10px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mobile-cta__btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}

.mobile-cta__btn--call {
  background: var(--color-white);
  color: var(--color-dark);
}

.mobile-cta__btn--call:active {
  background: #e5e7eb;
}

.mobile-cta__btn--quote {
  background: var(--color-accent);
  color: var(--color-white);
}

.mobile-cta__btn--quote:active {
  background: var(--color-accent-hover);
}

/* === Quote Form === */
.quote {
  padding: 90px 0 80px;
  text-align: center;
  background: var(--color-ice);
  position: relative;
}

.quote__form {
  max-width: 520px;
  margin: 1rem auto 0;
  text-align: left;
  background: #fff;
  padding: 32px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.quote__form .form-group {
  margin-bottom: 18px;
}

.quote__form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--color-dark);
  letter-spacing: 0.3px;
}

.quote__form input,
.quote__form select,
.quote__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--color-cream);
}

.quote__form input:focus,
.quote__form select:focus,
.quote__form textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(58, 124, 194, 0.1);
  background: var(--color-white);
}

.quote__form textarea {
  min-height: 100px;
  resize: vertical;
}

.quote__form .btn {
  width: 100%;
  font-size: 1rem;
  padding: 15px;
  margin-top: 6px;
}

.quote__form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.5;
}

/* Honeypot — hidden from real users */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Form messages */
.form-message {
  max-width: 520px;
  margin: 0 auto 20px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
}

.form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === Footer === */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 48px 24px 24px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer__credentials {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.footer__phone {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer__phone a {
  color: var(--color-white);
  transition: color 0.3s;
}

.footer__phone a:hover {
  color: var(--color-accent);
}

.footer__area {
  font-size: 0.82rem;
  color: #b4b9be;
  margin-bottom: 20px;
}

.footer__accent {
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
  max-width: 80px;
  margin: 0 auto 14px;
}

.footer__copy {
  font-size: 0.72rem;
  color: #9aa0a6;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Top bar */
  .top-bar { font-size: 0.75rem; padding: 6px 0; }

  /* Navbar */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__inner {
    position: relative;
    padding: 10px 16px;
  }

  .navbar__links a {
    padding: 12px 8px;
    font-size: 1rem;
    display: block;
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__logo {
    width: 36px;
    height: 36px;
  }

  .navbar__name {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    min-height: 420px;
  }

  .hero__content {
    padding: 40px 16px;
  }

  .hero__subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

  .hero__title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero__text {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 24px;
  }

  /* Trust Bar */
  .trust-bar {
    padding: 16px 0;
  }

  .trust-bar__inner {
    gap: 10px 24px;
    justify-content: center;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__item {
    font-size: 0.72rem;
    gap: 6px;
  }

  .trust-bar__icon { width: 16px; height: 16px; }
  .trust-bar__icon svg { width: 14px; height: 14px; }
  .trust-bar__stars svg { width: 12px; height: 12px; }

  /* Stats */
  .stats {
    padding: 36px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-item__number {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .stat-item__label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* Services — center on mobile */
  .services {
    text-align: center;
    padding: 60px 0 50px;
  }

  .services .section-label,
  .services .section-title { text-align: center; }
  .services .section-subtitle { text-align: center; margin-left: auto; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card__image {
    aspect-ratio: 16 / 10;
  }

  .service-card__body {
    padding: 18px;
  }

  /* Before/After — center on mobile */
  .before-after {
    padding: 60px 0;
    text-align: center;
  }

  .before-after__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }

  .ba-slider {
    aspect-ratio: 16 / 11;
  }

  /* Gallery */
  .gallery {
    padding: 60px 0 70px;
  }

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

  /* Why Choose Us */
  .why-us {
    padding: 60px 0 50px;
    text-align: center;
  }

  .why-us .section-subtitle { margin-left: auto; }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-us__item {
    padding: 24px 20px;
  }

  .why-us__icon {
    margin: 0 auto 12px;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card__text {
    font-size: 0.88rem;
  }

  /* Social badges */
  .social-proof {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .social-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq__question {
    font-size: 0.9rem;
    padding: 18px 0;
    min-height: 48px;
  }

  .faq__answer p {
    font-size: 0.85rem;
  }

  /* Service Area */
  .service-area {
    padding: 50px 0;
  }

  .service-area__cities {
    gap: 8px;
  }

  .service-area__city {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .service-area__cta {
    font-size: 0.82rem;
  }

  /* Quote */
  .quote {
    padding: 60px 0 80px;
  }

  .quote__form {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .quote__form input,
  .quote__form select,
  .quote__form textarea {
    padding: 12px 14px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  /* Section titles */
  .section-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 2rem;
  }

  .section-label {
    font-size: 0.62rem;
    letter-spacing: 2px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 90px;
  }

  .footer__name { font-size: 1.3rem; }

  /* Sticky Mobile CTA */
  .mobile-cta {
    display: block;
  }

  .mobile-cta__inner {
    gap: 8px;
  }

  .mobile-cta__btn {
    padding: 14px 12px;
    font-size: 0.82rem;
    border-radius: 6px;
  }

  body {
    padding-bottom: 0;
  }

  /* Lightbox */
  .lightbox__nav {
    font-size: 2rem;
    padding: 16px;
    min-width: 48px;
    min-height: 48px;
  }
  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }
  .lightbox__close {
    font-size: 2rem;
    top: 12px;
    right: 12px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox__img {
    border-radius: 6px;
    max-width: 95vw;
  }

  /* Prevent body scroll when lightbox is open on iOS */
  body.lightbox-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero__title { font-size: 1.7rem; }
  .stat-item__number { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .trust-bar__item { font-size: 0.65rem; }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .gallery__item:hover img,
  .gallery__item:focus-visible img {
    transform: none;
  }
}
