/* =========================================
   BEST BET MOVERS — style.css
   ========================================= */

/* Google Fonts are loaded in index.html */

:root {
  --navy: #000C2A;
  --navy-mid: #000C2A;
  --gold: #FF6700;
  --gold-light: #FF8533;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray: #8a9bb0;
  --light-bg: #f8f6f1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* =========================================
   NAVIGATION
   ========================================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid var(--gold);
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

nav.nav-scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo span { color: var(--cream); }

.nav-logo img {
  height: 115px;
  width: auto;
  display: block;
  margin: -33px 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  opacity: 1 !important;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--cream);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-menu-open {
  overflow: hidden;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 103, 0, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(255, 103, 0, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 12, 42, 0.92) 0%, rgba(0, 12, 42, 0.78) 50%, rgba(0, 12, 42, 0.95) 100%);
  z-index: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/fondo.webp');
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  z-index: -1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 103, 0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 103, 0,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  pointer-events: none;
}

.hero-grid-lines::before,
.hero-grid-lines::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-grid-lines::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 103, 0, 0.55) 0%, transparent 70%);
  top: 8%;
  right: 12%;
}

.hero-grid-lines::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.30) 0%, transparent 70%);
  bottom: 12%;
  left: 8%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 4rem 4rem 8rem;
  animation: fadeUp 1s ease both;
}

/* Título + subtítulo del hero (mismo borde naranja que el CRM) */
.hero-text-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 3px solid rgba(255, 103, 0, 0.48);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 1.35rem 1.6rem 1.5rem;
  max-width: min(560px, 100%);
  margin-bottom: 2.25rem;
}

.hero-content .hero-text-panel h1 {
  margin-bottom: 1.25rem;
}

.hero-content .hero-text-panel .hero-sub {
  margin-bottom: 0;
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  color: var(--cream);
}

h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 440px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-google-trust {
  margin-top: 1.35rem;
}

.google-guaranteed-link {
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.google-guaranteed-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.google-guaranteed-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.google-guaranteed-link img {
  display: block;
  width: 184px;
  height: auto;
  max-width: min(184px, 100%);
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 10.65rem 6rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 103, 0,0.12);
  border: 1px solid rgba(255, 103, 0,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.stat-box {
  background: rgba(0, 12, 42,0.85);
  padding: 2rem 1.8rem;
  transition: background 0.3s;
}

.stat-box:hover { background: rgba(255, 103, 0,0.06); }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 103, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.2rem;
  border: 1px solid rgba(245,240,232,0.3);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 103, 0,0.3), transparent);
}

section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
}

h2 em { font-style: italic; color: var(--gold); }

/* =========================================
   ABOUT
   ========================================= */
.about {
  background: var(--navy);
  color: var(--cream);
}

.about .section-label { color: var(--gold); }
.about .section-label::before { background: var(--gold); }
.about h2 { color: var(--cream); }
.about h2 em { color: var(--gold); }
.about-text p { color: var(--gray); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #445566;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: white;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 12, 42,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 30px rgba(0, 12, 42,0.1);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-item h4 {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: #778899;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--navy); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255, 103, 0,0.1);
  border: 1px solid rgba(255, 103, 0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: rgba(0, 12, 42,0.95);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover { background: rgba(255, 103, 0,0.05); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 103, 0,0.12);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(255, 103, 0,0.25); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--gray);
}

/* =========================================
   AREAS
   ========================================= */
.areas {
  background: var(--navy);
  color: var(--cream);
}

.areas .section-label { color: var(--gold); }
.areas .section-label::before { background: var(--gold); }
.areas h2 { color: var(--cream); }
.areas h2 em { color: var(--gold); }

.areas .areas-sub {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
}

.areas .areas-links {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
}

.areas .areas-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.areas .areas-links a:hover {
  text-decoration: underline;
}

.areas .areas-links-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

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

.area-pill {
  appearance: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  width: 100%;
  margin: 0;
  background: white;
  border: 1px solid rgba(0, 12, 42,0.08);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  text-align: center;
  color: var(--navy);
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 12, 42,0.04);
}

.area-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 103, 0,0.15);
}

.area-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.area-pill-cta {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.area-pill-cta:hover {
  color: var(--navy);
  border-color: var(--cream);
  filter: brightness(1.05);
}

a.area-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.area-pill-featured {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.area-pill-featured:hover {
  color: var(--navy);
  filter: brightness(1.05);
}

.areas-grid-cities {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

/* Area map modal (OpenStreetMap embed) */
.area-place-modal[hidden] {
  display: none !important;
}

.area-place-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.area-place-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 12, 42, 0.65);
  cursor: pointer;
}

.area-place-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid rgba(0, 12, 42, 0.12);
  box-shadow: 0 24px 60px rgba(0, 12, 42, 0.35);
  overflow: hidden;
}

.area-place-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--navy);
  color: var(--cream);
}

.area-place-modal-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.area-place-modal-title em {
  color: var(--gold);
  font-style: normal;
}

.area-place-modal-close {
  flex-shrink: 0;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--cream);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 4px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.area-place-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.area-place-modal-caption {
  margin: 0;
  padding: 0.55rem 1.1rem 0;
  font-size: 0.78rem;
  color: rgba(0, 12, 42, 0.55);
}

.area-place-modal-frame-wrap {
  flex: 1;
  min-height: 200px;
  padding: 0.75rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 12, 42, 0.04);
}

.area-place-modal-photo {
  display: block;
  width: 100%;
  max-height: min(58vh, 520px);
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #e8e4dc;
}

body.area-modal-open {
  overflow: hidden;
}

/* =========================================
   WHY US
   ========================================= */
.why {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 103, 0,0.06) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2.4rem;
  border: 1px solid rgba(255, 103, 0,0.12);
  border-radius: 4px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(255, 103, 0,0.35);
  background: rgba(255, 103, 0,0.04);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 103, 0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--gray);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--navy); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid rgba(255, 103, 0,0.1);
  padding: 2.4rem;
  border-radius: 4px;
  transition: border-color 0.3s;
  position: relative;
}

.testimonial-card:hover { border-color: rgba(255, 103, 0,0.3); }

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.8rem;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.6rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.author-location {
  font-size: 0.72rem;
  color: var(--gray);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, #000C2A 0%, var(--navy-mid) 50%, #000C2A 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 103, 0,0.12) 0%, transparent 60%);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.cta-inner p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 1.5rem 0 2.8rem;
  font-weight: 300;
}

.cta-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.cta-phone:hover { color: var(--gold-light); }

.cta-email {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 2.8rem;
}

.cta-email:hover { color: var(--cream); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #000C2A;
  border-top: 1px solid rgba(255, 103, 0,0.1);
}

/* Footer Top Bar */
.footer-topbar {
  background: rgba(255, 103, 0,0.07);
  border-bottom: 1px solid rgba(255, 103, 0,0.15);
  padding: 1.2rem 4rem;
}

.footer-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }

.footer-contact-item span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-contact-item a {
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-topbar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 103, 0,0.2);
}

/* Footer Main Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4rem 3rem;
}

.footer-brand .nav-logo { display: block; margin-bottom: 0.85rem; }

.footer-licensing {
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 103, 0, 0.15);
}

.footer-licensing p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

.footer-licensing-title {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
}

/* =========================================
   SOCIAL MEDIA ICONS
   ========================================= */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 103, 0, 0.1);
  border: 1px solid rgba(255, 103, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 103, 0, 0.3);
  border-color: var(--gold);
}

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

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cream); }

.footer-address li {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-address li svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(245,240,232,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(138,155,176,0.5);
  letter-spacing: 0.05em;
}

.footer-credit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-credit img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-credit p {
  font-size: 0.75rem;
  color: rgba(138,155,176,0.55);
  margin: 0;
  letter-spacing: 0.03em;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

.page-footer-inner .footer-credit {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 103, 0, 0.12);
  justify-content: center;
}

/* =========================================
   SCROLL TOP BUTTON
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* =========================================
   HERO QUOTE CARD (Elromco widget)
   ========================================= */
.hero-quote-card {
  /* Transparente: se ve el hero detrás (sin blur tipo cristal) */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 0.7rem 0.85rem 0.6rem;
  border: 3px solid rgba(255, 103, 0, 0.48);
  max-width: 360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

/* CRM: alineado al borde derecho de la columna (desktop); centrado en móvil */
.hero-visual > .hero-quote-card {
  margin-top: 0.25rem;
  margin-left: auto;
  margin-right: 0;
  transform: translateY(-1rem);
}

.hero-quote-header {
  text-align: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero-quote-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hero .hero-quote-card .hero-quote-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.15rem;
}

.hero .hero-quote-card .hero-quote-header h3 em {
  color: #fff;
  font-style: italic;
}

.hero .hero-quote-card .hero-quote-header p {
  font-size: 0.66rem;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.hero .hero-quote-card .hero-quote-header p a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.55);
}

#mb-short-form {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero .hero-quote-card #mb-short-form > div:first-child {
  color: #fff !important;
}

.hero .hero-quote-card #mb-short-form [style*="mbSpin"] {
  border: 3px solid rgba(255, 255, 255, 0.28) !important;
  border-top-color: #fff !important;
}

/* Elromco short form: RESIDENTIAL / COMMERCIAL (MUI ToggleButton en el mismo documento) */
.hero-quote-card #mb-short-form [data-testid="residential"],
.hero-quote-card #mb-short-form [data-testid="commercial"] {
  color: #fff !important;
}

.hero-quote-card #mb-short-form .MuiToggleButton-root,
.hero-quote-card #mb-short-form .MuiToggleButton-root.Mui-selected {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.hero-quote-card #mb-short-form .MuiToggleButton-root.Mui-selected {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.hero-quote-card #mb-short-form .MuiToggleButton-label {
  color: #fff !important;
}

.hero-quote-card #mb-short-form label span:last-child {
  color: #fff !important;
}

/* Subpage hero: quote card footer (textos propios de cada página + mismo layout) */
.hero-quote-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.62rem;
}

.hero .hero-quote-card .hero-quote-foot span {
  color: rgba(255, 255, 255, 0.92);
}

.hero .hero-quote-card .hero-quote-foot a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero .hero-quote-card .hero-quote-foot a:hover {
  text-decoration: underline;
}

/* Subpage hero: listas breves bajo el subtítulo (sobre el fondo oscuro) */
.hero-content .hero-page-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
  max-width: 460px;
}

.hero-content .hero-page-features .hero-feature-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-content .hero-page-features .hero-feature-icon {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-content .hero-page-features h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.hero-content .hero-page-features p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.45;
  margin: 0;
}

/* Subpage hero: imagen a la derecha (p. ej. commercial) */
.hero-visual .hero-side-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  max-width: 420px;
  margin-left: auto;
}

.hero-visual .hero-side-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

#mb-short-form iframe {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#mb-long-form,
#mb-single-page-form {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

#mb-long-form iframe,
#mb-single-page-form iframe {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HERO GALLERY
   ========================================= */
.hero-gallery {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(0, 12, 42,0.6);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 103, 0, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.gallery-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 103, 0, 0.4);
}

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  pointer-events: none;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255,255,255,0.7);
}

/* =========================================
   ABOUT GALLERY
   ========================================= */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 4px 16px rgba(0, 12, 42,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 12, 42,0.15);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* =========================================
   HOME — MOVING GALLERY
   ========================================= */
.home-gallery {
  padding: 6rem 0;
  background: var(--navy);
}

.home-gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.home-gallery h2 em {
  font-style: italic;
  color: var(--gold);
}

.home-gallery-sub {
  max-width: 560px;
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
}

.home-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 1.25rem;
  margin-top: 3rem;
}

.home-gallery .gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 103, 0, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-gallery .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-gallery .gallery-tall {
  grid-column: span 3;
  grid-row: span 2;
}

.home-gallery .gallery-wide {
  grid-column: span 6;
}

.home-gallery .gallery-medium {
  grid-column: span 4;
}

.home-gallery .gallery-small {
  grid-column: span 3;
}

.home-gallery .gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0, 12, 42, 0.92));
  padding: 2rem 1.25rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.home-gallery .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.home-gallery .gallery-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.home-gallery .gallery-text p {
  font-size: 0.82rem;
  color: var(--gold);
  margin: 0;
}

/* =========================================
   SERVICE IMAGES
   ========================================= */
.service-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin: 0.8rem 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.02);
}

/* Service Link Styles */
.service-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.service-cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-link:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   STATS STRIP (below hero)
   ========================================= */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255, 103, 0, 0.18);
  border-bottom: 1px solid rgba(255, 103, 0, 0.18);
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.8rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 103, 0, 0.12);
}

.stats-strip-inner .stat-box {
  background: var(--navy);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: background 0.3s;
}

.stats-strip-inner .stat-box:hover {
  background: rgba(255, 103, 0, 0.06);
}

@media (max-width: 768px) {
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }
}

/* =========================================
   REVIEW LOGOS STRIP
   ========================================= */
.review-logos {
  background: var(--navy);
  border-top: 1px solid rgba(255, 103, 0, 0.18);
  border-bottom: 1px solid rgba(255, 103, 0, 0.18);
}

.review-logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.review-logo-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 2.5rem;
  transition: transform 0.3s;
}

a.review-logo-item,
a.review-logo-item:visited {
  text-decoration: none;
  color: inherit;
}

a.review-logo-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.review-logo-item:hover { transform: translateY(-3px); }

.review-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-logo-icon.google   { background: #4285F4; color: #fff; }
.review-logo-icon.facebook { background: #1877F2; color: #fff; }
.review-logo-icon.homeadvisor { background: #F4A000; color: #fff; font-size: 0.75rem; }
.review-logo-icon.thumbtack { background: #009FD9; color: #fff; }
.review-logo-icon.yelp     { background: #D32323; color: #fff; font-size: 0.9rem; }

.review-logo-text { display: flex; flex-direction: column; gap: 0.15rem; }

.review-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.review-logo-text span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.review-logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* =========================================
   WHY EXTENDED
   ========================================= */
.why-extended {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-extended::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 103, 0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-ext-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.why-ext-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin-top: 1.2rem;
  font-weight: 300;
}

.why-ext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-ext-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 103, 0,0.12);
  border-radius: 8px;
  padding: 2.4rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-ext-card:hover {
  background: rgba(255, 103, 0,0.05);
  border-color: rgba(255, 103, 0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-ext-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 103, 0,0.1);
  border: 1px solid rgba(255, 103, 0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.why-ext-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}

.why-ext-card p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--gray);
  flex: 1;
}

.why-ext-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, letter-spacing 0.3s;
  display: inline-block;
}

.why-ext-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.why-ext-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 380px;
}

.why-ext-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.why-ext-image-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 1.4rem 1.8rem;
  text-align: center;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.badge-txt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 0.3rem;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
  background: var(--navy);
  color: var(--cream);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-section .section-label { color: var(--gold); }
.blog-section .section-label::before { background: var(--gold); }
.blog-section h2 { color: var(--cream); }
.blog-section h2 em { color: var(--gold); }

.blog-section .btn-outline {
  border-color: rgba(245,240,232,0.3);
  color: var(--cream);
}

.blog-section .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 12, 42,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 12, 42,0.14);
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.blog-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.blog-date {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.blog-category {
  font-size: 0.72rem;
  color: #8a9bb0;
  letter-spacing: 0.05em;
}

.blog-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
}

.blog-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-body h3 a:hover { color: var(--gold); }

.blog-body p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: #667788;
  flex: 1;
}

.blog-read-more {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: letter-spacing 0.3s, color 0.3s;
  display: inline-block;
  margin-top: 0.4rem;
}

.blog-read-more:hover {
  color: #CC5200;
  letter-spacing: 0.18em;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }

  .nav-toggle {
    display: inline-flex;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 1.5rem 2rem calc(2rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 12, 42, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    list-style: none;
    display: flex;
    z-index: 1001;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 103, 0, 0.12);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 0.35rem;
  }

  .nav-links a {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.88rem;
  }

  .nav-links .nav-cta {
    text-align: center;
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100svh;
    align-items: start;
    row-gap: 2.65rem;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 6.25rem 2rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 3;
    max-width: 100%;
  }

  .hero-text-panel {
    padding: 1.1rem 1.2rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .hero-content h1 {
    text-shadow: 0 2px 28px rgba(0, 12, 42, 0.75);
  }

  .hero-sub {
    text-shadow: 0 1px 16px rgba(0, 12, 42, 0.65);
  }

  .hero-actions {
    margin-top: 0.35rem;
  }

  .hero-google-trust {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .google-guaranteed-link img {
    width: min(184px, 100%);
  }

  .hero-content .hero-page-features {
    margin: 1rem 0 1.1rem;
    gap: 0.7rem;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 1.25rem 3rem;
    z-index: 2;
    gap: 2rem;
  }

  .hero-visual > .hero-quote-card {
    margin-top: 0.85rem;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .hero-quote-card {
    max-width: min(440px, 100%);
    padding: 1.15rem 1.2rem 1.05rem;
    gap: 0.85rem;
    margin-top: 0;
    box-sizing: border-box;
  }

  .hero .hero-quote-card .hero-quote-header h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  .hero .hero-quote-card .hero-quote-header p {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  #mb-short-form {
    min-height: 200px;
    padding: 0.35rem 0;
  }

  .hero-quote-foot {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding-top: 0.7rem;
  }

  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 4rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-topbar { padding: 1rem 2rem; }
  .footer-topbar-inner { gap: 1.5rem; }
  .footer-topbar-divider { display: none; }
  .review-logos-inner { padding: 2rem; gap: 0; }
  .review-logo-item { padding: 0.8rem 1.2rem; }
  .review-logo-divider { display: none; }
  .why-ext-grid { grid-template-columns: 1fr; }
  .why-ext-header { text-align: left; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .services-header { flex-direction: column; align-items: flex-start; }
  
  /* Gallery Responsive */
  .hero-gallery { height: 240px; }
  .gallery-btn { width: 40px; height: 40px; font-size: 1rem; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery-item { height: 200px; }
  .home-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .home-gallery .gallery-tall,
  .home-gallery .gallery-wide,
  .home-gallery .gallery-medium,
  .home-gallery .gallery-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .home-gallery .gallery-overlay {
    transform: translateY(0);
  }
  .service-image { height: 120px; }
  
  /* Social Icons Responsive */
  .social-links { gap: 0.8rem; }
  .social-icon { 
    width: 38px; 
    height: 38px;
    padding: 8px;
  }
  .social-icon svg { 
    width: 18px; 
    height: 18px; 
  }

  .scroll-top {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

}
