/* ============================================================
   LONGHORN HARDSCAPE & CONSTRUCTION — MAIN CSS
   Design system: Trust & Authority + Minimal
   Stack: Pure HTML5/CSS3/Vanilla JS
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================================
   2. CSS VARIABLES — DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colors (client spec) */
  --color-primary:      #8B7355;
  --color-secondary:    #2C3E2D;
  --color-accent:       #F5A623;
  --color-accent-dark:  #D4891A;

  /* Neutrals */
  --color-text:         #1A1A1A;
  --color-text-light:   #555555;
  --color-text-muted:   #777777;
  --color-bg:           #FFFFFF;
  --color-bg-alt:       #F8F6F2;
  --color-dark:         #1A1A1A;
  --color-dark-card:    #242424;
  --color-border:       #E5E0D8;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --max-width:    1200px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow:       0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:    0 16px 48px rgba(0,0,0,0.18);

  /* Transitions */
  --transition:   0.2s ease;
  --transition-md: 0.3s ease;

  /* Z-index scale */
  --z-base:       10;
  --z-dropdown:   20;
  --z-sticky:     30;
  --z-modal:      50;
  --z-toast:      60;

  /* Spacing */
  --section-py:   80px;
  --section-py-sm: 48px;
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   4. TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  max-width: 68ch;
}

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

.section {
  padding: var(--section-py) 0;
}

.section-light {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-dark);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.section-header.is-visible h2::after {
  transform: translateX(-50%) scaleX(1);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-text-light);
}

.text-center { text-align: center; }
.text-accent  { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }

/* Proof bullets */
.proof-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin-top: 16px;
}

.proof-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.proof-bullets li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
}

.proof-bullets--light li {
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-dark {
  background: var(--color-secondary);
  color: #fff;
}

.btn-dark:hover {
  background: #1e2c1f;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: transparent;
  transition: background var(--transition-md), box-shadow var(--transition-md),
              padding var(--transition-md);
  padding: 20px 0;
}

.site-header--solid,
.site-header.is-scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.9)) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.header-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-accent);
  background: rgba(245,166,35,0.08);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item .nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition),
              transform var(--transition);
  z-index: var(--z-dropdown);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.header-social-link:hover {
  color: #fff;
}

.header-social-link svg {
  fill: currentColor;
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: var(--radius);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: calc(var(--z-sticky) - 1);
  padding: 100px 24px calc(90px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-md);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-links a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-accent);
}

.mobile-nav-section-title {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 16px 6px;
}

/* Mobile nav accordion */
.mobile-nav-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: left;
}

.mobile-nav-accordion:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-accent);
}

.mobile-nav-accordion[aria-expanded="true"] {
  color: var(--color-accent);
}

.mobile-nav-accordion svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-nav-accordion[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  overflow: hidden;
}

.mobile-nav-submenu.is-open {
  grid-template-rows: 1fr;
}

.mobile-nav-submenu > div {
  min-height: 0;
  overflow: hidden;
}

.mobile-nav-submenu a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 400;
  padding: 9px 16px 9px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-submenu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-accent);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 4px;
}

.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.mobile-nav-social a:hover {
  color: #fff;
}

.mobile-nav-social svg {
  fill: currentColor;
  display: block;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Desktop: photo. Tablet/mobile: video */
.hero-desktop-img { display: block; }
.hero-video        { display: none; }

@media (max-width: 1024px) {
  .hero-desktop-img { display: none; }
  .hero-video        { display: block; }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,20,20,0.92) 0%,
    rgba(20,20,20,0.70) 35%,
    rgba(20,20,20,0.20) 65%,
    rgba(20,20,20,0.00) 100%
  );
  z-index: 1;
}

.hero .container {
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2));
  margin-right: 0;
  max-width: none;
  padding: 0 24px 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 120px 0 80px;
}

/* Stagger entrance animations */
.hero-badge,
.hero h1,
.hero h2,
.proof-bullets,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.6s ease forwards;
}
.hero-badge   { animation-delay: 0.1s; }
.hero h1      { animation-delay: 0.3s; }
.hero h2      { animation-delay: 0.5s; }
.proof-bullets{ animation-delay: 0.65s; }
.hero-actions { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #b8c4cc 45%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8)) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.hero-mobile-tagline {
  display: none;
}

.hero h2 {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-bg-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar.section-dark {
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-bar.section-dark .trust-item h4 {
  color: #fff;
}

.trust-bar.section-dark .trust-item p {
  color: rgba(255,255,255,0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 260px));
  justify-content: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.trust-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: none;
  line-height: 1.4;
}

/* ============================================================
   10a. STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--color-dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition);
}

.stat-card:hover .stat-icon-wrap {
  background: rgba(245,166,35,0.22);
  border-color: rgba(245,166,35,0.5);
}

.stat-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(3)::before,
  .stat-card:nth-child(4)::before {
    display: none;
  }
  .stat-card:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-card:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 2.4rem;
  }
}

/* ============================================================
   10. SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Horizontal scroll track — index.html only */
.section--hscroll {
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-hscroll-outer {
  overflow: hidden;
  width: 100%;
  padding: 32px 0 48px;
}

.services-hscroll-track {
  display: flex;
  gap: 24px;
  padding: 0 80px;
  width: max-content;
  will-change: transform;
}

.services-hscroll-track .service-card {
  width: 360px;
  height: 480px;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  transform: none;
}

.services-hscroll-track .service-card:hover {
  transform: none;
  box-shadow: none;
}

/* Full-bleed image fills the whole card */
.services-hscroll-track .service-card-img {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  height: 100%;
}

/* Cinematic gradient — light at top, very dark at bottom */
.services-hscroll-track .service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.50) 68%,
    rgba(0,0,0,0.78) 100%
  );
  z-index: 1;
}

/* Text overlaid on the gradient */
.services-hscroll-track .service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 26px;
  z-index: 2;
  background: none;
}

.services-hscroll-track .service-card-body h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.services-hscroll-track .service-card-body p {
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
  margin-bottom: 18px;
  line-height: 1.55;
}

.services-hscroll-track .service-card-link {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.88rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
  cursor: pointer;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
}

.service-card-img,
.service-card-img picture,
.service-card-img img {
  cursor: pointer;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CA8A04;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover .service-card-img::before,
.service-card:hover .service-card-zoom {
  opacity: 1;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 20px 22px 24px;
}

.service-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  max-width: none;
  line-height: 1.55;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 8px;
}

/* ============================================================
   11. ABOUT TEASER
   ============================================================ */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-teaser-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-teaser-img img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Stats strip */
.stats-strip {
  background: var(--color-accent);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  vertical-align: super;
}

.stat-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  max-width: none;
}

.section-dark .about-teaser-content h2 { color: #fff; }
.section-dark .btn-dark {
  background: #fff;
  color: var(--color-dark);
}
.section-dark .btn-dark:hover {
  background: var(--color-accent);
  color: #fff;
}

.about-teaser-content .overline {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.about-teaser-content h2 {
  margin-bottom: 16px;
}

.about-teaser-content p {
  margin-bottom: 24px;
}

/* ============================================================
   12. GALLERY / PROJECTS GRID
   ============================================================ */


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    var(--color-bg-alt) 0%,
    rgba(255,255,255,0.07) 50%,
    var(--color-bg-alt) 100%
  );
  background-size: 200% 100%;
  animation: gallery-shimmer 1.5s ease infinite;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item {
  position: relative;
}

@keyframes gallery-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

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

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CA8A04;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

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

/* Stagger galería */
.gallery-grid .gallery-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .gallery-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.gallery-grid .gallery-item.reveal:nth-child(3) { transition-delay: 0.19s; }
.gallery-grid .gallery-item.reveal:nth-child(4) { transition-delay: 0.26s; }
.gallery-grid .gallery-item.reveal:nth-child(5) { transition-delay: 0.33s; }
.gallery-grid .gallery-item.reveal:nth-child(6) { transition-delay: 0.40s; }

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   13. SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-dark .area-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.section-dark .area-card h3 { color: #fff; }
.section-dark .area-card p  { color: rgba(255,255,255,0.6); }

.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition),
              transform var(--transition), color var(--transition);
}

.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

.area-card:hover::before {
  transform: translateX(0);
}

.area-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  color: #fff;
}

.area-card > * {
  position: relative;
  z-index: 1;
}

.area-card:hover svg {
  color: #fff;
}

.area-card:hover p {
  color: rgba(255,255,255,0.8);
}

.area-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin: 0 auto 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.area-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.area-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================================
   14. REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  color: var(--color-accent);
}

.review-text {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  flex-grow: 1;
  max-width: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================================
   15. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a2b1b 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 0 auto 32px;
  max-width: 500px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-nap {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-nap a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.footer-nap a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   17. FLOATING MOBILE BAR + WHATSAPP
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: transform 0.35s ease;
  right: 0;
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: var(--z-modal);
  padding: 8px 16px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  transform: translateZ(0);
  will-change: transform;
}

.mobile-cta-bar--hidden {
  transform: translateY(110%);
}

.mobile-cta-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-cta-bar .btn {
  padding: 12px 16px;
  font-size: 0.875rem;
  justify-content: center;
  width: 100%;
}

/* whatsapp-float removed */

/* ============================================================
   18. BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 0.78rem;
  margin-bottom: 12px;
  opacity: 0.75;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: '/';
  opacity: 0.5;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb [aria-current="page"] {
  color: rgba(255,255,255,0.9);
}

/* wrapper heredado — ocultar como barra separada */
.breadcrumb-wrap {
  display: none;
}

/* ============================================================
   19. SERVICE PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-secondary) 100%);
  padding: 168px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, url('../images/hero/hero-poster.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h2 {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ============================================================
   20. SERVICE PAGE — INTRO / PROCESS / FAQ
   ============================================================ */
.service-intro p {
  font-size: 1.05rem;
  max-width: 72ch;
}

/* Types/Variants grid */
.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.variant-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.variant-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-accent);
}

.variant-card svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.variant-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.variant-card p {
  font-size: 0.875rem;
  max-width: none;
}

/* Why Choose boxes */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-top-color: var(--color-accent);
}

.why-card svg {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin: 0 auto 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.why-card h4 {
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  max-width: none;
  text-align: left;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 24px;
  width: 2px;
  background: var(--color-border);
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.process-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}

.process-step-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  padding-top: 12px;
}

.process-step-content p {
  font-size: 0.875rem;
  max-width: 56ch;
}

/* FAQ — Premium */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
  counter-reset: faq-counter;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 0;
  transition:
    padding-left 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open {
  padding-left: 20px;
}

.faq-item.is-open::before {
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  background: transparent;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease;
}

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

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.7;
}

.faq-item.is-open .faq-question {
  color: var(--color-accent);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dark section overrides for service page components */
.section-dark .faq-list {
  border-top-color: rgba(255,255,255,0.12);
}
.section-dark .faq-item {
  border-bottom-color: rgba(255,255,255,0.12);
}
.section-dark .faq-question {
  color: rgba(255,255,255,0.85);
}
.section-dark .faq-question:hover,
.section-dark .faq-item.is-open .faq-question {
  color: var(--color-accent);
}
.section-dark .faq-answer p {
  color: rgba(255,255,255,0.8);
}
.section-dark .why-card {
  background: #fff;
}
.section-dark .why-card h4 { color: var(--color-text); }
.section-dark .why-card p  { color: var(--color-text-muted); }

/* Override reveal's transition shorthand so why-card hover animates box-shadow + border */
.why-card.reveal,
.why-card.is-visible {
  transition: opacity 0.55s ease, transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 70ch;
}

/* ============================================================
   21. CONTACT PAGE / FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: none;
  line-height: 1.6;
}

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

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Contact form */
.contact-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* ============================================================
   22. BLOG CARD
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-alt);
}

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

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

.blog-card-body {
  padding: 20px 22px 24px;
}

.blog-card-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: none;
  margin-bottom: 14px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SERVICE CARD LIGHTBOX
   ============================================================ */
.sc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sc-lightbox[hidden] { display: none; }

.sc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  animation: lbFadeIn 0.3s ease forwards;
}

.sc-lightbox__panel {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  animation: lbScaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.sc-lightbox__img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: block;
}

.sc-lightbox__caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.sc-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
}

.sc-lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.sc-lightbox--closing .sc-lightbox__backdrop {
  animation: lbFadeOut 0.25s ease forwards;
}
.sc-lightbox--closing .sc-lightbox__panel {
  animation: lbScaleOut 0.25s ease forwards;
}

@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes lbScaleIn  { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }
@keyframes lbScaleOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.92); } }

/* ============================================================
   23. AREA PAGE SPECIFICS
   ============================================================ */
.area-nap {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.area-nap p {
  max-width: none;
  line-height: 2;
  font-size: 0.9rem;
}

.services-list-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.services-list-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition),
              color var(--transition);
  cursor: pointer;
}

.services-list-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.services-list-links a svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   24. SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  /* transform and transition handled by GSAP — no CSS transition here */
}

/* Fallback if GSAP fails to load */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger trust bar */
.trust-grid .trust-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.trust-grid .trust-item.reveal:nth-child(2) { transition-delay: 0.18s; }
.trust-grid .trust-item.reveal:nth-child(3) { transition-delay: 0.31s; }
.trust-grid .trust-item.reveal:nth-child(4) { transition-delay: 0.44s; }

/* Stagger para service cards */
.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.services-grid .service-card.reveal:nth-child(7) { transition-delay: 0.35s; }
.services-grid .service-card.reveal:nth-child(8) { transition-delay: 0.40s; }
.services-grid .service-card.reveal:nth-child(9) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   25. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 60px;
  }

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

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


  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-teaser-grid { gap: 40px; }

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

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

  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   26. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
  }

  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

  /* Header */
  .header-logo img {
    height: 70px;
  }

  /* Hero — video-first mobile layout */
  .hero {
    height: 100vh; /* fallback for older browsers */
    height: 100svh;
    min-height: 0;
    max-height: 100vh;
    max-height: 100svh;
    align-items: flex-end;
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  .hero-scroll { display: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.25);
  }

  .stat-item {
    border-right: none;
    background: var(--color-accent);
    padding: 24px 16px;
  }

  .hero-content {
    border-left: none;
    padding-left: 0;
  }

  .hero-badge,
  .hero h1,
  .hero h2,
  .proof-bullets,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26,26,26,0.15) 0%,
      rgba(26,26,26,0.30) 50%,
      rgba(26,26,26,0.85) 100%
    );
  }

  .hero-content {
    padding: 0 0 40px;
    width: 100%;
    max-width: 100%;
  }

  .hero-badge,
  .hero h1,
  .hero h2,
  .proof-bullets,
  .hero-actions {
    display: none;
  }

  .hero-mobile-tagline {
    display: block;
    position: absolute;
    bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    padding: 0 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(160deg, #ffffff 0%, #b8c4cc 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8)) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    z-index: 2;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

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

  /* Horizontal scroll fallback on mobile */
  .services-hscroll-outer { overflow: visible; padding: 0 0 40px; }
  .services-hscroll-track { display: grid; grid-template-columns: 1fr; width: 100%; padding: 0 24px; gap: 20px; }
  .services-hscroll-track .service-card { width: 100%; }

  /* About teaser */
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-teaser-img {
    order: -1;
    aspect-ratio: 16/9;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
  }

  /* Areas */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps::before {
    display: none;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Variants */
  .variants-grid {
    grid-template-columns: 1fr;
  }

  /* Services list links */
  .services-list-links {
    grid-template-columns: 1fr;
  }

  /* WhatsApp */
  .whatsapp-float,
  .whatsapp-fab {
    bottom: 90px;
  }
}

/* ============================================================
   27. RESPONSIVE — SMALL MOBILE (≤ 375px)
   ============================================================ */
@media (max-width: 400px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }

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

  .gallery-item:first-child {
    grid-column: 1;
  }
}

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

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-split-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-split-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}

.about-split-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-split-img img {
    height: 320px;
  }
}

/* ============================================================
   29. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 12px;
}

.contact-form-col > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group label span {
  color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-block {
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: -8px;
}

.contact-info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.contact-nap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
}

.contact-nap-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-nap-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-nap-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-nap-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.contact-nap-item a,
.contact-nap-item span {
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.5;
}

.contact-nap-item a:hover {
  color: var(--color-primary);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-social a:hover {
  color: var(--color-primary);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-map-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
}

.contact-map-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   30. PROJECTS PAGE
   ============================================================ */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 8px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border, rgba(255,255,255,0.15));
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

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

.project-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

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

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

.project-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-card-body {
  padding: 20px 24px 24px;
}

.project-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--color-heading);
}

.project-location {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-card[style*="display: none"] {
  display: none !important;
}

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   31. BLOG PAGE EXTRAS
   ============================================================ */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-card--featured .blog-card-img {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  height: 100%;
}

.blog-card--featured .blog-card-img img {
  height: 100%;
}

.blog-card--featured .blog-card-body {
  padding: 36px 40px;
}

.blog-card-img-link {
  display: block;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-meta time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.blog-cta-strip {
  text-align: center;
  padding: 40px 0 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.blog-cta-strip a {
  color: var(--color-primary);
  font-weight: 600;
}

.blog-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-topic-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border, rgba(0,0,0,0.08));
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.blog-topic-card:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.blog-topic-card svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .blog-card--featured {
    grid-template-columns: 1fr;
  }
  .blog-card--featured .blog-card-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 240px;
  }
  .blog-topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-topics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   32. BLOG ARTICLE LAYOUT
   ============================================================ */
.blog-article {
  padding: 60px 0 80px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.blog-article-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-article-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  margin: 24px 0 0;
}

.blog-article-hero {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article-body {
  line-height: 1.8;
  color: var(--color-text);
}

.blog-article-body h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
  color: var(--color-heading);
}

.blog-article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-article-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: #C9A84C !important;
}

.blog-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.blog-article-body p {
  margin-bottom: 18px;
  color: var(--color-text-muted);
}

.blog-article-body ul, .blog-article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--color-text-muted);
}

.blog-article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-article-body strong {
  color: var(--color-text);
  font-weight: 600;
}

.cost-table {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
}

.cost-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cost-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.cost-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.06));
  color: var(--color-text-muted);
}

.cost-table tr:nth-child(even) td {
  background: var(--color-surface);
}

.blog-article-faq {
  margin-top: 48px;
  border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
  padding-top: 32px;
}

.blog-article-faq h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.blog-article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
}

.blog-article-cta {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 40px;
}

.blog-article-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--color-heading);
}

.blog-article-cta p {
  color: var(--color-text-muted);
}

.blog-related h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.blog-related ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-related a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.blog-related a:hover {
  text-decoration: underline;
}

/* Sidebar */
.blog-article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-heading);
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-links a {
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
}

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

@media (max-width: 1024px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
  }
  .blog-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-article-sidebar { grid-template-columns: 1fr; }
  .blog-article-cta { padding: 24px; }
}

/* page-hero short variant */
.page-hero--short {
  padding: 168px 0 60px;
}

.page-hero--short h2 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.85;
}


/* ============================================================
   SERVICE PAGE — SPLIT INTRO (B) + PHOTO BREAK (C)
   ============================================================ */

/* B — Split intro: text left, full-bleed photo right */
.svc-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.svc-intro-split__text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-intro-split__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.svc-intro-split__text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
}

.svc-intro-split__photo {
  position: relative;
  overflow: hidden;
}

.svc-intro-split__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.svc-intro-split__photo:hover img {
  transform: scale(1.04);
}

/* C — Photo break: 1 large + 2 stacked, full bleed */
.svc-photo-break {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 540px;
  gap: 3px;
  background: #111;
}

.svc-photo-break__main {
  grid-row: span 2;
  overflow: hidden;
  position: relative;
}

.svc-photo-break__side {
  overflow: hidden;
  position: relative;
}

.svc-photo-break__main img,
.svc-photo-break__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.svc-photo-break__main:hover img,
.svc-photo-break__side:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .svc-intro-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .svc-intro-split__photo {
    height: 260px;
    position: relative;
  }

  .svc-intro-split__photo img {
    position: absolute;
  }

  .svc-intro-split__text {
    padding: 44px 24px;
  }

  .svc-photo-break {
    height: 320px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .svc-photo-break__main {
    grid-row: span 1;
  }

  .svc-photo-break__side:last-child {
    display: none;
  }
}
