:root {
  --color-bg: #f2f2f2;
  --color-surface: #ffffff;
  --color-surface-soft: #f8f8f8;

  --color-primary-50: #fff7ed;
  --color-primary-100: #ffedd5;
  --color-primary-200: #fed7aa;
  --color-primary-300: #fdba74;
  --color-primary-400: #fb923c;
  --color-primary-500: #ac5b0f;
  --color-primary-600: #944b0b;
  --color-primary-700: #783a08;
  --color-primary-800: #5f2e07;
  --color-primary-900: #462608;

  --color-neutral-50: #f7f7f6;
  --color-neutral-100: #ececea;
  --color-neutral-200: #d9d9d6;
  --color-neutral-300: #b9b9b4;
  --color-neutral-400: #8f8f89;
  --color-neutral-500: #6f6f68;
  --color-neutral-600: #555550;
  --color-neutral-700: #3f3f3b;
  --color-neutral-800: #30302e;
  --color-neutral-900: #1f1f1d;

  --color-text: #30302e;
  --color-text-soft: #555550;
  --color-text-muted: #6f6f68;
  --color-text-inverse: #ffffff;
  --color-heading: #30302e;
  --color-heading-accent: #462608;
  --color-border: #d9d9d6;
  --color-border-soft: #ececea;
  --color-border-strong: #b9b9b4;

  --font-primary: 'Manrope', sans-serif;
  --font-heading: 'Sora', sans-serif;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --line-height-tight: 1.1;
  --line-height-heading: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  --letter-tight: -0.03em;
  --letter-normal: 0;
  --letter-wide: 0.04em;
  --letter-wider: 0.08em;
  --letter-logo: 0.12em;

  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1440px;

  --section-padding-y: clamp(4rem, 8vw, 7rem);
  --section-padding-x: clamp(1rem, 4vw, 2rem);

  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 999px;

  --shadow-sm: 0 2px 6px rgba(31, 31, 29, 0.08);
  --shadow-md: 0 8px 20px rgba(31, 31, 29, 0.12);
  --shadow-lg: 0 16px 40px rgba(31, 31, 29, 0.16);
  --shadow-primary: 0 10px 24px rgba(172, 91, 15, 0.24);

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  --z-base: 1;
  --z-dropdown: 50;
  --z-sticky: 100;
  --z-modal: 500;
  --z-overlay: 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: var(--line-height-heading);
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--color-text-soft);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--container-xl));
  margin-inline: auto;
}

.section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary-500);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-primary-500);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-neutral-800);
  border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover {
  background: var(--color-neutral-800);
  color: var(--color-text-inverse);
  border-color: var(--color-neutral-800);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-primary-100);
  color: var(--color-primary-800);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
}

/* =========================
   Header / Navbar
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  padding: 0.95rem 0;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(18, 18, 16, 0.8);
  backdrop-filter: blur(18px);
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  width: min(100% - 3rem, 1420px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(92px, 5.8vw, 118px);
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.55vw, 1.7rem);
}

.nav-link {
  position: relative;
  color: var(--color-text-inverse);
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  opacity: 0.94;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.65rem;
  width: 0;
  height: 2px;
  background: var(--color-text-inverse);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-inverse);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
}

.nav-phone svg {
  width: 17px;
  height: 17px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.9rem;
  border-radius: var(--radius-full);
  background: #8a4207;
  color: var(--color-text-inverse);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: var(--transition-normal);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.nav-cta:hover {
  background: var(--color-primary-500);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-text-inverse);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-neutral-900);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 800ms ease, visibility 800ms ease, transform 1400ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Clear image, readable text, and no fake box over the copy. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.46) 30%,
      rgba(0, 0, 0, 0.22) 58%,
      rgba(0, 0, 0, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.04) 44%,
      rgba(0, 0, 0, 0.32) 100%
    ),
    radial-gradient(
      circle at 28% 54%,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.12) 24%,
      rgba(0, 0, 0, 0) 52%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 3rem, 1420px);
  margin-inline: auto;
  padding-top: clamp(8.9rem, 14vh, 11rem);
  padding-bottom: 4rem;
  color: var(--color-text-inverse);
}

/* No card behind text. Readability comes from the global overlay + text shadow. */
.hero-content::before {
  display: none;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 1.15rem;
  color: #fed7aa;
  font-family: var(--font-primary);
  font-size: clamp(0.72rem, 0.72vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.32);
}

.hero-content h1 {
  max-width: 980px;
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-size: clamp(4.05rem, 5.05vw, 6.05rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: none;
  text-wrap: balance;
  text-shadow:
    1.5px 2px 0 rgba(0, 0, 0, 0.18),
    4px 6px 14px rgba(0, 0, 0, 0.32);
}

.hero-content p {
  max-width: 760px;
  margin-top: 1.65rem;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-primary);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.65;
  text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.34);
}

/* Per-slide title sizing: long slides get wider, not taller. */
.hero-slide:nth-child(1) .hero-content h1 {
  max-width: 870px;
  font-size: clamp(4.15rem, 5vw, 5.75rem);
}

.hero-slide:nth-child(2) .hero-content h1,
.hero-slide:nth-child(3) .hero-content h1 {
  max-width: 1050px;
  font-size: clamp(3.75rem, 4.55vw, 5.45rem);
}

.hero-slide:nth-child(2) .hero-content p,
.hero-slide:nth-child(3) .hero-content p {
  max-width: 780px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 54px;
  padding: 0 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: var(--transition-normal);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
}

.hero-btn-primary {
  background: #934605;
  border: 1px solid #934605;
  color: var(--color-text-inverse);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.hero-btn-primary:hover {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--color-text-inverse);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: var(--color-text-inverse);
  border-color: var(--color-text-inverse);
  color: var(--color-neutral-900);
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
  max-width: 850px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.32);
}

.hero-controls {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 5vw, 3.4rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 58px;
  padding: 0.5rem 0.65rem 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  color: var(--color-text-inverse);
}

.hero-count {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: var(--letter-wide);
}

.hero-progress {
  position: relative;
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.hero-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--color-text-inverse);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-text-inverse);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--color-text-inverse);
  color: var(--color-neutral-900);
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1240px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    z-index: var(--z-dropdown);
    display: grid;
    gap: 0.35rem;
    padding: var(--space-4);
    border-radius: var(--radius-2xl);
    background: rgba(31, 31, 29, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
  }

  .mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    color: var(--color-text-inverse);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: var(--letter-wide);
    text-transform: uppercase;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-phone {
    background: var(--color-primary-500);
    text-align: center;
  }
}

@media (max-width: 900px) {
  .nav-container,
  .hero-content {
    width: min(100% - 2rem, 1420px);
  }

  .brand-logo {
    width: 108px;
  }

  .hero-content {
    padding-top: 7.6rem;
    padding-bottom: 8rem;
  }

  .hero-kicker {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .hero-content h1,
  .hero-slide:nth-child(1) .hero-content h1,
  .hero-slide:nth-child(2) .hero-content h1,
  .hero-slide:nth-child(3) .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .hero-content p {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .hero-buttons {
    margin-top: 1.55rem;
  }

  .hero-btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-tags {
    margin-top: 1.15rem;
  }

  .hero-tags span {
    font-size: 0.68rem;
  }

  .hero-controls {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    justify-content: space-between;
  }

  .hero-progress {
    flex: 1;
  }
}

@media (max-width: 430px) {
  .hero-content h1,
  .hero-slide:nth-child(1) .hero-content h1,
  .hero-slide:nth-child(2) .hero-content h1,
  .hero-slide:nth-child(3) .hero-content h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .hero-kicker {
    max-width: 290px;
  }

  .hero-tags {
    display: none;
  }
}

/* Navbar animation support */
.site-header {
  will-change: transform, background, backdrop-filter;
}

.site-header.nav-hidden {
  pointer-events: none;
}
/* =========================
   About Us
========================= */

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(172, 91, 15, 0.08), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(70, 38, 8, 0.055), transparent 30%),
    linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  right: -8rem;
  top: 7rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(172, 91, 15, 0.06);
  filter: blur(10px);
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
  min-height: 520px;
  max-height: 560px;
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--color-neutral-900);
  box-shadow: 0 24px 64px rgba(31, 31, 29, 0.14);
}

.about-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(31, 31, 29, 0.06) 0%,
    rgba(31, 31, 29, 0.12) 46%,
    rgba(31, 31, 29, 0.68) 100%
  );
  pointer-events: none;
}

.about-image-card::after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.05rem;
  pointer-events: none;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-experience {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  max-width: 220px;
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(20, 20, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.about-experience strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-experience span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.38;
}

.about-content {
  max-width: 630px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--color-primary-500);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 600px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-transform: none;
}

.about-content > p {
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
}

.about-points,
.about-point {
  display: none !important;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.about-btn svg {
  width: 17px;
  height: 17px;
}

.about-btn-primary {
  background: var(--color-primary-500);
  border: 1px solid var(--color-primary-500);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(172, 91, 15, 0.18);
}

.about-btn-primary:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

.about-btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-neutral-900);
}

.about-btn-secondary:hover {
  background: var(--color-neutral-900);
  border-color: var(--color-neutral-900);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image-card,
  .about-image {
    min-height: 420px;
    max-height: none;
  }

  .about-content h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 3.5rem 0;
  }

  .about-container {
    width: min(100% - 1.5rem, 1120px);
    gap: 2rem;
  }

  .about-image-card,
  .about-image {
    min-height: 340px;
  }

  .about-image-card {
    border-radius: 1.25rem;
  }

  .about-image-card::after {
    left: 0.85rem;
    top: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    border-radius: 0.9rem;
  }

  .about-experience {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .about-content h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .about-content > p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }
}

/* =========================
   Services
========================= */

.services-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(172, 91, 15, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  left: -8rem;
  bottom: 6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(70, 38, 8, 0.055);
  filter: blur(12px);
  pointer-events: none;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.services-header h2 {
  max-width: 720px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: none;
}

.services-header p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.service-filter-btn {
  min-height: 38px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-neutral-800);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 220ms ease;
}

.service-filter-btn:hover,
.service-filter-btn.active {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(172, 91, 15, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 217, 214, 0.88);
  box-shadow: 0 12px 30px rgba(31, 31, 29, 0.06);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: rgba(172, 91, 15, 0.08);
  transition: 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(172, 91, 15, 0.32);
  box-shadow: 0 22px 46px rgba(31, 31, 29, 0.1);
}

.service-card:hover::before {
  transform: scale(1.25);
  background: rgba(172, 91, 15, 0.13);
}

.service-card.is-hidden {
  display: none;
}

.service-card-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(172, 91, 15, 0.2);
}

.service-card-icon svg {
  width: 21px;
  height: 21px;
}

.service-card-content {
  position: relative;
  z-index: 2;
  margin-top: 2.2rem;
}

.service-card-content span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--color-primary-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.service-card p {
  margin-top: 0.7rem;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.3rem;
  padding: 1.25rem;
  border-radius: 1.3rem;
  background: var(--color-neutral-900);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(31, 31, 29, 0.12);
}

.services-cta span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-primary-200);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-cta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.services-cta-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.services-cta-btn:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.services-cta-btn svg {
  width: 17px;
  height: 17px;
}

/* =========================
   Clean scrollbar
========================= */

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(172, 91, 15, 0.65) #f2f2f2;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(172, 91, 15, 0.85),
    rgba(70, 38, 8, 0.85)
  );
  border-radius: 999px;
  border: 2px solid #f2f2f2;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(172, 91, 15, 1),
    rgba(70, 38, 8, 1)
  );
}

::-webkit-scrollbar-button {
  display: none;
}

/* =========================
   Services Responsive
========================= */

@media (max-width: 980px) {
  .services-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 3.5rem 0;
  }

  .services-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .services-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .services-header p {
    font-size: 0.95rem;
  }

  .services-filter {
    gap: 0.5rem;
  }

  .service-filter-btn {
    min-height: 36px;
    padding: 0 0.8rem;
    font-size: 0.66rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .services-cta {
    padding: 1rem;
  }

  .services-cta-btn {
    width: 100%;
  }
}

/* =========================
   Service Area
========================= */

.service-area-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(172, 91, 15, 0.1), transparent 25%),
    linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
}

.service-area-section::before {
  content: "";
  position: absolute;
  left: -9rem;
  top: 7rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(70, 38, 8, 0.055);
  filter: blur(12px);
  pointer-events: none;
}

.service-area-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.service-area-content h2 {
  max-width: 620px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.9vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: none;
}

.service-area-content > p {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.area-city {
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-neutral-800);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 220ms ease;
}

.area-city:hover,
.area-city.active {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(172, 91, 15, 0.16);
}

.service-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.service-area-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.service-area-btn svg {
  width: 17px;
  height: 17px;
}

.service-area-btn-primary {
  background: var(--color-primary-500);
  border: 1px solid var(--color-primary-500);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(172, 91, 15, 0.18);
}

.service-area-btn-primary:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

.service-area-btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-neutral-900);
}

.service-area-btn-secondary:hover {
  background: var(--color-neutral-900);
  border-color: var(--color-neutral-900);
  color: #ffffff;
  transform: translateY(-2px);
}

.service-area-map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 1.55rem;
  background: var(--color-neutral-900);
  border: 1px solid rgba(217, 217, 214, 0.85);
  box-shadow: 0 24px 64px rgba(31, 31, 29, 0.14);
}

.service-area-map {
  width: 100%;
  min-height: 560px;
  height: 100%;
  z-index: 1;
}

.service-area-map-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 500;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(31, 31, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.service-area-map-note span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-primary-200);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-area-map-note strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.35;
}

/* Leaflet styling */
.leaflet-container {
  font-family: var(--font-primary);
}

.leaflet-control-attribution {
  font-size: 0.65rem;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.9rem;
  box-shadow: 0 14px 28px rgba(31, 31, 29, 0.18);
}

.leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  color: var(--color-neutral-800);
  font-weight: 700;
}

.service-area-marker {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 999px;
  background: var(--color-primary-500);
  border: 3px solid #ffffff;
  box-shadow: 0 8px 18px rgba(31, 31, 29, 0.28);
}

/* =========================
   Service Area Responsive
========================= */

@media (max-width: 980px) {
  .service-area-container {
    grid-template-columns: 1fr;
  }

  .service-area-content h2 {
    font-size: clamp(2.1rem, 7vw, 3.25rem);
  }

  .service-area-map-card,
  .service-area-map {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .service-area-section {
    padding: 3.5rem 0;
  }

  .service-area-container {
    width: min(100% - 1.5rem, 1180px);
    gap: 2rem;
  }

  .service-area-content h2 {
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .service-area-content > p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .area-city {
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.65rem;
  }

  .service-area-actions {
    flex-direction: column;
  }

  .service-area-btn {
    width: 100%;
  }

  .service-area-map-card,
  .service-area-map {
    min-height: 380px;
    border-radius: 1.25rem;
  }

  .service-area-map-note {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
  }
}

/* =========================
   SERVICE AREA - Smaller + Better Map Style
========================= */

.service-area-section {
  padding: clamp(3.8rem, 6vw, 5.5rem) 0;
}

.service-area-container {
  width: min(100% - 2rem, 1120px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* Texto más controlado */
.service-area-content h2 {
  max-width: 520px;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.service-area-content p {
  max-width: 500px;
  margin-top: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 600;
}

/* Pills de ciudades más pequeñas */
.service-area-cities {
  margin-top: 1.35rem;
  gap: 0.55rem;
}

.service-area-city {
  min-height: 36px;
  padding: 0 0.95rem;
  font-size: 0.68rem;
  border-radius: 999px;
}

/* Botones más compactos */
.service-area-actions {
  margin-top: 1.6rem;
  gap: 0.8rem;
}

.service-area-btn {
  min-height: 48px;
  padding: 0 1.25rem;
  font-size: 0.72rem;
}

/* Mapa más compacto */
.service-area-map-wrap {
  position: relative;
  border-radius: 1.6rem;
  padding: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(242, 242, 242, 0.55)),
    radial-gradient(circle at 30% 20%, rgba(172, 91, 15, 0.16), transparent 35%);
  border: 1px solid rgba(217, 217, 214, 0.9);
  box-shadow:
    0 24px 60px rgba(31, 31, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-area-map {
  height: clamp(360px, 34vw, 460px);
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--color-neutral-100);
  border: 1px solid rgba(31, 31, 29, 0.08);
}

/* Hace que los tiles del mapa se vean más premium */
.service-area-map .leaflet-tile {
  filter: saturate(0.75) contrast(0.95) brightness(1.04);
}

/* Controles de zoom */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 12px 28px rgba(31, 31, 29, 0.18) !important;
}

.leaflet-control-zoom a {
  width: 36px !important;
  height: 36px !important;
  line-height: 34px !important;
  color: var(--color-neutral-900) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(217, 217, 214, 0.9) !important;
  font-family: var(--font-primary) !important;
  font-weight: 800 !important;
}

.leaflet-control-zoom a:hover {
  background: var(--color-primary-500) !important;
  color: #ffffff !important;
}

/* Popup */
.leaflet-popup-content-wrapper {
  border-radius: 0.9rem !important;
  box-shadow: 0 16px 34px rgba(31, 31, 29, 0.18) !important;
}

.leaflet-popup-content {
  margin: 0.75rem 0.9rem !important;
  font-family: var(--font-primary) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--color-neutral-900) !important;
}

.leaflet-popup-tip {
  background: #ffffff !important;
}

/* Attribution más discreto */
.leaflet-control-attribution {
  padding: 0.2rem 0.45rem !important;
  border-radius: 999px 0 0 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.62rem !important;
}

/* Caja flotante dentro del mapa */
.service-area-map-label {
  left: 1.4rem;
  bottom: 1.4rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(31, 31, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.service-area-map-label span {
  font-size: 0.68rem;
}

.service-area-map-label strong {
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 980px) {
  .service-area-container {
    grid-template-columns: 1fr;
  }

  .service-area-content h2 {
    max-width: 720px;
    font-size: clamp(2.25rem, 7vw, 3.6rem);
  }

  .service-area-content p {
    max-width: 680px;
  }

  .service-area-map {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .service-area-section {
    padding: 3.2rem 0;
  }

  .service-area-container {
    width: min(100% - 1.5rem, 1120px);
  }

  .service-area-content h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .service-area-content p {
    font-size: 0.94rem;
  }

  .service-area-map {
    height: 340px;
  }

  .service-area-actions {
    flex-direction: column;
  }

  .service-area-btn {
    width: 100%;
  }
}

/* =========================
   Gallery
========================= */

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(172, 91, 15, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.gallery-section::before {
  content: "";
  position: absolute;
  right: -9rem;
  top: 6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(70, 38, 8, 0.055);
  filter: blur(12px);
  pointer-events: none;
}

.gallery-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.gallery-header h2 {
  max-width: 720px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.gallery-header p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--color-neutral-900);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.08);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.62) 100%);
  opacity: 0.86;
  transition: opacity 260ms ease;
}

.gallery-item span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.02);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.gallery-open-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  border: 1px solid var(--color-primary-500);
  background: var(--color-primary-500);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.2);
  transition: 220ms ease;
}

.gallery-open-btn:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

.gallery-open-btn svg {
  width: 18px;
  height: 18px;
}

.gallery-modal,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 240ms ease;
}

.gallery-modal.is-open,
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-modal-panel {
  position: absolute;
  inset: 1.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #f7f7f6;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-soft);
}

.gallery-modal-header span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--color-primary-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-modal-header strong {
  display: block;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.05em;
}

.gallery-modal-close,
.gallery-lightbox-close,
.gallery-lightbox-arrow {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.gallery-modal-close {
  width: 44px;
  height: 44px;
  background: var(--color-neutral-900);
  color: #ffffff;
}

.gallery-modal-close svg,
.gallery-lightbox-close svg,
.gallery-lightbox-arrow svg {
  width: 19px;
  height: 19px;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  overflow: auto;
}

.gallery-modal-grid button {
  height: 190px;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-neutral-900);
  cursor: pointer;
}

.gallery-modal-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.gallery-modal-grid button:hover img {
  transform: scale(1.07);
}

.gallery-lightbox {
  display: grid;
  place-items: center;
  background: rgba(8, 8, 7, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  border-radius: 1.1rem;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: var(--color-neutral-900);
}

.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-neutral-900);
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 1.25rem;
}

.gallery-lightbox-next {
  right: 1.25rem;
}

@media (max-width: 980px) {
  .gallery-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .gallery-grid {
    grid-auto-rows: 190px;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 3.5rem 0;
  }

  .gallery-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .gallery-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .gallery-header p {
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-modal-panel {
    inset: 0.65rem;
    border-radius: 1.25rem;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-modal-grid button {
    height: 220px;
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

/* =========================
   GALLERY - Premium Bento Layout
========================= */

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(172, 91, 15, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.gallery-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.gallery-header h2 {
  max-width: 680px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.gallery-header p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

/* Grid principal */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 155px;
  gap: 1rem;
}

/* Card base */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--color-neutral-900);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.1);
  isolation: isolate;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.56) 100%
    );
  opacity: 1;
  transition: 240ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  z-index: 3;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: scale(0.98);
  transition: 240ms ease;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(31, 31, 29, 0.16);
}

.gallery-item:hover::before {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.04) 45%,
      rgba(0, 0, 0, 0.44) 100%
    );
}

.gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Etiqueta */
.gallery-item span,
.gallery-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(31, 31, 29, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* Acomodo bento de 12 fotos */
.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(7) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(8) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item:nth-child(9) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(10) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(11) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item:nth-child(12) {
  grid-column: span 3;
  grid-row: span 1;
}

/* Botón debajo */
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-btn,
.gallery-open-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  border: 1px solid var(--color-primary-500);
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.2);
  transition: 220ms ease;
}

.gallery-btn:hover,
.gallery-open-btn:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

/* =========================
   Gallery Modal / Lightbox polish
========================= */

.gallery-modal,
.gallery-lightbox {
  backdrop-filter: blur(14px);
}

.gallery-modal-content,
.gallery-lightbox-content {
  border-radius: 1.5rem;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-modal-grid .gallery-item {
  min-height: 190px;
}

/* Responsive */
@media (max-width: 980px) {
  .gallery-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 6;
    grid-row: span 2;
  }

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

@media (max-width: 640px) {
  .gallery-section {
    padding: 3.5rem 0;
  }

  .gallery-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .gallery-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .gallery-header p {
    font-size: 0.94rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.85rem;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    aspect-ratio: 4 / 3;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-btn,
  .gallery-open-btn {
    width: 100%;
  }
}

.gallery-item span,
.gallery-label {
  display: none !important;
}

/* =========================
   GALLERY - Irregular Clean Layout
========================= */

.gallery-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(172, 91, 15, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.gallery-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 82px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #1f1f1d;
  box-shadow: 0 14px 30px rgba(31, 31, 29, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 31, 29, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* overlay suave, sin pills */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.14) 100%
  );
  pointer-events: none;
}

/* ocultar pills si siguen en el HTML */
.gallery-item span,
.gallery-label {
  display: none !important;
}

/* =========================
   Irregular pattern - 12 photos
========================= */

.gallery-item:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: span 4;
}

.gallery-item:nth-child(2) {
  grid-column: 6 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: 6 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: 9 / span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: 1 / span 5;
  grid-row: span 4;
}

.gallery-item:nth-child(7) {
  grid-column: 6 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(8) {
  grid-column: 9 / span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(9) {
  grid-column: 6 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(10) {
  grid-column: 9 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(11) {
  grid-column: 1 / span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(12) {
  grid-column: 4 / span 3;
  grid-row: span 2;
}

/* =========================
   Button area
========================= */

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-btn,
.gallery-open-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  border: 1px solid var(--color-primary-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.18);
}

.gallery-btn:hover,
.gallery-open-btn:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

/* =========================
   Tablet
========================= */

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 95px;
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / span 6;
    grid-row: span 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: 1 / span 3;
    grid-row: span 2;
  }

  .gallery-item:nth-child(3) {
    grid-column: 4 / span 3;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / span 3;
    grid-row: span 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: 4 / span 3;
    grid-row: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-column: 1 / span 6;
    grid-row: span 3;
  }

  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(12) {
    grid-column: span 3;
    grid-row: span 2;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 640px) {
  .gallery-section {
    padding: 3.5rem 0;
  }

  .gallery-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.9rem;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-btn,
  .gallery-open-btn {
    width: 100%;
  }
}

/* =========================
   Reviews
========================= */

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(172, 91, 15, 0.08), transparent 26%),
    radial-gradient(circle at 92% 70%, rgba(70, 38, 8, 0.055), transparent 30%),
    linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
}

.reviews-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.6rem;
}

.reviews-header h2 {
  max-width: 720px;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.reviews-header p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 217, 214, 0.88);
  box-shadow: 0 12px 30px rgba(31, 31, 29, 0.06);
}

.reviews-summary-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-primary-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-summary strong {
  display: block;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.reviews-summary-stars,
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  color: var(--color-primary-500);
}

.reviews-summary-stars svg,
.review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 2.4;
}

.reviews-summary-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--color-primary-100);
  color: var(--color-primary-800);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 217, 214, 0.9);
  box-shadow: 0 12px 30px rgba(31, 31, 29, 0.06);
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -0.7rem;
  color: rgba(172, 91, 15, 0.1);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(172, 91, 15, 0.28);
  box-shadow: 0 20px 44px rgba(31, 31, 29, 0.1);
}

.review-card-featured {
  grid-column: span 2;
}

.review-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  background: var(--color-neutral-200);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(31, 31, 29, 0.12);
}

.review-card h3 {
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.review-card-header span {
  display: block;
  margin-top: 0.18rem;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.review-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 0.85rem;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  border: 1px solid var(--color-primary-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.18);
  transition: 220ms ease;
}

.reviews-btn:hover {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  transform: translateY(-2px);
}

.reviews-btn svg {
  width: 17px;
  height: 17px;
}

/* =========================
   Reviews Responsive
========================= */

@media (max-width: 980px) {
  .reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .review-card-featured {
    grid-column: span 1;
  }

  .reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 3.5rem 0;
  }

  .reviews-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .reviews-header h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .reviews-header p {
    font-size: 0.94rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .reviews-btn {
    width: 100%;
  }
}

/* =========================
   Reviews Carousel Override
========================= */

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.reviews-track-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 300px;
}

.reviews-grid {
  display: none;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 217, 214, 0.9);
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.07);
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -0.8rem;
  color: rgba(172, 91, 15, 0.1);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(172, 91, 15, 0.28);
  box-shadow: 0 20px 44px rgba(31, 31, 29, 0.1);
}

.review-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  background: var(--color-neutral-200);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(31, 31, 29, 0.12);
}

.review-card h3 {
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.review-card-header span {
  display: block;
  margin-top: 0.18rem;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.review-stars {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  margin-bottom: 0.85rem;
  color: var(--color-primary-500);
}

.review-stars svg,
.reviews-summary-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 2.4;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}

.reviews-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-neutral-900);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 31, 29, 0.08);
  transition: 220ms ease;
}

.reviews-arrow:hover {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #ffffff;
  transform: translateY(-2px);
}

.reviews-arrow svg {
  width: 19px;
  height: 19px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-neutral-300);
  cursor: pointer;
  transition: 220ms ease;
}

.reviews-dot.active {
  width: 26px;
  background: var(--color-primary-500);
}

@media (max-width: 980px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-track .review-card {
    flex-basis: 100%;
  }

  .review-card {
    min-height: auto;
  }
}


/* Reviews summary without count pill */
.reviews-summary {
  justify-content: space-between;
}

.reviews-summary > div:first-child {
  flex: 1;
}

.reviews-summary-stars {
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .reviews-summary {
    align-items: flex-start;
  }

  .reviews-summary-stars {
    justify-content: flex-start;
  }
}

/* =========================
   REVIEWS - Infinite carousel fix
========================= */

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Espacio vertical para que las cards no se corten */
.reviews-track-wrap {
  overflow: hidden;
  padding: 1.2rem 0 1.6rem;
  margin: -1.2rem 0 -1.6rem;
  border-radius: 1.5rem;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 300px;
}

/* Card más limpia */
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 217, 214, 0.95);
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
  overflow: hidden;
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -0.9rem;
  color: rgba(172, 91, 15, 0.1);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.review-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  background: var(--color-neutral-200);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(31, 31, 29, 0.12);
}

.review-card h3 {
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.review-card-header span {
  display: block;
  margin-top: 0.18rem;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.review-stars {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  margin-bottom: 0.85rem;
  color: var(--color-primary-500);
}

.review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke-width: 2.4;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}

/* Arrows */
.reviews-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-neutral-900);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 31, 29, 0.08);
  transition: 220ms ease;
}

.reviews-arrow:hover {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #ffffff;
  transform: translateY(-2px);
}

.reviews-arrow svg {
  width: 19px;
  height: 19px;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--color-neutral-300);
  cursor: pointer;
  transition: 220ms ease;
}

.reviews-dot.active {
  width: 26px;
  background: var(--color-primary-500);
}

/* Quita el número/count de arriba si todavía existe */
.reviews-summary-count {
  display: none !important;
}

.reviews-summary {
  justify-content: space-between;
}

/* Tablet */
@media (max-width: 980px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .reviews-track .review-card {
    flex-basis: 100%;
  }

  .review-card {
    min-height: auto;
  }
}
/* =========================
   Contact Quote Page
========================= */

.contact-body {
  background: #f2f2f2;
}

.contact-page-header .nav-link,
.contact-page-header .nav-phone {
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.mobile-estimate {
  background: var(--color-primary-500);
  text-align: center;
}

.contact-hero-page {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--contact-hero-image);
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.36) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  padding-top: 7rem;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fed7aa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.contact-hero-inner h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-shadow: 2px 5px 18px rgba(0, 0, 0, 0.34);
}

.contact-hero-inner p {
  max-width: 720px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 1px 3px 12px rgba(0, 0, 0, 0.32);
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(172, 91, 15, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.quote-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.quote-copy h2 {
  max-width: 540px;
  color: var(--color-neutral-900);
  font-size: clamp(2.45rem, 4.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.quote-copy > p {
  max-width: 560px;
  margin-top: 1.25rem;
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.quote-expect-card,
.quote-call-card {
  margin-top: 1.6rem;
  padding: 1.35rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 217, 214, 0.95);
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.06);
}

.quote-expect-card h3 {
  color: var(--color-neutral-900);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.quote-expect-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-text-soft);
  font-weight: 600;
  line-height: 1.5;
}

.quote-expect-card li::marker {
  color: var(--color-primary-500);
}

.quote-call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quote-call-card span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-call-card strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.quote-call-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-call-card a svg {
  width: 17px;
  height: 17px;
}

.quote-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 217, 214, 0.95);
  box-shadow: 0 24px 64px rgba(31, 31, 29, 0.1);
}

.quote-form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.quote-form-status.is-visible {
  display: block;
}

.quote-form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #166534;
}

.quote-form-status.is-invalid,
.quote-form-status.is-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #991b1b;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-field {
  display: grid;
  gap: 0.45rem;
}

.quote-field span,
.quote-services legend {
  color: var(--color-neutral-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-neutral-900);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: 180ms ease;
}

.quote-field textarea {
  min-height: 160px;
  padding-top: 1rem;
  resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: rgba(172, 91, 15, 0.65);
  box-shadow: 0 0 0 4px rgba(172, 91, 15, 0.12);
}

.quote-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.15rem 0;
  padding: 0;
  border: 0;
}

.quote-services legend {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
}

.quote-services label {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-radius: 0.95rem;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-soft);
  color: var(--color-neutral-900);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.quote-services input {
  width: 17px;
  height: 17px;
  accent-color: var(--color-primary-500);
}

.quote-message {
  margin-top: 0.4rem;
}

.quote-submit {
  min-height: 56px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.2);
  transition: 220ms ease;
}

.quote-submit:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.quote-submit svg {
  width: 18px;
  height: 18px;
}

/* =========================
   Footer
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(172, 91, 15, 0.16), transparent 30%),
    linear-gradient(135deg, #1f1f1d 0%, #30302e 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.25rem;
}

.footer-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.footer-logo {
  width: 145px;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-brand-block p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition: 220ms ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-2px);
}

.footer-social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social-tiktok:hover {
  background: #111111;
  border-color: #111111;
}

.footer-links-block h3,
.footer-contact-block h3 {
  margin: 0 0 1rem;
  color: #fed7aa;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.footer-links-block,
.footer-contact-block {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-links-block a,
.footer-contact-item {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  transition: 180ms ease;
}

.footer-links-block a:hover,
.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 0.14rem;
  color: var(--color-primary-300);
  flex-shrink: 0;
}

.footer-estimate-btn {
  min-height: 46px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.footer-estimate-btn:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.footer-bottom {
  width: min(100% - 2rem, 1180px);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-powered {
  color: rgba(255, 255, 255, 0.72);
}

.footer-powered strong {
  color: #fed7aa;
}

@media (max-width: 980px) {
  .contact-hero-page {
    min-height: 62vh;
  }

  .quote-container {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .contact-hero-page {
    min-height: 68vh;
  }

  .contact-hero-inner {
    padding-top: 6rem;
  }

  .contact-hero-inner h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .quote-section {
    padding: 3.5rem 0;
  }

  .quote-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .quote-form-grid,
  .quote-services {
    grid-template-columns: 1fr;
  }

  .quote-call-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-call-card a {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-estimate-btn {
    width: 100%;
  }
}

/* =========================================================
   HOME CONTACT CTA + FOOTER POLISH
   This block intentionally overrides the older CTA/footer rules.
========================================================= */

.contact-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(172, 91, 15, 0.09), transparent 26%),
    radial-gradient(circle at 92% 72%, rgba(70, 38, 8, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.contact-cta-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.contact-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3.5vw, 3rem);
  border-radius: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(31, 31, 29, 0.98), rgba(48, 48, 46, 0.96)),
    radial-gradient(circle at 15% 20%, rgba(172, 91, 15, 0.3), transparent 35%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 75px rgba(31, 31, 29, 0.2);
  color: #ffffff;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 10%, rgba(172, 91, 15, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 48%);
}

.contact-cta-content,
.contact-cta-action {
  position: relative;
  z-index: 2;
}

.contact-cta-content .section-kicker {
  color: var(--color-primary-200);
  margin-bottom: 0.9rem;
}

.contact-cta-content h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.contact-cta-content > p {
  max-width: 760px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.72;
}

.contact-cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-info-item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.78rem;
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-info-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
}

.contact-info-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
}

.contact-info-item small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.32;
}

.contact-cta-action {
  align-self: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  color: var(--color-neutral-900);
}

.contact-cta-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0 0.78rem;
  border-radius: 999px;
  background: var(--color-primary-100);
  color: var(--color-primary-800);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-cta-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-cta-action h3 {
  max-width: 360px;
  margin-top: 1.25rem;
  color: var(--color-neutral-900);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-cta-action p {
  margin-top: 0.9rem;
  color: var(--color-text-soft);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.65;
}

.contact-cta-btn {
  min-height: 52px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.35rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(172, 91, 15, 0.22);
  transition: 220ms ease;
}

.contact-cta-btn:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.contact-cta-btn svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 1040px) {
  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .contact-cta-action {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-cta-section {
    padding: 3.3rem 0;
  }

  .contact-cta-container {
    width: min(100% - 1.4rem, 1180px);
  }

  .contact-cta-card {
    padding: 1rem;
  }

  .contact-cta-content h2 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .contact-cta-info {
    grid-template-columns: 1fr;
    margin-top: 1.4rem;
  }

  .contact-cta-action {
    padding: 1rem;
  }

  .contact-cta-btn {
    width: 100%;
  }
}

/* Footer aligned to the current HTML used by index.html and contact.html */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(172, 91, 15, 0.18), transparent 31%),
    linear-gradient(135deg, #1f1f1d 0%, #30302e 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.25rem;
}

.site-footer .footer-container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.75fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.footer-logo,
.footer-brand img {
  width: 155px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.1rem;
}

.footer-brand-block p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.72;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.footer-socials a,
.footer-social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: 220ms ease;
}

.footer-socials a:hover,
.footer-social:hover {
  transform: translateY(-2px);
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
}

.footer-socials svg,
.footer-social svg,
.footer-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-block h3,
.footer-contact-block h3,
.footer-column h3 {
  margin: 0 0 1rem;
  color: #fed7aa;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links-block,
.footer-contact-block,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.footer-links-block a,
.footer-column a,
.footer-contact-item,
.footer-contact-link,
.footer-contact-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  transition: 180ms ease;
}

.footer-links-block a:hover,
.footer-column a:hover,
.footer-contact-link:hover,
.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item svg,
.footer-contact-link svg,
.footer-contact-text svg {
  width: 16px;
  height: 16px;
  margin-top: 0.12rem;
  color: var(--color-primary-300);
  flex-shrink: 0;
}

.footer-estimate-btn {
  min-height: 46px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0 1.12rem;
  border-radius: 999px;
  background: var(--color-primary-500);
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 220ms ease;
}

.footer-estimate-btn:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
}

.footer-bottom {
  width: min(100% - 2rem, 1180px);
  margin: 2.4rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-powered strong {
  color: #fed7aa;
}

.footer-bottom-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .site-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-logo,
  .footer-brand img {
    width: 135px;
  }

  .footer-estimate-btn {
    width: 100%;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================
   FINAL CLEANUP - Reviews spacing + clean section backgrounds
   Requested changes: roomier review cards and no background blobs.
========================================================= */

/* Remove the soft radial blobs from the main page sections without touching hero photo overlays. */
.about-section,
.services-section,
.service-area-section,
.gallery-section,
.reviews-section,
.quote-section,
.contact-cta-section {
  background-image: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%) !important;
  background-color: #ffffff !important;
}

.about-section::before,
.services-section::before,
.service-area-section::before,
.gallery-section::before,
.reviews-section::before,
.quote-section::before,
.contact-cta-section::before {
  display: none !important;
  content: none !important;
}

/* Keep alternating sections subtle, but clean. No floating blobs, no weird beige UFOs. */
.about-section,
.gallery-section,
.contact-cta-section {
  background-image: linear-gradient(180deg, #f5f5f3 0%, #ffffff 100%) !important;
}

.services-section,
.service-area-section,
.reviews-section,
.quote-section {
  background-image: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%) !important;
}

/* Reviews section: more air before/after, so the carousel stops looking smashed into the next block. */
.reviews-section {
  padding: clamp(5rem, 8vw, 7.25rem) 0 clamp(5.25rem, 8vw, 7.5rem) !important;
  overflow: hidden;
}

.reviews-container {
  width: min(100% - 2.5rem, 1160px) !important;
}

.reviews-header {
  gap: clamp(2rem, 5vw, 4.5rem) !important;
  margin-bottom: clamp(1.75rem, 3vw, 2.6rem) !important;
}

.reviews-header h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 5rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em;
}

.reviews-header p {
  max-width: 430px;
  margin-left: auto;
}

.reviews-summary {
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem) !important;
  padding: 1.15rem 1.35rem !important;
  border-radius: 1.35rem !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.065) !important;
}

.reviews-carousel {
  gap: clamp(1rem, 2vw, 1.5rem) !important;
  margin-top: 0 !important;
}

.reviews-track-wrap {
  padding: 1.45rem 0 1.9rem !important;
  margin: -1.45rem 0 -1.9rem !important;
  border-radius: 1.75rem !important;
}

.reviews-track {
  gap: 1.35rem !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2.7rem) / 3) !important;
  min-height: 320px !important;
}

.review-card {
  padding: clamp(1.25rem, 2vw, 1.6rem) !important;
  border-radius: 1.45rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(217, 217, 214, 0.95) !important;
  box-shadow: 0 18px 42px rgba(31, 31, 29, 0.075) !important;
}

.review-card::before {
  right: 1.25rem !important;
  top: -0.8rem !important;
  color: rgba(172, 91, 15, 0.08) !important;
  font-size: 7.4rem !important;
}

.review-card-header {
  gap: 0.95rem !important;
  margin-bottom: 1.05rem !important;
}

.review-avatar {
  width: 54px !important;
  height: 54px !important;
}

.review-card h3 {
  font-size: 1.02rem !important;
}

.review-card-header span {
  font-size: 0.78rem !important;
}

.review-stars {
  margin-bottom: 1rem !important;
  gap: 0.22rem !important;
}

.review-stars svg,
.reviews-summary-stars svg {
  width: 18px !important;
  height: 18px !important;
}

.review-card p {
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
}

.reviews-arrow {
  width: 52px !important;
  height: 52px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 30px rgba(31, 31, 29, 0.1) !important;
}

.reviews-dots {
  margin-top: 1.35rem !important;
}

.reviews-actions {
  margin-top: 2.35rem !important;
}

/* Clean the map and CTA internal radial accents too, because apparently even cards started growing decorative planets. */
.service-area-map-wrap {
  background: #ffffff !important;
}

.contact-cta-card {
  background: linear-gradient(135deg, rgba(31, 31, 29, 0.98), rgba(48, 48, 46, 0.96)) !important;
}

.contact-cta-card::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 980px) {
  .reviews-container {
    width: min(100% - 2rem, 1160px) !important;
  }

  .reviews-header p {
    max-width: 640px;
    margin-left: 0;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1.35rem) / 2) !important;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 4rem 0 4.5rem !important;
  }

  .reviews-container {
    width: min(100% - 1.35rem, 1160px) !important;
  }

  .reviews-header {
    margin-bottom: 1.6rem !important;
  }

  .reviews-summary {
    margin-bottom: 1.2rem !important;
  }

  .reviews-track .review-card {
    flex-basis: 100% !important;
    min-height: auto !important;
  }

  .review-card {
    padding: 1.2rem !important;
  }
}

/* =========================================================
   REVIEWS FINAL POLISH
   Cleaner Facebook-review cards with balanced spacing.
========================================================= */

.reviews-section {
  padding: clamp(4.25rem, 6vw, 5.75rem) 0 clamp(4.5rem, 6vw, 6rem) !important;
  background: #ffffff !important;
}

.reviews-container {
  width: min(100% - 2rem, 1160px) !important;
}

.reviews-summary {
  margin: 0 0 clamp(2.25rem, 4vw, 3.75rem) !important;
  padding: 1.15rem 1.35rem !important;
  border-radius: 1.15rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(217, 217, 214, 0.95) !important;
  box-shadow: 0 18px 45px rgba(31, 31, 29, 0.08) !important;
}

.reviews-summary-label {
  margin-bottom: 0.2rem !important;
  color: var(--color-primary-500) !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.12em !important;
}

.reviews-summary strong {
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  letter-spacing: -0.045em !important;
}

.reviews-carousel {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) 54px !important;
  align-items: center !important;
  column-gap: clamp(1rem, 2vw, 1.5rem) !important;
  margin-top: 0 !important;
}

.reviews-track-wrap {
  overflow: hidden !important;
  padding: 0.35rem 0 0.45rem !important;
  margin: -0.35rem 0 -0.45rem !important;
  border-radius: 1.45rem !important;
}

.reviews-track {
  display: flex !important;
  gap: clamp(1.25rem, 2vw, 1.55rem) !important;
  align-items: stretch !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - (clamp(1.25rem, 2vw, 1.55rem) * 2)) / 3) !important;
  min-width: 0 !important;
  min-height: 300px !important;
}

.review-card {
  padding: 1.55rem 1.6rem 1.65rem !important;
  border-radius: 1.25rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(217, 217, 214, 0.98) !important;
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.075) !important;
  overflow: hidden !important;
}

.review-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 46px rgba(31, 31, 29, 0.11) !important;
}

.review-card::before {
  right: 1.15rem !important;
  top: -0.7rem !important;
  font-size: 6.7rem !important;
  color: rgba(172, 91, 15, 0.075) !important;
}

.review-card-header {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 0.95rem !important;
  margin-bottom: 1.05rem !important;
}

.review-avatar {
  width: 52px !important;
  height: 52px !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 9px 18px rgba(31, 31, 29, 0.14) !important;
}

.review-card h3 {
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
}

.review-card-header span {
  margin-top: 0.28rem !important;
  font-size: 0.77rem !important;
  line-height: 1.2 !important;
}

.review-stars {
  margin-bottom: 1.05rem !important;
  gap: 0.22rem !important;
}

.review-stars svg,
.reviews-summary-stars svg {
  width: 18px !important;
  height: 18px !important;
}

.review-card p {
  margin: 0 !important;
  max-width: 32ch !important;
  color: #55534f !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  line-height: 1.62 !important;
}

.reviews-arrow {
  position: static !important;
  width: 52px !important;
  height: 52px !important;
  background: #ffffff !important;
  border: 1px solid rgba(217, 217, 214, 0.96) !important;
  box-shadow: 0 14px 30px rgba(31, 31, 29, 0.1) !important;
}

.reviews-dots {
  margin-top: 1.45rem !important;
}

.reviews-actions {
  margin-top: 2.25rem !important;
}

@media (max-width: 980px) {
  .reviews-carousel {
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
    column-gap: 0.9rem !important;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1.25rem) / 2) !important;
    min-height: 290px !important;
  }
}

@media (max-width: 640px) {
  .reviews-container {
    width: min(100% - 1.25rem, 1160px) !important;
  }

  .reviews-summary {
    align-items: flex-start !important;
    gap: 0.85rem !important;
    margin-bottom: 1.65rem !important;
  }

  .reviews-carousel {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .reviews-arrow {
    display: none !important;
  }

  .reviews-track .review-card {
    flex-basis: 100% !important;
    min-height: auto !important;
  }

  .review-card {
    padding: 1.35rem !important;
  }

  .review-card p {
    max-width: none !important;
  }
}

/* =========================================================
   REVIEWS CARD LENGTH ADJUSTMENT
   Make review cards slightly taller / more elongated.
========================================================= */

.reviews-container {
  width: min(100% - 1.75rem, 1200px) !important;
}

.reviews-track {
  align-items: stretch !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2.4rem) / 3) !important;
  min-height: 370px !important;
}

.review-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 1.7rem 1.6rem 1.9rem !important;
}

.review-card-header {
  margin-bottom: 1.15rem !important;
}

.review-stars {
  margin-bottom: 1.15rem !important;
}

.review-card p {
  flex: 1 1 auto !important;
  max-width: 33ch !important;
  line-height: 1.68 !important;
}

@media (max-width: 980px) {
  .reviews-track .review-card {
    flex-basis: calc((100% - 1.25rem) / 2) !important;
    min-height: 350px !important;
  }
}

@media (max-width: 640px) {
  .reviews-container {
    width: min(100% - 1.25rem, 1200px) !important;
  }

  .reviews-track .review-card {
    min-height: auto !important;
  }

  .review-card {
    padding: 1.45rem 1.3rem 1.6rem !important;
  }

  .review-card p {
    max-width: none !important;
  }
}

/* =========================================================
   REVIEWS CONTAINER CLIPPING FIX
   The wrapper was visually cutting the cards at the bottom.
========================================================= */

.reviews-carousel {
  align-items: start !important;
}

.reviews-track-wrap {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  padding: 0.4rem 0 1.25rem !important;
  margin: -0.25rem 0 0 !important;
  border-radius: 0 !important;
}

.reviews-track {
  padding-bottom: 0.15rem !important;
}

.reviews-track .review-card {
  min-height: 370px !important;
}

.review-card {
  height: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 980px) {
  .reviews-track-wrap {
    padding-bottom: 1rem !important;
  }

  .reviews-track .review-card {
    min-height: 350px !important;
  }
}

@media (max-width: 640px) {
  .reviews-track-wrap {
    overflow: visible !important;
    padding-bottom: 0.65rem !important;
    margin: 0 !important;
  }
}

/* =========================================================
   REVIEWS FINAL TUNE-UP
   - remove internal scroll bar
   - make cards less oversized
   - improve spacing/padding
   - vertically center name/date block
========================================================= */

.reviews-section {
  padding: clamp(4rem, 6vw, 5.25rem) 0 clamp(4.25rem, 6vw, 5.75rem) !important;
}

.reviews-container {
  width: min(100% - 2.25rem, 1180px) !important;
}

.reviews-summary {
  margin-bottom: 2.6rem !important;
}

.reviews-carousel {
  grid-template-columns: 56px minmax(0, 1fr) 56px !important;
  column-gap: 1.45rem !important;
  align-items: center !important;
}

.reviews-track-wrap {
  overflow: hidden !important;
  padding: 0.7rem 0 1rem !important;
  margin: 0 !important;
  border-radius: 1.5rem !important;
}

.reviews-track {
  gap: 1.4rem !important;
  padding: 0.1rem 0 !important;
  align-items: stretch !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2.8rem) / 3) !important;
  min-height: 0 !important;
}

.review-card {
  height: auto !important;
  min-height: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 1.75rem 1.65rem 1.7rem !important;
  border-radius: 1.35rem !important;
}

.review-card-header {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 1rem !important;
  margin-bottom: 1rem !important;
}

.review-card-header > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0 !important;
}

.review-avatar {
  width: 54px !important;
  height: 54px !important;
}

.review-card h3 {
  font-size: 0.98rem !important;
  line-height: 1.1 !important;
}

.review-card-header span {
  margin-top: 0.32rem !important;
  font-size: 0.76rem !important;
  line-height: 1.2 !important;
  display: block !important;
}

.review-stars {
  margin-bottom: 1rem !important;
}

.review-card p {
  flex: 1 1 auto !important;
  max-width: 30ch !important;
  font-size: 0.97rem !important;
  line-height: 1.62 !important;
}

.reviews-arrow {
  width: 54px !important;
  height: 54px !important;
}

.reviews-dots {
  margin-top: 1.1rem !important;
}

.reviews-actions {
  margin-top: 1.9rem !important;
}

@media (max-width: 980px) {
  .reviews-container {
    width: min(100% - 1.6rem, 1180px) !important;
  }

  .reviews-carousel {
    grid-template-columns: 50px minmax(0, 1fr) 50px !important;
    column-gap: 1rem !important;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1.4rem) / 2) !important;
  }

  .review-card {
    min-height: 295px !important;
    padding: 1.6rem 1.45rem !important;
  }
}

@media (max-width: 640px) {
  .reviews-container {
    width: min(100% - 1.1rem, 1180px) !important;
  }

  .reviews-track-wrap {
    padding: 0.35rem 0 0.65rem !important;
    border-radius: 0 !important;
  }

  .reviews-track .review-card {
    flex-basis: 100% !important;
  }

  .review-card {
    min-height: auto !important;
    padding: 1.35rem 1.2rem 1.45rem !important;
  }

  .review-card p {
    max-width: none !important;
  }
}

/* =========================================================
   REVIEWS BOTTOM BREATHING ROOM FIX
   Cards were too close to the lower edge / dots area.
========================================================= */

.reviews-carousel {
  margin-bottom: 0.5rem !important;
}

.reviews-track-wrap {
  padding-top: 0.7rem !important;
  padding-bottom: 2rem !important;
  margin-bottom: 0.35rem !important;
}

.reviews-track {
  padding-bottom: 0.45rem !important;
}

.review-card {
  box-shadow: 0 16px 32px rgba(31, 31, 29, 0.08) !important;
}

.reviews-dots {
  margin-top: 1.45rem !important;
}

.reviews-actions {
  margin-top: 2.15rem !important;
}

@media (max-width: 980px) {
  .reviews-track-wrap {
    padding-bottom: 1.65rem !important;
  }
}

@media (max-width: 640px) {
  .reviews-track-wrap {
    padding-bottom: 1.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .reviews-dots {
    margin-top: 1.15rem !important;
  }
}

/* =========================================================
   REVIEWS ALIGNMENT + LOOP VERSION
========================================================= */

.reviews-track {
  align-items: stretch !important;
  transition: transform 0.45s ease !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2.8rem) / 3) !important;
}

.review-card {
  height: 340px !important;
  min-height: 340px !important;
  margin: 0 !important;
  padding: 1.65rem 1.65rem 1.55rem !important;
}

.review-card h3 {
  margin: 0 !important;
}

.review-card-header {
  align-items: center !important;
}

.review-card-header > div {
  min-height: 54px !important;
  justify-content: center !important;
}

.review-card-header span {
  margin-top: 0.25rem !important;
}

.review-card p {
  max-width: 29ch !important;
}

@media (max-width: 980px) {
  .reviews-track .review-card {
    flex-basis: calc((100% - 1.4rem) / 2) !important;
  }

  .review-card {
    height: 330px !important;
    min-height: 330px !important;
    padding: 1.55rem 1.45rem !important;
  }
}

@media (max-width: 640px) {
  .review-card {
    height: auto !important;
    min-height: auto !important;
  }
}

/* =========================================================
   REVIEWS ARROW HOVER FIX
   Keep the icon visible on hover.
========================================================= */

.reviews-arrow {
  color: #1f1f1d !important;
}

.reviews-arrow svg,
.reviews-arrow i,
.reviews-arrow [data-lucide] {
  color: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0 !important;
}

.reviews-arrow:hover {
  background: #ffffff !important;
  border-color: #1f1f1d !important;
  color: #1f1f1d !important;
}

.reviews-arrow:hover svg,
.reviews-arrow:hover i,
.reviews-arrow:hover [data-lucide] {
  color: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
}

/* =========================================================
   REVIEWS CONSISTENT TOP ALIGN FIX
   Force all cards to share the same top edge.
========================================================= */

.reviews-track-wrap {
  display: block !important;
}

.reviews-track {
  display: flex !important;
  align-items: flex-start !important;
}

.reviews-track .review-card {
  align-self: flex-start !important;
  margin-top: 0 !important;
}

.review-card {
  position: relative !important;
  top: 0 !important;
  transform: none !important;
  height: 340px !important;
  min-height: 340px !important;
}

.review-card:hover {
  transform: none !important;
  box-shadow: 0 18px 34px rgba(31, 31, 29, 0.09) !important;
}

@media (max-width: 980px) {
  .review-card {
    height: 330px !important;
    min-height: 330px !important;
  }
}

@media (max-width: 640px) {
  .review-card {
    height: auto !important;
    min-height: auto !important;
  }
}

/* =========================================================
   UNIFIED SECTION BACKGROUND
   Make all main content sections use the same background.
========================================================= */

:root {
  --unified-section-bg: #f5f5f3;
}

.section,
.about-section,
.services-section,
.service-area-section,
.gallery-section,
.reviews-section,
.quote-section,
.contact-cta-section {
  background: var(--unified-section-bg) !important;
  background-image: none !important;
  background-color: var(--unified-section-bg) !important;
}

.about-section::before,
.services-section::before,
.service-area-section::before,
.gallery-section::before,
.reviews-section::before,
.quote-section::before,
.contact-cta-section::before {
  display: none !important;
  content: none !important;
}

/* =========================================================
   FULL GALLERY PAGE
   More space around the home gallery button + full media page.
========================================================= */

.gallery-section .gallery-actions {
  margin-top: clamp(3rem, 5vw, 4.5rem) !important;
  padding-top: 0.75rem !important;
}

.gallery-open-btn {
  text-decoration: none !important;
}

.full-gallery-hero-page .contact-hero-inner {
  max-width: 840px !important;
}

.full-gallery-section {
  background: var(--unified-section-bg, #f5f5f3) !important;
  background-image: none !important;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem) !important;
}

.full-gallery-container {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.full-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.full-gallery-header h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.full-gallery-header p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.full-gallery-block + .full-gallery-block {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.full-gallery-subhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.full-gallery-subhead h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.045em;
}

.full-gallery-subhead span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(217, 217, 214, 0.95);
  color: var(--color-primary-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.full-gallery-card {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(217, 217, 214, 0.95);
  box-shadow: 0 18px 36px rgba(31, 31, 29, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.full-gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(172, 91, 15, 0.32);
  box-shadow: 0 24px 48px rgba(31, 31, 29, 0.12);
}

.full-gallery-card img,
.full-gallery-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-gallery-video-card {
  min-height: auto;
  padding: 0.7rem;
}

.full-gallery-video-card video {
  height: 260px;
  border-radius: 1rem;
  background: #111;
}

.full-gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.25rem 0.15rem;
}

.full-gallery-caption span {
  color: var(--color-primary-500);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.full-gallery-caption strong {
  color: var(--color-neutral-900);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .full-gallery-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .full-gallery-container {
    width: min(100% - 1.15rem, 1180px);
  }

  .full-gallery-grid {
    grid-template-columns: 1fr;
  }

  .full-gallery-card {
    min-height: 230px;
    border-radius: 1.1rem;
  }

  .full-gallery-video-card video {
    height: 240px;
  }

  .full-gallery-subhead {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   COMBINED FULL GALLERY + LIGHTBOX FIX
========================================================= */

.full-gallery-mixed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: dense;
}

.full-gallery-media-card {
  appearance: none;
  border: 1px solid rgba(217, 217, 214, 0.95);
  cursor: pointer;
  padding: 0;
  text-align: left;
  min-height: 270px;
}

.full-gallery-media-card:nth-child(7n + 1),
.full-gallery-media-card:nth-child(11n + 6) {
  grid-row: span 2;
  min-height: 560px;
}

.full-gallery-media-card img,
.full-gallery-media-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-gallery-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.48) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.full-gallery-video-card {
  padding: 0 !important;
  min-height: 270px;
}

.full-gallery-video-card video {
  height: 100% !important;
  border-radius: 0 !important;
  background: #111;
}

.full-gallery-media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-neutral-900);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.full-gallery-media-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 3;
}

.full-gallery-video-badge {
  background: var(--color-primary-500, #ac5b0f);
  color: #ffffff;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.full-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(12, 12, 10, 0.88);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.full-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.full-gallery-lightbox-panel {
  width: min(100%, 1080px);
  margin: 0;
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.full-gallery-lightbox.is-open .full-gallery-lightbox-panel {
  transform: translateY(0) scale(1);
}

.full-gallery-lightbox-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: min(78vh, 760px);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #080807;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.full-gallery-lightbox-media img,
.full-gallery-lightbox-media video {
  display: block;
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
}

.full-gallery-lightbox-panel figcaption {
  margin-top: 0.9rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
}

.full-gallery-lightbox-close,
.full-gallery-lightbox-arrow {
  position: fixed;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.full-gallery-lightbox-close:hover,
.full-gallery-lightbox-arrow:hover {
  transform: translateY(-2px);
  background: var(--color-primary-500, #ac5b0f);
}

.full-gallery-lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
}

.full-gallery-lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.full-gallery-lightbox-arrow:hover {
  transform: translateY(calc(-50% - 2px));
}

.full-gallery-lightbox-prev {
  left: clamp(0.75rem, 2vw, 2rem);
}

.full-gallery-lightbox-next {
  right: clamp(0.75rem, 2vw, 2rem);
}

.full-gallery-lightbox-close svg,
.full-gallery-lightbox-arrow svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2.8;
}

@media (max-width: 980px) {
  .full-gallery-mixed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .full-gallery-media-card:nth-child(7n + 1),
  .full-gallery-media-card:nth-child(11n + 6) {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .full-gallery-mixed-grid {
    grid-template-columns: 1fr !important;
  }

  .full-gallery-media-card,
  .full-gallery-media-card:nth-child(n) {
    grid-row: auto;
    min-height: 250px;
  }

  .full-gallery-lightbox {
    padding: 0.85rem;
  }

  .full-gallery-lightbox-arrow {
    top: auto;
    bottom: 1rem;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .full-gallery-lightbox-arrow:hover {
    transform: translateY(-2px);
  }

  .full-gallery-lightbox-prev {
    left: calc(50% - 58px);
  }

  .full-gallery-lightbox-next {
    right: calc(50% - 58px);
  }

  .full-gallery-lightbox-close {
    top: 0.85rem;
    right: 0.85rem;
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   REVIEWS RESPONSIVE FIX
   Because apparently cards also need to understand phone screens.
========================================================= */

.reviews-section {
  overflow: hidden !important;
  padding: clamp(3.75rem, 6vw, 6rem) 0 !important;
}

.reviews-container {
  width: min(100% - 2rem, 1180px) !important;
}

.reviews-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr) !important;
  align-items: end !important;
  gap: clamp(1.4rem, 4vw, 3.5rem) !important;
}

.reviews-header h2,
.reviews-header p {
  min-width: 0 !important;
}

.reviews-summary {
  width: 100% !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem) !important;
}

.reviews-summary-stars {
  flex-shrink: 0 !important;
}

.reviews-carousel {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) 54px !important;
  grid-template-areas: "prev track next" !important;
  align-items: center !important;
  gap: clamp(0.75rem, 2vw, 1.25rem) !important;
  margin-top: 0 !important;
}

#reviewsPrev {
  grid-area: prev !important;
}

#reviewsNext {
  grid-area: next !important;
}

.reviews-track-wrap {
  grid-area: track !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 1rem 0 1.45rem !important;
  margin: -1rem 0 -1.45rem !important;
  border-radius: 1.5rem !important;
}

.reviews-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 1rem !important;
  transition: transform 420ms ease !important;
  will-change: transform !important;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2rem) / 3) !important;
  min-width: 0 !important;
  min-height: 315px !important;
  box-sizing: border-box !important;
}

.review-card {
  display: flex !important;
  flex-direction: column !important;
  padding: clamp(1.15rem, 1.8vw, 1.45rem) !important;
  overflow: hidden !important;
}

.review-card-header {
  align-items: center !important;
  min-width: 0 !important;
}

.review-card-header > div {
  min-width: 0 !important;
}

.review-card h3,
.review-card-header span,
.review-card p {
  overflow-wrap: anywhere !important;
}

.review-card p {
  max-width: 34ch !important;
}

.reviews-arrow {
  width: 54px !important;
  height: 54px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #1f1f1d !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(217, 217, 214, 0.95) !important;
}

.reviews-arrow svg,
.reviews-arrow [data-lucide] {
  color: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.reviews-arrow:hover {
  color: #ffffff !important;
  background: var(--color-primary-500) !important;
  border-color: var(--color-primary-500) !important;
}

.reviews-dots {
  margin-top: clamp(1.25rem, 2vw, 1.75rem) !important;
}

.reviews-actions {
  margin-top: clamp(1.6rem, 3vw, 2.4rem) !important;
}

@media (max-width: 1080px) {
  .reviews-container {
    width: min(100% - 1.6rem, 980px) !important;
  }

  .reviews-header {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .reviews-carousel {
    grid-template-columns: 50px minmax(0, 1fr) 50px !important;
  }

  .reviews-track .review-card {
    flex-basis: calc((100% - 1rem) / 2) !important;
    min-height: 300px !important;
  }

  .reviews-arrow {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 760px) {
  .reviews-section {
    padding: 3.4rem 0 4rem !important;
  }

  .reviews-container {
    width: min(100% - 1.1rem, 640px) !important;
  }

  .reviews-header {
    margin-bottom: 1.25rem !important;
  }

  .reviews-header h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .reviews-summary {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem !important;
    border-radius: 1.1rem !important;
  }

  .reviews-summary-stars {
    justify-content: flex-start !important;
  }

  .reviews-carousel {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "track track"
      "prev next" !important;
    row-gap: 1rem !important;
    column-gap: 0.9rem !important;
  }

  .reviews-track-wrap {
    padding: 0.75rem 0 1rem !important;
    margin: -0.75rem 0 -1rem !important;
    border-radius: 1.15rem !important;
  }

  .reviews-track {
    gap: 0.9rem !important;
  }

  .reviews-track .review-card {
    flex-basis: 100% !important;
    min-height: auto !important;
  }

  .review-card {
    padding: 1.2rem !important;
    border-radius: 1.15rem !important;
  }

  .review-card::before {
    right: 0.65rem !important;
    top: -0.7rem !important;
    font-size: 5.8rem !important;
  }

  .review-avatar {
    width: 46px !important;
    height: 46px !important;
  }

  .review-card h3 {
    font-size: 0.95rem !important;
  }

  .review-card-header span {
    font-size: 0.72rem !important;
  }

  .review-card p {
    max-width: none !important;
    font-size: 0.92rem !important;
    line-height: 1.62 !important;
  }

  #reviewsPrev {
    justify-self: end !important;
  }

  #reviewsNext {
    justify-self: start !important;
  }

  .reviews-arrow {
    width: 48px !important;
    height: 48px !important;
  }

  .reviews-btn {
    width: 100% !important;
    max-width: 360px !important;
  }
}

@media (max-width: 400px) {
  .reviews-container {
    width: min(100% - 0.8rem, 640px) !important;
  }

  .review-card-header {
    gap: 0.7rem !important;
  }

  .review-avatar {
    width: 42px !important;
    height: 42px !important;
  }

  .review-stars svg,
  .reviews-summary-stars svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* =========================
   Mobile polish fixes
   - Keeps navbar from sitting on top of hero copy
   - Gives service card #10 breathing room before the CTA
========================= */

@media (max-width: 900px) {
  .site-header {
    padding: calc(0.55rem + env(safe-area-inset-top)) 0 0.55rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.scrolled,
  .site-header.menu-open {
    padding: calc(0.5rem + env(safe-area-inset-top)) 0 0.5rem;
    background: rgba(18, 18, 16, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-container {
    position: relative;
    width: min(100% - 1rem, 1420px);
    min-height: 82px;
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .brand-logo {
    width: clamp(170px, 48vw, 230px);
    max-height: 92px;
    object-fit: contain;
  }

  .nav-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    margin-left: 0;
    gap: 0;
    z-index: 2;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 0.9rem;
    font-size: 0;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
  }

  .nav-cta::before {
    content: 'Get Quote';
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .mobile-menu-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-right: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 2;
  }

  .site-header.scrolled .mobile-menu-btn,
  .site-header.menu-open .mobile-menu-btn {
    background: rgba(0, 0, 0, 0.42);
  }

  .mobile-nav {
    top: calc(92px + env(safe-area-inset-top));
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 116svh;
  }

  .hero-content {
    padding-top: calc(8.6rem + env(safe-area-inset-top));
    padding-bottom: 15rem;
  }

  .hero-controls {
    bottom: calc(1.15rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .nav-container {
    width: min(100% - 0.8rem, 1420px);
    min-height: 76px;
  }

  .brand-logo {
    width: clamp(160px, 48vw, 205px);
    max-height: 84px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 0.72rem;
  }

  .nav-cta::before {
    font-size: 0.6rem;
  }

  .hero-content {
    padding-top: calc(9.4rem + env(safe-area-inset-top));
    padding-bottom: 15.5rem;
  }

  .hero-kicker {
    max-width: 100%;
    margin-bottom: 0.9rem;
    font-size: 0.64rem;
  }

  .hero-content h1,
  .hero-slide:nth-child(1) .hero-content h1,
  .hero-slide:nth-child(2) .hero-content h1,
  .hero-slide:nth-child(3) .hero-content h1 {
    font-size: clamp(2.05rem, 11.4vw, 2.95rem);
    line-height: 1.02;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.58;
  }
}


@media (max-width: 370px) {
  .brand-logo {
    width: clamp(148px, 46vw, 176px);
    max-height: 78px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 0.6rem;
  }

  .nav-cta::before {
    font-size: 0.56rem;
  }
}

@media (max-width: 640px) {
  .services-grid {
    gap: 1.45rem;
    padding-bottom: 0.85rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.25rem 1.15rem 1.45rem;
  }

  .service-card-content {
    margin-top: 2.6rem;
  }

  .service-card::before {
    right: -2.8rem;
    bottom: -3.2rem;
    width: 8rem;
    height: 8rem;
  }

  .services-cta {
    margin-top: 2.85rem;
    padding: 1.2rem;
  }
}

/* Keep gallery visible even while ScrollTrigger recalculates after service filters.
   This prevents Chrome from delaying image paint when the services grid changes height. */
.gallery-item {
  opacity: 1;
}

.gallery-item img {
  background: var(--color-neutral-900);
}
