/* ================================================================
   SQUARE ROOFING — MAIN STYLESHEET
   Theme-aware via data-theme="light" (default) / "dark"
   ----------------------------------------------------------------
   Gold palette (same in both themes):
     --gold-sr    #a8862a  brand gold — borders, icons
     --gold       #c9a030  section tags, accents
     --gold-cta   #d4aa3a  buttons, highlights
     --gold-light #e8c050  hover (bridges to brighter yellow)

   Section types:
     • .section-light  → uses --bg / --bg-2 (switches with theme)
     • .section-dark   → always dark (#1c1810), white text, grid anim
   Fonts: Outfit + Barlow Condensed
================================================================ */

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

/* ── GOLD (theme-invariant) ─────────────────────────────────── */
:root {
  --gold-sr:    #a8862a;
  --gold:       #c9a030;
  --gold-cta:   #d4aa3a;
  --gold-light: #e8c050;
  --nav-h:      130px;
  --max-w:      1200px;
  --radius:     4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --transition: 0.22s ease;
}

/* ── LIGHT THEME (default fallback) ─────────────────────────── */
:root,
[data-theme="light"] {
  --bg:          #faf9f6;
  --bg-2:        #f1ebe0;
  --bg-card:     #ffffff;
  --text:        #1c1810;
  --text-muted:  #7a6e60;
  --text-dim:    #b0a090;
  --border:      rgba(168,134,42,0.18);
  --border-md:   rgba(168,134,42,0.32);
  --nav-bg:      rgba(250,249,246,0.96);
  --nav-border:  rgba(168,134,42,0.14);
  --nav-text:    #1c1810;
  --nav-link:    #5a4e42;
  --ph-bg:       #f5ede0;
  --ph-border:   rgba(168,134,42,0.35);
  --ph-text:     #a8862a;
  --shadow:      0 2px 16px rgba(28,24,16,0.08);
  --shadow-md:   0 6px 32px rgba(28,24,16,0.12);
  --section-alt: var(--bg-2);
  color-scheme:  light;
}

/* ── DARK THEME ─────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:          #0d0f14;
  --bg-2:        #13161e;
  --bg-card:     #1a1d26;
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.55);
  --text-dim:    rgba(255,255,255,0.28);
  --border:      rgba(168,134,42,0.18);
  --border-md:   rgba(168,134,42,0.34);
  --nav-bg:      rgba(13,15,20,0.93);
  --nav-border:  rgba(168,134,42,0.18);
  --nav-text:    #ffffff;
  --nav-link:    rgba(255,255,255,0.65);
  --ph-bg:       rgba(168,134,42,0.06);
  --ph-border:   rgba(168,134,42,0.3);
  --ph-text:     rgba(168,134,42,0.7);
  --shadow:      0 2px 16px rgba(0,0,0,0.3);
  --shadow-md:   0 6px 40px rgba(0,0,0,0.45);
  --section-alt: var(--bg-2);
  color-scheme:  dark;
}

/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── DARK SECTIONS (always dark regardless of theme) ────────── */
/* Hero, CTA, Footer — keep the dark dramatic look */
.section-dark {
  background: #1c1810;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Static grid overlay inside dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,134,42,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,134,42,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
/* Grid animada solo en secciones sin foto de fondo (CTA, footer) */
.section-dark:not(.has-glow)::before {
  animation: gridShift 20s linear infinite;
}
.section-dark > * { position: relative; z-index: 1; }
/* Radial glow for hero specifically */
.section-dark.has-glow::after {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168,134,42,0.09) 0%, transparent 65%);
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridShift {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.5; }
  50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* Dark-section text helpers */
.section-dark .text-muted  { color: rgba(255,255,255,0.55); }
.section-dark .section-heading { color: #ffffff; }
.section-dark .section-tag { color: var(--gold); border-color: rgba(168,134,42,0.3); }

/* ── CORNER ACCENTS (hero only) ─────────────────────────────── */
.hero-corners .corner {
  position: absolute;
  width: 32px; height: 32px;
  opacity: 0.35;
  pointer-events: none;
}
.corner-tl { top:20px; left:20px;  border-top:2px solid var(--gold-sr); border-left:2px solid var(--gold-sr); }
.corner-tr { top:20px; right:20px; border-top:2px solid var(--gold-sr); border-right:2px solid var(--gold-sr); }
.corner-bl { bottom:20px; left:20px;  border-bottom:2px solid var(--gold-sr); border-left:2px solid var(--gold-sr); }
.corner-br { bottom:20px; right:20px; border-bottom:2px solid var(--gold-sr); border-right:2px solid var(--gold-sr); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.section       { padding: 96px 0; }
.section-alt   { background: var(--section-alt); }

/* ── PHOTO PLACEHOLDER ──────────────────────────────────────── */
/* Use anywhere a real photo will go — clearly visible marker */
.photo-ph {
  width: 100%;
  background: var(--ph-bg);
  border: 2px dashed var(--ph-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ph-text);
  padding: 40px 20px;
  transition: border-color 0.2s, background 0.35s;
}
.photo-ph:hover { border-color: var(--gold-cta); }
.photo-ph svg { width: 36px; height: 36px; opacity: 0.6; }
.photo-ph .ph-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.photo-ph .ph-dims {
  font-size: 12px;
  opacity: 0.45;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}
/* Size variants */
.photo-ph-hero    { aspect-ratio: 16/10; }
.photo-ph-panel   { aspect-ratio: 4/3;  }
.photo-ph-card    { aspect-ratio: 16/10; }
.photo-ph-square  { aspect-ratio: 1;    }
.photo-ph-wide    { aspect-ratio: 21/9; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-cta);
  color: #000;
  border-color: var(--gold-cta);
  box-shadow: 0 0 0 1px rgba(212,170,58,0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(212,170,58,0.35);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--gold-cta);
  border-color: var(--border-md);
}
.btn-outline:hover {
  border-color: var(--gold-cta);
  background: rgba(212,170,58,0.08);
}
/* Outline on dark sections */
.section-dark .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.section-dark .btn-outline:hover {
  border-color: var(--gold-cta);
  color: var(--gold-cta);
  background: rgba(212,170,58,0.08);
}
.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(168,134,42,0.12);
  color: var(--gold-cta);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.btn-emergency svg { width: 13px; height: 13px; }
.btn-emergency:hover {
  background: var(--gold-sr);
  color: #000;
  border-color: var(--gold-sr);
  transform: translateY(-1px);
}
.btn-estimate { width:100%; justify-content:center; margin-top:16px; padding:14px 20px; font-size:15px; }
.btn-lg { padding:15px 36px; font-size:15px; letter-spacing:2.5px; }

/* ── THEME TOGGLE BUTTON ────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--ph-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
  color: var(--gold-sr);
}
.theme-toggle:hover {
  border-color: var(--gold-cta);
  background: rgba(168,134,42,0.12);
  transform: rotate(20deg);
}
.theme-toggle svg { width: 17px; height: 17px; }
/* Show sun on dark, moon on light */
[data-theme="light"]  .icon-sun  { display: none; }
[data-theme="light"]  .icon-moon { display: block; }
[data-theme="dark"]   .icon-sun  { display: block; }
[data-theme="dark"]   .icon-moon { display: none; }

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: rgba(168,134,42,0.06);
}
.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  transition: color 0.35s;
}
.section-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.text-gold    { color: var(--gold-cta); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.45s ease, border-color 0.45s ease,
              box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}
.nav-wrapper.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 15px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height 0.45s ease;
}
.nav-logo img {
  height: 90px;
  width: auto;
  transition: height 0.45s ease, filter 0.35s ease;
}
[data-theme="light"] .nav-logo img {
  filter: drop-shadow(0 1px 4px rgba(168,134,42,0.2));
}
[data-theme="dark"] .nav-logo img {
  filter: drop-shadow(0 0 14px rgba(168,134,42,0.3));
}
.nav-logo:hover img { filter: drop-shadow(0 0 20px rgba(212,170,58,0.5)); }

/* ── Transparent + expanded nav (home, before scroll) ─────── */
.page-home .nav-wrapper:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.page-home .nav-wrapper:not(.scrolled) .nav-container {
  height: 230px;
  align-items: flex-start;
  padding-top: 16px;
}
.page-home .nav-wrapper:not(.scrolled) .nav-logo img {
  height: 200px;
  filter: drop-shadow(0 0 20px rgba(212,170,58,0.6));
  margin-right: 90px;
}
.page-home .nav-wrapper:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.82);
}
.page-home .nav-wrapper:not(.scrolled) .nav-link:hover,
.page-home .nav-wrapper:not(.scrolled) .nav-link.active {
  color: #ffffff;
}
.page-home .nav-wrapper:not(.scrolled) .nav-link::after {
  background: var(--gold-light);
}
.page-home .nav-wrapper:not(.scrolled) .theme-toggle {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.page-home .nav-wrapper:not(.scrolled) .theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.page-home .nav-wrapper:not(.scrolled) .hamburger span {
  background: rgba(255,255,255,0.85);
}

.nav-menu { display:flex; align-items:center; gap:28px; flex:1; }

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nav-link);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold-cta);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width:100%; }

.nav-phone-wrap { display:flex; align-items:center; }
.nav-phone-big { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:800; color:var(--gold-cta); letter-spacing:1px; }

.nav-cta { margin-left: auto; font-size: 18px; letter-spacing: 1px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold-cta);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 15px 28px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.35s;
}
.mobile-menu.open { display: block; }
.mobile-nav-list  { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: block;
  padding: 11px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold-cta); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: calc(180px + 48px) 0 0;
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  position: relative;
}
/* Gradient veil at top so nav stays readable over any bg image */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner,
.hero-roofline { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 0 15px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content {}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold-sr);
  padding-left: 12px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.slogan-small {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(168,134,42,0.2);
  padding: 6px 12px;
  border-radius: 2px;
}
.trust-pill svg { width: 12px; height: 12px; stroke: var(--gold); }

/* Hero photo side */
.hero-photo {
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-photo .photo-ph { border-radius: var(--radius-lg); }

.hero-visual {
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

/* Roofline divider at bottom of hero */
.hero-roofline {
  color: var(--gold-sr);
  opacity: 0.08;
  line-height: 0;
}
.hero-roofline svg { width: 100%; height: 80px; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  transition: background 0.35s;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 4px;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-cta);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider { width:1px; height:36px; background:var(--border); flex-shrink:0; }
.stat-stars .stars { display:flex; gap:3px; margin-bottom:4px; }
.stat-stars .stars svg { width:15px; height:15px; }

/* ── SERVICES TABS ──────────────────────────────────────────── */
.svc-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg-card);
  transition: background 0.35s, border-color 0.35s;
}
.svc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  text-align: left;
}
.svc-tab:last-child { border-right: none; }
.svc-tab:hover { background: rgba(168,134,42,0.06); color: var(--text); }
.svc-tab.active { background: var(--gold-sr); color: #fff; }
.svc-tab.active .tab-num { color: #fff; }
.tab-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-cta);
  line-height: 1;
}
.tab-label { font-weight: 600; }

.svc-panel { display: none; animation: fadeUp 0.3s ease; }
.svc-panel.active { display: block; }
.svc-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.svc-panel-text h3 { font-size: 30px; font-weight: 800; color: var(--text); margin-bottom: 14px; transition: color 0.35s; }
.svc-panel-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.svc-list { margin-bottom: 32px; display:flex; flex-direction:column; gap:10px; }
.svc-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.svc-list li::before { content:'—'; position:absolute; left:0; color:var(--gold-sr); }

.svc-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.svc-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition), background 0.35s;
  box-shadow: var(--shadow);
}
.svc-icon-card:hover { border-color: var(--gold-sr); transform: translateY(-3px); }
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(168,134,42,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--gold-cta); }
.svc-icon-card span { font-size: 12px; font-weight: 600; color: var(--text-muted); }

.svc-panel-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background 0.35s;
  box-shadow: var(--shadow);
}
.feature-card:hover { border-color: var(--gold-sr); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(168,134,42,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 21px; height: 21px; stroke: var(--gold-cta); }
.feature-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color 0.35s; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── ALL SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: border-color var(--transition), transform var(--transition), background 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--gold-sr); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-num {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  color: rgba(168,134,42,0.1);
  line-height: 1;
}
.service-card-icon {
  width: 42px; height: 42px;
  background: rgba(168,134,42,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card-icon svg { width: 20px; height: 20px; stroke: var(--gold-cta); }
.service-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color 0.35s; }
.service-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.service-card-arrow { display:block; margin-top:14px; font-size:15px; color:var(--gold-sr); transition: transform var(--transition); }
.service-card:hover .service-card-arrow { transform: translateX(4px); }

/* ── RECENT WORK STRIP ──────────────────────────────────────── */
.recent-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-item .photo-ph { border-radius: 0; border: none; }
.work-item-label {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 14px;
}
.work-item-label strong { font-size: 13px; font-weight: 700; color: var(--text); display: block; }
.work-item-label span   { font-size: 11px; color: var(--text-muted); }

/* ── SERVICE AREA ───────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}
.area-text .section-tag { display:inline-block; margin-bottom:16px; }
.area-text .section-heading { text-align:left; margin-bottom:14px; }
.area-text > p { font-size:15px; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.area-cities { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.area-cities span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 2px;
  background: rgba(168,134,42,0.04);
  transition: background 0.35s, border-color 0.35s;
}
.area-note { font-size:13px; color:var(--text-dim); font-style:italic; margin-bottom:24px; padding-left:12px; border-left:2px solid var(--gold-sr); }
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow);
  transition: background 0.35s, border-color 0.35s;
}
.area-card-item { display:flex; align-items:flex-start; gap:14px; }
.area-card-item svg { width:18px; height:18px; flex-shrink:0; stroke:var(--gold-cta); margin-top:2px; }
.area-card-item strong { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:2px; transition:color 0.35s; }
.area-card-item span, .area-card-item a { font-size:12px; color:var(--text-muted); }
.area-card-item a:hover { color:var(--gold-cta); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:20px 0; background:none; border:none; cursor:pointer;
  font-family:'Outfit',sans-serif; font-size:15px; font-weight:600;
  color:var(--text); text-align:left; gap:20px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold-cta); }
.faq-icon { font-size:20px; font-weight:300; color:var(--gold-cta); flex-shrink:0; transition:transform var(--transition); line-height:1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display:none; padding:0 0 20px; }
.faq-item.open .faq-a { display:block; }
.faq-a p { font-size:14px; color:var(--text-muted); line-height:1.8; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background-image: url('/images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.78);
  z-index: 0;
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 96px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-text .section-tag { display:inline-block; margin-bottom:12px; }
.cta-text .section-heading { text-align:left; margin-bottom:10px; font-size:clamp(22px,2.8vw,34px); }
.cta-text p { font-size:15px; color:rgba(255,255,255,0.55); max-width:480px; }
.cta-actions { display:flex; flex-direction:column; gap:12px; flex-shrink:0; }

/* ── PRIVACY PAGE ───────────────────────────────────────────── */
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.privacy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.privacy-body h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.privacy-body p, .privacy-body li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.privacy-body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.privacy-body a { color: var(--gold-cta); }
.privacy-body a:hover { color: var(--gold-light); }
.privacy-body code {
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero.section-dark::before { animation: none; } /* no animated grid on photo bg */
.page-hero.section-dark .section-heading { color: #ffffff; }
.page-hero.section-dark .section-body    { color: rgba(255,255,255,0.70); }
.page-hero.section-dark .section-tag     { color: var(--gold); border-color: rgba(168,134,42,0.4); }
.ph-contact  { background-image: url('/images/contact-bg.webp'); }
.ph-portfolio { background-image: url('/images/hero-bg.webp'); background-position: center 30%; }
.ph-services  { background-image: url('/images/why-photo.webp'); }
.page-hero-inner {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ── SERVICES DETAIL PAGE ───────────────────────────────────── */
.services-detail-list { display:flex; flex-direction:column; gap:40px; }
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  align-items: stretch;
  height: 420px;
  transition: border-color var(--transition), background 0.35s;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-detail-card:hover { border-color: var(--gold-sr); }
.service-detail-card-reverse {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}
.service-detail-header { display:flex; align-items:flex-start; gap:22px; margin-bottom:18px; }
.service-detail-icon {
  width:52px; height:52px;
  background: rgba(168,134,42,0.1);
  border-radius: var(--radius-md);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.service-detail-icon svg { width:24px; height:24px; stroke:var(--gold-cta); }
.service-detail-header h2 { font-size:22px; font-weight:800; color:var(--text); margin-bottom:6px; transition:color 0.35s; }
.service-detail-short {
  font-size:14px; color:var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.service-detail-long  {
  font-size:15px; color:var(--text-muted); line-height:1.8; margin-bottom:22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.service-detail-img {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-detail-card-reverse .service-detail-img {
  order: 2;
}
.service-detail-card-reverse .service-detail-body {
  order: 1;
}
.service-detail-body {
  height: 100%;
  padding: 40px 42px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.service-detail-body .btn { margin-top: auto; flex-shrink: 0; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.04); }

/* ── WHY SPLIT ──────────────────────────────────────────────── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.why-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.why-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold-cta);
  color: #1c1810;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.why-badge svg { width: 28px; height: 28px; stroke: #1c1810; flex-shrink: 0; }
.why-badge strong { display: block; font-size: 22px; font-weight: 900; line-height: 1; }
.why-badge span   { font-size: 12px; font-weight: 600; opacity: 0.75; }
.why-content .section-tag { margin-bottom: 10px; display: inline-block; }
.why-content .features-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
}

/* ── BEFORE / AFTER ─────────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.ba-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.ba-label-before { background: rgba(28,24,16,0.75); color: rgba(255,255,255,0.75); }
.ba-label-after  { background: var(--gold-cta); color: #1c1810; }
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  font-size: 13px; font-weight: 600; color: #fff;
}
.ba-divider {
  width: 48px; height: 48px;
  background: var(--gold-cta);
  border-radius: 50%;
  justify-self: center;
  margin: 16px 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(168,134,42,0.35);
}
.ba-divider svg { width: 22px; height: 22px; stroke: #1c1810; }

@media (max-width: 767px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 680px;
  }
}

/* ── FAQ SPLIT ──────────────────────────────────────────────── */
.faq-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-photo {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.faq-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s;
}
.faq-photo-card strong { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.faq-photo-card span   { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.faq-content .section-tag { margin-bottom: 8px; display: inline-block; }

/* ── PORTFOLIO PAGE ─────────────────────────────────────────── */
.portfolio-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold-sr); color: var(--text); }
.filter-btn.active { background: var(--gold-sr); color: #000; border-color: var(--gold-sr); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background 0.35s;
  box-shadow: var(--shadow);
}
.portfolio-card:hover { transform: translateY(-5px); border-color: var(--gold-sr); box-shadow: var(--shadow-md); }
.portfolio-img-wrap { position:relative; aspect-ratio:4/3; overflow:hidden; }
.portfolio-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.portfolio-card:hover .portfolio-img-wrap img { transform:scale(1.05); }
.portfolio-img-wrap .photo-ph { border-radius:0; border:none; height:100%; }
.portfolio-overlay { position:absolute; bottom:12px; left:12px; }
.portfolio-tag {
  font-family:'Barlow Condensed',sans-serif; font-size:10px;
  font-weight:700; letter-spacing:2px; text-transform:uppercase;
  background:var(--gold-sr); color:#000; padding:4px 10px; border-radius:2px;
}
.portfolio-info { padding: 18px; }
.portfolio-info h3 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:7px; transition:color 0.35s; }
.portfolio-location { display:flex; align-items:center; gap:5px; font-size:12px; color:var(--text-muted); margin-bottom:6px; }
.portfolio-location svg { width:13px; height:13px; }
.portfolio-desc { font-size:12px; color:var(--text-dim); line-height:1.6; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 400px; gap:72px; align-items:start; }
.contact-form-wrap h2 { font-size:24px; font-weight:800; color:var(--text); margin-bottom:8px; transition:color 0.35s; }
.contact-form-wrap > p { font-size:14px; color:var(--text-muted); margin-bottom:28px; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group label {
  font-family:'Barlow Condensed',sans-serif; font-size:10px;
  font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-muted);
}
.required { color:var(--gold-cta); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color var(--transition), background 0.35s, color 0.35s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-cta); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select option { background:var(--bg-2); color:var(--text); }
.form-note { font-size:13px; color:var(--text-dim); font-style:italic; margin-top:10px; min-height:20px; }
.form-note--success { color:#4caf7d; font-style:normal; font-weight:600; }
.form-note--error   { color:#e05555; font-style:normal; font-weight:600; }

.captcha-group label { margin-bottom:6px; }
.captcha-row { display:flex; align-items:center; gap:14px; }
.captcha-question { font-size:15px; font-weight:700; color:var(--text); white-space:nowrap; }
.captcha-row input { width:120px; flex-shrink:0; }

.contact-info-wrap h3 { font-size:22px; font-weight:800; color:var(--text); margin-bottom:8px; transition:color 0.35s; }
.contact-info-wrap > p { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:28px; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.contact-detail-icon {
  width:42px; height:42px;
  background:rgba(168,134,42,0.1);
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-detail-icon svg { width:17px; height:17px; stroke:var(--gold-cta); }
.contact-detail strong { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:3px; transition:color 0.35s; }
.contact-detail span { font-size:13px; color:var(--text-muted); display:block; }
.contact-detail em   { font-size:11px; color:var(--text-dim); margin-top:3px; display:block; }
.contact-link-gold { font-size:15px; font-weight:700; color:var(--gold-cta); }
.contact-link-gold:hover { color:var(--gold-light); }
.contact-sub { font-size:11px; color:var(--text-dim); }
.contact-emergency { display:inline-block; margin-top:3px; font-size:11px; font-weight:700; color:var(--gold-cta); letter-spacing:1px; }
.contact-vcard-box {
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(168,134,42,0.06);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
}
.contact-vcard-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.contact-vcard-box p {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact-vcard-btn {
  width: 100%;
  justify-content: center;
}
.emergency-box {
  margin-top:28px; background:rgba(168,134,42,0.08);
  border:1px solid var(--border-md); border-radius:var(--radius-md);
  padding:18px 22px; display:flex; align-items:center; gap:14px;
}
.emergency-box svg { width:22px; height:22px; flex-shrink:0; stroke:var(--gold-cta); }
.emergency-box strong { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:3px; transition:color 0.35s; }
.emergency-box a { font-size:17px; font-weight:800; color:var(--gold-cta); }
.emergency-box a:hover { color:var(--gold-light); }

/* ── WhatsApp floating button ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: #ffffff;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.wa-float svg { width: 30px; height: 30px; }

/* ── FOOTER (always dark) ───────────────────────────────────── */
.footer {
  background: #141210;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold-sr), var(--gold-cta), var(--gold-sr), transparent) 1;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,134,42,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,134,42,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  padding: 52px 64px 40px;
}
.footer-grid > * { padding: 0 26px; border-right: 1px solid rgba(168,134,42,0.12); }
.footer-grid > *:first-child { padding-left: 0; }
.footer-grid > *:last-child  { border-right: none; padding-right: 0; }
.footer-logo-link { display:block; margin-bottom:18px; }
.footer-logo {
  height: 145px; width: auto;
  filter: drop-shadow(0 0 16px rgba(168,134,42,0.28));
  transition: filter var(--transition);
}
.footer-logo:hover { filter: drop-shadow(0 0 28px rgba(212,170,58,0.55)); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.75; margin-bottom:22px; }
.footer-social { display:flex; gap:9px; }
.social-btn {
  width:36px; height:36px;
  background:rgba(168,134,42,0.1);
  border:1px solid rgba(168,134,42,0.2);
  border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
  color:var(--gold-sr); transition:all var(--transition);
}
.social-btn svg { width:15px; height:15px; }
.social-btn:hover { background:var(--gold-sr); color:#000; border-color:var(--gold-sr); transform:translateY(-3px); }
.footer-col-title {
  font-family:'Barlow Condensed',sans-serif; font-size:10px;
  font-weight:700; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold); border-bottom:1px solid rgba(168,134,42,0.18);
  padding-bottom:10px; margin-bottom:18px;
}
.footer-contact-item { display:flex; align-items:flex-start; gap:9px; margin-bottom:14px; }
.footer-contact-item svg { width:14px; height:14px; flex-shrink:0; stroke:var(--gold-sr); margin-top:2px; }
.footer-contact-item > div { display:flex; flex-direction:column; }
.footer-link-gold { font-size:13px; font-weight:600; color:var(--gold-cta); transition:color var(--transition); }
.footer-link-gold:hover { color:var(--gold-light); }
.footer-small { font-size:10px; color:rgba(255,255,255,0.28); margin-top:1px; }
.footer-vcard-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-cta);
  transition: color var(--transition);
}
.footer-vcard-link:hover { color: var(--gold-light); }
.footer-hours {
  background:rgba(168,134,42,0.07); border:1px solid rgba(168,134,42,0.15);
  border-radius:var(--radius); padding:12px; margin-bottom:14px;
  display:flex; flex-direction:column; gap:7px;
}
.hours-row { display:flex; align-items:baseline; gap:6px; font-size:12px; }
.hours-label { color:rgba(255,255,255,0.3); min-width:70px; font-size:11px; }
.hours-days  { color:rgba(255,255,255,0.55); flex:1; }
.hours-time  { color:#fff; font-weight:600; }
.hours-emergency { color:var(--gold-cta); }
.footer-area-main { font-size:14px; font-weight:700; color:#fff; text-align:center; margin-bottom:10px; }
.footer-area-list { font-size:12px; color:rgba(255,255,255,0.45); text-align:center; line-height:2; margin-bottom:14px; }
.footer-area-note { font-size:11px; color:rgba(255,255,255,0.28); font-style:italic; text-align:center; line-height:1.6; padding-top:10px; border-top:1px solid rgba(168,134,42,0.12); }
.footer-cta-text { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.6; margin-bottom:18px; text-align:center; }
.footer-cta-box {
  background:rgba(168,134,42,0.07); border:1px solid rgba(168,134,42,0.18);
  border-radius:var(--radius-md); padding:22px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:5px;
}
.footer-cta-label { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.28); }
.footer-phone-big { font-family:'Barlow Condensed',sans-serif; font-size:26px; font-weight:800; color:var(--gold-cta); letter-spacing:1px; transition:color var(--transition); }
.footer-phone-big:hover { color:var(--gold-light); }
.footer-whatsapp { display:flex; align-items:center; gap:5px; font-size:11px; color:#25d366; }
.footer-whatsapp svg { width:12px; height:12px; fill:#25d366; }
.footer-respond { font-size:10px; color:rgba(255,255,255,0.25); font-style:italic; margin-top:3px; }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 64px; border-top:1px solid rgba(168,134,42,0.1);
  font-size:11px; color:rgba(255,255,255,0.25); letter-spacing:0.5px;
}
.footer-bottom-links { display:flex; gap:12px; align-items:center; }
.footer-bottom-links a { color:rgba(255,255,255,0.25); transition:color var(--transition); }
.footer-bottom-links a:hover { color:var(--gold-cta); }
.footer-bottom-links span { color:rgba(168,134,42,0.25); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid, .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .cta-inner { padding-left: 24px; padding-right: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .recent-work-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .area-visual { max-width: 500px; }
  .svc-panel-grid { gap: 40px; }
  .service-detail-card,
  .service-detail-card-reverse {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.5fr);
    height: 380px;
  }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-grid > * { border-right: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-tabs { flex-direction: column; }
  .svc-tab { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { width: 50%; padding: 18px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .hero-inner { padding-bottom: 56px; }
  .cta-inner { padding: 64px 20px; }
  .section { padding: 60px 0; }
  .features-grid, .services-grid, .portfolio-grid, .recent-work-grid { grid-template-columns: 1fr; }
  .why-split { grid-template-columns: 1fr; }
  .why-photo { display: none; }
  .why-content .features-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; padding: 36px 20px 28px; }
  .footer-bottom { padding: 12px 20px; flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .svc-panel-grid { grid-template-columns: 1fr; }
  .service-detail-card,
  .service-detail-card-reverse {
    grid-template-columns: 1fr;
    height: auto;
  }
  .service-detail-img,
  .service-detail-card-reverse .service-detail-img,
  .service-detail-card-reverse .service-detail-body {
    order: initial;
  }
  .service-detail-img {
    min-height: 260px;
  }
  .service-detail-body {
    height: auto;
    padding: 28px 24px 30px;
  }
  .service-detail-short,
  .service-detail-long {
    display: block;
    overflow: visible;
  }
  .faq-split { grid-template-columns: 1fr; gap: 32px; }
  .faq-photo { position: static; display: none; }

  /* ── NAV: mobile layout ─────────────────────────────────────── */
  /* Cancel the desktop-only expanded home nav */
  .page-home .nav-wrapper:not(.scrolled) .nav-container {
    height: auto;
    align-items: center;
    padding-top: 0;
  }
  .page-home .nav-wrapper:not(.scrolled) .nav-logo img {
    height: 64px;
    margin-right: 0;
    filter: drop-shadow(0 0 14px rgba(168,134,42,0.4));
  }

  /* Stack logo + phone vertically; hamburger stays on the right */
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    height: auto;
    padding: 10px 16px;
    gap: 2px 0;
  }
  .nav-logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .nav-logo img { height: 64px; }
  .nav-phone-wrap {
    grid-column: 1;
    grid-row: 2;
  }
  .nav-phone-big {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .hamburger {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .theme-toggle {
    display: none;
  }

  /* Hero top padding: match the compact mobile nav */
  .hero { padding-top: 110px; }
  .page-home .nav-wrapper:not(.scrolled) { background: rgba(0,0,0,0.55); }
}

@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── GOOGLE REVIEWS ─────────────────────────────────────────── */
.reviews-google-badge { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 12px; }
.reviews-score-row { display: flex; align-items: center; gap: 8px; }
.reviews-stars-sm { display: flex; gap: 2px; }
.reviews-score { font-size: 26px; font-weight: 800; color: var(--gold-cta); line-height: 1; }
.reviews-count-label { font-size: 13px; color: var(--text-muted); }

.reviews-carousel-wrap { overflow: hidden; margin: 0 -4px; }
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4px 20px;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover { border-color: var(--border-md); box-shadow: var(--shadow-md); }

.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--av, #4285F4);
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; font-size: 14px; color: var(--text); }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: #d4aa3a; font-size: 17px; letter-spacing: 2px; }
.review-text {
  font-size: 14px; line-height: 1.65; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1;
}

.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.reviews-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-md); background: var(--bg-card);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.reviews-nav-btn:hover { background: var(--gold-cta); border-color: var(--gold-cta); color: #000; }
.reviews-nav-btn svg { width: 18px; height: 18px; }

.reviews-dots { display: flex; gap: 7px; align-items: center; }
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--border-md); cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.reviews-dot.active { background: var(--gold-cta); transform: scale(1.35); }

.reviews-footer { text-align: center; margin-top: 28px; }
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--text-muted);
  transition: color var(--transition);
}
.reviews-google-link:hover { color: var(--text); }

@media (max-width: 1023px) { .review-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 639px)  { .review-card { flex: 0 0 calc(100% - 8px); } }

.stat-stars-row { display: flex; align-items: center; gap: 6px; }

.hero-phone-mobile { display: none; }
@media (max-width: 767px) { .hero-phone-mobile { display: inline-flex; } }
