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

:root {
  --bg:          #0C0C0B;
  --bg-2:        #131310;
  --bg-3:        #1A1915;
  --bg-card:     #1E1D18;
  --text:        #F0EBE0;
  --text-muted:  #9B9480;
  --text-dim:    #625E52;
  --amber:       #C8872A;
  --amber-lt:    #E09A35;
  --amber-pale:  rgba(200,135,42,0.12);
  --amber-bdr:   rgba(200,135,42,0.28);
  --red:         #D42B2B;
  --red-dark:    #A81F1F;
  --red-pale:    rgba(212,43,43,0.10);
  --border:      rgba(240,235,224,0.07);
  --radius:      4px;
  --sh:          0 4px 24px rgba(0,0,0,0.45);
  --sh-lg:       0 12px 48px rgba(0,0,0,0.65);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,12,11,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--amber-lt); }

.btn-nav {
  background: var(--amber);
  color: #0C0C0B;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--amber-lt); transform: translateY(-1px); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 5%;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mm-emerg { color: #FF6B6B !important; }
.mobile-menu .mm-cta {
  margin-top: 1rem;
  background: var(--amber);
  color: #0C0C0B !important;
  text-align: center;
  padding: 12px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ── NAV DROPDOWN ── */
.nav-has-dd { position: relative; }
.nav-has-dd > a::after { content: ' ▾'; font-size: 0.65em; opacity: 0.55; }
.nav-dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 12px 0 6px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  list-style: none;
}
.nav-has-dd:hover .nav-dd,
.nav-has-dd:focus-within .nav-dd { display: block; }
.nav-dd li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dd li a:hover { color: var(--text); background: var(--bg-3); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--amber); }
.faq-btn svg { flex-shrink: 0; color: var(--amber); transition: transform 0.3s; }
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-ans {
  padding: 0 2rem 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-ans a { color: var(--amber); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #0C0C0B;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,135,42,0.35);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-emergency:hover {
  background: #E83333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,0.4);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 64px 5% 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,11,0.93) 0%,
    rgba(12,12,11,0.65) 45%,
    rgba(12,12,11,0.75) 100%
  );
}

/* Grain texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-bdr);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}
.hero-trust svg { color: var(--amber); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}

.hero-photos {
  position: relative;
  height: 500px;
}

.hero-photo-main {
  position: absolute;
  top: 0; right: 0;
  width: 84%;
  height: 420px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--sh-lg);
  filter: brightness(0.88) saturate(0.85);
}

.hero-photo-sm {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 250px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--bg);
  filter: brightness(0.88) saturate(0.85);
}

.hero-pill {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(12,12,11,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--amber-bdr);
  padding: 12px 16px;
  border-radius: 3px;
  text-align: center;
}
.hero-pill .pnum {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-pill .plbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
.section { padding: 6rem 5%; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title em { font-style: normal; color: var(--amber); }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.svc-card {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--bg-3); }

.svc-card.emerg { background: var(--red-pale); }
.svc-card.emerg::after { background: var(--red); }
.svc-card.emerg .svc-icon { background: rgba(212,43,43,0.15); color: var(--red); }
.svc-card.emerg h3 { color: #FF7070; }

.svc-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.svc-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   URGENCIAS 24H
══════════════════════════════════ */
.urgencias {
  background: var(--red);
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}
.urgencias::after {
  content: '24H';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.urg-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.urg-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.urg-tag::before { content: ''; display: block; width: 28px; height: 1px; background: rgba(255,255,255,0.5); }

.urg-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.urg-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.65;
}
.urg-desc strong { color: #fff; }

.urg-cta { text-align: right; flex-shrink: 0; }

.urg-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}
.urg-phone:hover { opacity: 0.85; }

.btn-urgente {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red-dark);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  animation: pulse-btn 2.5s infinite;
}
.btn-urgente:hover {
  background: #F5EBE0;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

/* ══════════════════════════════════
   ABOUT / POR QUÉ ELEGIRNOS
══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-imgs {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 360px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--sh-lg);
  filter: brightness(0.85) saturate(0.8);
}
.about-img-sm {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%;
  height: 210px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--bg);
  filter: brightness(0.85) saturate(0.8);
}
.about-badge {
  position: absolute;
  top: 50%; right: -1rem;
  transform: translateY(-50%);
  background: var(--amber);
  color: #0C0C0B;
  padding: 16px 12px;
  border-radius: 3px;
  text-align: center;
  min-width: 76px;
  box-shadow: var(--sh);
}
.about-badge .bnum {
  font-family: 'Oswald', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .blbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 2px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pillar-ico {
  width: 38px; height: 38px;
  background: var(--amber-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h4 {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.pillar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════
   PORTFOLIO
══════════════════════════════════ */
.portfolio { background: var(--bg-2); }

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

.pf-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}
.pf-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s;
  filter: brightness(0.7) saturate(0.65);
}
.pf-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.5);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.pf-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.pf-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.pf-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--amber-bdr); }

.testi-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber-pale);
  border: 2px solid var(--amber-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.testi-loc {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1px;
}

/* ══════════════════════════════════
   ZONES
══════════════════════════════════ */
.zones { background: var(--bg-2); }

.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.zones-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.zone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.zone-item:hover { border-color: var(--amber-bdr); color: var(--text); }
.zone-item svg { color: var(--amber); flex-shrink: 0; }
.zone-hl {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--text);
  margin-right: 1px;
}

.zones-cta {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--amber-pale);
  border: 1px solid var(--amber-bdr);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.zones-cta strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.zones-cta p { font-size: 0.85rem; color: var(--text-muted); }

/* Spain map SVG placeholder */
.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
  overflow: hidden;
  position: relative;
}
.map-box svg.map-icon { color: var(--amber); opacity: 0.4; }

/* Decorative map dots */
.map-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.map-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: map-pulse 2.5s infinite;
}
.map-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 20px; height: 20px;
  background: rgba(200,135,42,0.2);
  border-radius: 50%;
}
.map-dot:nth-child(1) { top: 28%; left: 52%; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 48%; left: 40%; animation-delay: 0.6s; }
.map-dot:nth-child(3) { top: 58%; left: 30%; animation-delay: 1.2s; }
.map-dot:nth-child(4) { top: 35%; left: 45%; animation-delay: 0.3s; }
.map-dot:nth-child(5) { top: 55%; left: 48%; animation-delay: 0.9s; }
.map-dot:nth-child(6) { top: 40%; left: 33%; animation-delay: 1.5s; }
@keyframes map-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.map-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  margin-bottom: 1.75rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.contact-item:hover { border-color: var(--amber-bdr); background: var(--bg-3); }

.ci-icon {
  width: 36px; height: 36px;
  background: var(--amber-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.ci-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.ci-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.promise-box {
  padding: 1.5rem;
  background: var(--amber-pale);
  border: 1px solid var(--amber-bdr);
  border-radius: var(--radius);
}
.promise-box .ptag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.promise-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Form */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.form-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }

.fg label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--amber);
  background: rgba(200,135,42,0.05);
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-dim); }
.fg textarea { resize: vertical; min-height: 96px; }

/* custom select arrow */
.fg select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%239B9480' stroke-width='1.8' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.fg select option { background: #1E1D18; color: var(--text); }

.form-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  justify-content: center;
}
#formSuccess {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(50,185,100,0.10);
  border: 1px solid rgba(50,185,100,0.3);
  border-radius: var(--radius);
  color: #5CCC7A;
  font-size: 0.9rem;
  text-align: center;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5% 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 270px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-col .red-link { color: #FF7070 !important; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--text-muted); }

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   ARTICLE / BLOG
══════════════════════════════════ */
.article-body { max-width: 760px; }
.article-body p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.article-body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; text-transform: uppercase; }
.article-body h3 { font-size: 1.15rem; margin: 1.75rem 0 0.75rem; color: var(--amber); text-transform: uppercase; letter-spacing: 0.02em; }
.article-body ul, .article-body ol { color: var(--text-muted); margin: 0 0 1.25rem 1.25rem; line-height: 1.8; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--amber); }
.article-meta { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: border-color 0.2s, background 0.2s;
}
.blog-card:hover { border-color: var(--amber-bdr); background: var(--bg-3); }
.blog-card .section-tag { margin-bottom: 0.75rem; }
.blog-card h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .map-box { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

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

  .urg-inner { grid-template-columns: 1fr; }
  .urg-cta { text-align: left; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .zones-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 5%; }
}

@keyframes spin { to { transform: rotate(360deg); } }
