/* ============================================================
   BENITEZ TREE SERVICE — MAIN STYLESHEET
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.15; margin: 0 0 0.5em; color: var(--color-ink); }
h1 { font-weight: 800; font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; text-align: justify; text-justify: inter-word; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: clamp(3.5rem, 7vw, 7rem) 0; position: relative; }
.section-alt { background: var(--color-bg-alt); }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}
.section-head { max-width: 760px; margin-bottom: 2.8rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.1rem; color: #445248; max-width: 62ch; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem; border-radius: 999px; font-weight: 700;
  font-size: 1rem; border: 2px solid transparent; white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #E15B5B 0%, #B72121 42%, #7A1616 100%);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 4px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.15);
}
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover {
  background: linear-gradient(135deg, #E97878 0%, #C22626 42%, #8A1919 100%);
  transform: translateY(-2px); box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -2px 4px rgba(0,0,0,0.3);
}
.btn-outline { background: transparent; border-color: var(--color-brand-white); color: var(--color-brand-white); }
.btn-outline:hover { background: var(--color-brand-white); color: var(--color-primary-dark); }
.btn-outline-dark { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline-dark:hover { background: var(--color-primary); color: var(--color-text-inverse); }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55); transform: scale(0); animation: ripple 600ms ease-out; pointer-events: none; }
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* ---------- Skip link / a11y ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff; padding: 0.8rem 1.2rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent; padding: 1.1rem 0; transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled { background: rgba(251, 250, 246, 0.96); box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 0.7rem 0; backdrop-filter: blur(6px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo-mark { display: inline-flex; align-items: center; }
.logo-mark img { height: clamp(74px, 8vw, 120px); width: auto; display: block; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35)); transition: height 0.35s ease; }
.site-header.scrolled .logo-mark img { height: clamp(58px, 6vw, 92px); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); }
.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a { font-weight: 600; font-size: 0.96rem; color: var(--color-brand-white); position: relative; padding: 0.3rem 0; transition: color 0.35s ease; }
.site-header.scrolled .main-nav a { color: var(--color-ink); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--color-accent); transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }

/* Dropdown de Services (desktop) */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-caret { transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-caret, .nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  width: 300px; background: var(--color-cream); border-radius: 14px; box-shadow: var(--shadow-strong);
  padding: 0.6rem; opacity: 0; pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 2px); }
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.7rem; border-radius: 9px;
  color: var(--color-ink) !important; font-weight: 600; font-size: 0.85rem;
}
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover { background: var(--color-bg-alt); color: var(--color-primary) !important; }
.nav-dropdown-panel a svg { flex-shrink: 0; color: var(--color-accent); }

/* Accordion de Services (mobile) */
.mobile-nav-item.has-children { width: 100%; }
.mobile-nav-toggle-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; }
.mobile-nav-toggle-row a { flex: 0 0 auto; }
.mobile-nav-caret-btn { background: none; border: none; color: #fff; display: flex; align-items: center; justify-content: center; padding: 0.4rem; }
.mobile-nav-caret-btn svg { transition: transform 0.25s ease; }
.mobile-nav-item.is-open .mobile-nav-caret-btn svg { transform: rotate(180deg); }
.mobile-nav-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; width: 100%; text-align: center; }
.mobile-nav-item.is-open .mobile-nav-submenu { max-height: 420px; }
.mobile-nav-submenu a { font-size: 1.02rem; font-weight: 600; color: rgba(255,255,255,0.85); padding: 0.45rem 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; gap: 0.35rem; font-weight: 700; font-size: 0.85rem; }
.lang-switch a { padding: 0.25rem 0.55rem; border-radius: 6px; color: var(--color-brand-white); border: 1px solid rgba(255,255,255,0.5); transition: 0.3s ease; }
.site-header.scrolled .lang-switch a { color: var(--color-ink); border-color: rgba(23,35,27,0.25); }
.lang-switch a[aria-current="true"] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.header-phone { display: flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--color-brand-white); transition: color 0.35s ease; }
.site-header.scrolled .header-phone { color: var(--color-primary-dark); }
.nav-toggle { display: none; background: none; border: none; color: var(--color-brand-white); }
.site-header.scrolled .nav-toggle { color: var(--color-ink); }

/* ---------- HERO — Timed Card Opening ---------- */
.hero {
  position: relative; min-height: 80vh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--color-ink);
  padding-top: clamp(10rem, 15vw, 14rem); padding-bottom: clamp(1.4rem, 3.4vw, 2.2rem);
}
.hero-stage { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.15s ease, transform 6.5s ease;
  background-size: cover; background-position: center; transform: scale(1.08);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--overlay-dark) 0%, var(--overlay-dark-strong) 62%, rgba(10,16,12,0.92) 100%); }

/* Contenedor real (flujo normal) con todo el contenido inferior del hero */
.hero-bottom { position: relative; z-index: 2; width: min(1300px, 94%); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(1.6rem, 3.4vw, 2.4rem); }

.hero-caption {
  max-width: 680px; min-height: clamp(230px, 20vw, 300px);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.hero-caption .eyebrow { color: var(--color-brand-white); opacity: 0.85; }
.hero-heading-stack { position: relative; min-height: clamp(180px, 18vw, 310px); }
.hero-caption h1, .hero-caption h2.hero-headline {
  position: absolute; top: 0; left: 0; right: 0;
  color: var(--color-brand-white); text-shadow: 0 6px 30px rgba(0,0,0,0.4); max-width: 22ch;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem); line-height: 1.12;
  opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.hero-caption h1.is-visible, .hero-caption h2.hero-headline.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-caption p { color: rgba(255,255,255,0.88); max-width: 52ch; font-size: 1.08rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; position: relative; z-index: 5; }

/* Fila del slider: control de pausa + carrusel infinito al 60%, alineado a la derecha */
.hero-slider-row { display: flex; align-items: center; gap: 0.9rem; }
.hero-pause {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25); color: #fff; display: flex; align-items: center; justify-content: center;
}
.hero-pause:hover { background: var(--color-accent); border-color: var(--color-accent); }

.hero-cards-viewport {
  position: relative; width: 60%; margin-left: auto; overflow: hidden; border-radius: 14px;
}
@media (min-width: 861px) { .hero-cards-viewport { width: 60%; } }
.hero-cards {
  display: flex; width: 300%; /* 12 tarjetas (6 reales + 6 clones) a 1/12 c/u = 4 visibles */
  transition: transform 0.85s cubic-bezier(.45,0,.2,1);
}
.hero-card {
  position: relative; flex: 0 0 calc(100% / 12); width: calc(100% / 12);
  padding: 0 0.32rem; box-sizing: border-box; cursor: pointer;
}
.hero-card-inner {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  border: 2px solid rgba(255,255,255,0.18);
  opacity: 0; transform: translateY(30px) scale(0.9);
  transition: border-color 0.3s ease, transform 0.5s cubic-bezier(.2,.8,.2,1), opacity 0.5s ease;
}
.hero-cards-viewport.is-loaded .hero-card-inner { opacity: 1; transform: translateY(0) scale(1); }
.hero-card:nth-child(1) .hero-card-inner { transition-delay: 0.05s; }
.hero-card:nth-child(2) .hero-card-inner { transition-delay: 0.12s; }
.hero-card:nth-child(3) .hero-card-inner { transition-delay: 0.19s; }
.hero-card:nth-child(4) .hero-card-inner { transition-delay: 0.26s; }
.hero-card-inner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.05) 55%); }
.hero-card span { position: absolute; left: 0.55rem; right: 0.55rem; bottom: 0.5rem; z-index: 2; color: #fff; font-weight: 700; font-size: 0.72rem; line-height: 1.2; }
.hero-card:hover .hero-card-inner, .hero-card:focus-visible .hero-card-inner { border-color: var(--color-accent); transform: translateY(-3px) scale(1.02); }
.hero-card.is-active .hero-card-inner { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(183,33,33,0.35); }
.hero-progress-track { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.18); z-index: 3; }
.hero-progress { height: 100%; width: 0%; background: var(--color-accent); }
.hero-scroll-cue { display: none; text-align: right; color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Slideshow hero (other pages) ---------- */
.page-hero {
  position: relative; min-height: 62vh; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--color-ink); padding-top: clamp(10rem, 15vw, 14rem);
}
.page-hero .hero-slide { transition: opacity 2.2s ease; }
.page-hero-content { position: relative; z-index: 2; width: min(1200px, 92%); margin: 0 auto; padding-bottom: 3.5rem; }
.page-hero-content h1 { color: #fff; }
.breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0.8rem; }
.breadcrumb a { text-decoration: underline; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about-left { max-width: 460px; margin: 0 auto; }
.about-media { position: relative; }
.about-media img { border-radius: 20px; box-shadow: var(--shadow-strong); width: 100%; object-fit: cover; }
.about-media .img-primary {
  aspect-ratio: 4 / 3; height: auto;
  opacity: 0; transform: translateY(-46px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.about-media.is-visible .img-primary { opacity: 1; transform: translateY(0) scale(1); }
.about-media .img-secondary {
  position: absolute; width: 44%; aspect-ratio: 3 / 4; height: auto;
  bottom: -7%; left: -8%; border: 6px solid var(--color-cream);
  border-radius: 16px; box-shadow: var(--shadow-strong);
  opacity: 0; transform: translateY(52px) scale(0.85);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1) 0.25s, transform 0.8s cubic-bezier(.2,.8,.2,1) 0.25s;
}
.about-media.is-visible .img-secondary { opacity: 1; transform: translateY(0) scale(1); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.2rem; }
.stat-card { background: var(--color-bg-alt); border-radius: 14px; padding: 1.3rem 1rem; text-align: center; border: 1px solid rgba(47,95,65,0.12); }
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--color-primary); }
.stat-label { font-size: 0.82rem; font-weight: 600; color: #4a564d; }
.about-feature-list { margin-top: 1.6rem; display: grid; gap: 0.75rem; }
.about-feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; }
.about-feature-list svg { flex-shrink: 0; color: var(--color-accent); margin-top: 3px; }

/* ---------- Services grid (uniform 2x3) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--color-ink); box-shadow: var(--shadow-soft); transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.5s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,17,0.05) 30%, rgba(10,16,12,0.88) 100%); transition: background 0.4s ease; }
.service-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem; color: #fff; }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--color-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem;
  box-shadow: 0 8px 20px rgba(183,33,33,0.4); transition: transform 0.4s cubic-bezier(.3,1.6,.4,1), border-radius 0.4s ease;
}
.service-card-body h3 { color: #fff; margin-bottom: 0.35rem; font-size: 1.15rem; }
.service-card-body p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 0.9rem; }

/* Botón "Descubre más" — rojo metalizado */
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.8rem; color: #fff;
  padding: 0.55rem 1rem; border-radius: 999px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E15B5B 0%, #B72121 42%, #7A1616 100%);
  box-shadow: 0 6px 16px rgba(122,22,22,0.5), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -2px 4px rgba(0,0,0,0.25);
}
.service-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* --- 1. Palm — franja diagonal + icono con rebote --- */
.service-card--1:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.service-card--1::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease;
  background: linear-gradient(115deg, transparent 40%, rgba(183,33,33,0.35) 50%, transparent 60%);
}
.service-card--1:hover::before { opacity: 1; }
.service-card--1:hover .service-icon { transform: translateY(-4px) rotate(-8deg); }

/* --- 2. Crown — tilt 3D + zoom de imagen --- */
.service-card--2 { transition: transform 0.4s ease, box-shadow 0.4s ease; transform-style: preserve-3d; perspective: 800px; }
.service-card--2:hover { transform: rotateX(4deg) rotateY(-4deg) translateY(-4px); box-shadow: var(--shadow-strong); }
.service-card--2:hover img { transform: scale(1.14) rotate(1deg); }

/* --- 3. Cutting — overlay rojo + recorte diagonal al hover --- */
.service-card--3::after { background: linear-gradient(180deg, rgba(15,23,17,0.05) 30%, rgba(10,16,12,0.88) 100%); }
.service-card--3:hover::after { background: linear-gradient(200deg, rgba(122,22,22,0.35) 0%, rgba(10,16,12,0.92) 75%); }
.service-card--3:hover { transform: translateY(-6px) scale(1.015); }
.service-card--3:hover .service-icon { border-radius: 50%; }

/* --- 4. Hedge — patrón de hojas + borde verde brillante --- */
.service-card--4 { border: 2px solid transparent; }
.service-card--4:hover { border-color: var(--color-brand-green-light); transform: translateY(-6px); }
.service-card--4::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M5 110 C 20 80, 15 50, 35 15'/%3E%3Cpath d='M35 15 C 45 28, 58 30, 68 22'/%3E%3Cpath d='M35 15 C 30 32, 18 40, 10 44'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.service-card--4:hover::before { opacity: 0.6; }

/* --- 5. Stump — desaturado a color + viñeta circular --- */
.service-card--5 img { filter: grayscale(0.55); }
.service-card--5:hover img { filter: grayscale(0) scale(1.08); }
.service-card--5::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(183,33,33,0); transition: box-shadow 0.5s ease; border-radius: 18px;
}
.service-card--5:hover::before { box-shadow: inset 0 0 0 4px rgba(183,33,33,0.55); }
.service-card--5:hover { transform: translateY(-6px); }

/* --- 6. Fence — líneas verticales + contenido que sube --- */
.service-card--6::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 3px, transparent 3px 22px);
}
.service-card--6:hover::before { opacity: 1; }
.service-card--6 .service-card-body { transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.service-card--6:hover .service-card-body { transform: translateY(-8px); }
.service-card--6:hover { transform: translateY(-6px); }


/* ---------- Why choose us (bento — non-uniform OK here) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; gap: 1.4rem; }
.why-card {
  background: var(--color-bg-alt); border-radius: 18px; padding: 1.8rem; border: 1px solid rgba(47,95,65,0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-card.span-2 { grid-column: span 2; }
.why-card.span-full { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.4rem; }
.why-card.span-full .why-icon { margin-bottom: 0; flex-shrink: 0; }
.why-card.featured {
  color: #fff; grid-row: span 2; grid-column: span 2; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; border: none; min-height: 320px;
  background-image:
    linear-gradient(160deg, rgba(32,63,44,0.55) 0%, rgba(15,26,18,0.88) 100%),
    url('https://images.pexels.com/photos/12629407/pexels-photo-12629407.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover; background-position: center;
}
.why-card.featured::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: soft-light; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M10 150 C 30 110, 20 70, 45 20'/%3E%3Cpath d='M45 20 C 55 35, 70 40, 85 30'/%3E%3Cpath d='M45 20 C 40 40, 25 50, 15 55'/%3E%3Cpath d='M30 90 C 45 85, 55 90, 60 105'/%3E%3Cpath d='M120 140 C 100 110, 110 75, 90 40'/%3E%3Cpath d='M90 40 C 100 55, 115 58, 130 50'/%3E%3Cpath d='M100 95 C 115 92, 125 98, 128 112'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.why-card.featured > * { position: relative; z-index: 1; }
.why-card.featured h3, .why-card.featured p { color: #fff; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-card.featured .why-icon { background: rgba(255,255,255,0.18); backdrop-filter: blur(2px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-item { border: 1px solid rgba(47,95,65,0.15); border-radius: 14px; background: var(--color-cream); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 1.15rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 700; font-size: 1.02rem; color: var(--color-ink);
}
.faq-question .plus { transition: transform 0.3s ease; flex-shrink: 0; color: var(--color-accent); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: #4a564d; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Free Quote CTA ---------- */
.quote-cta { position: relative; border-radius: 26px; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem); text-align: center; background-size: cover; background-position: center; }
.quote-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(32,63,44,0.94), rgba(138,25,25,0.88)); }
.quote-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.quote-cta h2, .quote-cta p { color: #fff; }
.quote-cta .section-head { margin: 0 auto 1.6rem; }

/* ---------- Detailed per-service blocks ---------- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(2.4rem, 5vw, 3.2rem) clamp(1.2rem, 3vw, 2.2rem); border-bottom: 1px solid rgba(47,95,65,0.12); border-radius: 22px; position: relative; overflow: hidden; }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail-media { order: 2; }
.service-detail-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.5s ease; }
.service-detail-list { margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.service-detail-list li { display: flex; gap: 0.6rem; font-weight: 600; font-size: 0.96rem; }
.service-detail-list svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.service-detail h3.sub-kw { color: var(--color-primary); font-size: 1rem; font-weight: 700; margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* --- 1. Palm — panel color + zoom lento --- */
.service-detail--1 { background: linear-gradient(180deg, rgba(47,95,65,0.06), transparent); }
.service-detail--1 .service-detail-media:hover img { transform: scale(1.08) rotate(-1deg); }
.service-detail--1 h3.sub-kw { color: var(--color-accent); }

/* --- 2. Crown — esquinas redondeadas + tilt 3D suave --- */
.service-detail--2 .service-detail-media { border-radius: 50% / 18%; }
.service-detail--2 .service-detail-media:hover { transform: perspective(700px) rotateX(3deg); }
.service-detail--2 .service-detail-media { transition: transform 0.5s ease; }

/* --- 3. Cutting — barra de acento roja + blanco y negro a color --- */
.service-detail--3 { border-left: 5px solid var(--color-accent); background: linear-gradient(90deg, rgba(183,33,33,0.05), transparent 30%); }
.service-detail--3 .service-detail-media img { filter: grayscale(0.5); }
.service-detail--3 .service-detail-media:hover img { filter: grayscale(0) scale(1.06); }

/* --- 4. Hedge — marco punteado verde + patrón de hojas --- */
.service-detail--4 .service-detail-media { border: 3px dashed var(--color-brand-green-light); box-shadow: none; padding: 6px; background: var(--color-cream); }
.service-detail--4 .service-detail-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.18; pointer-events: none; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%232F5F41' stroke-width='1.2'%3E%3Cpath d='M5 110 C 20 80, 15 50, 35 15'/%3E%3Cpath d='M35 15 C 45 28, 58 30, 68 22'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* --- 5. Stump — circular con anillo de acento --- */
.service-detail--5 .service-detail-media { aspect-ratio: 1/1; border-radius: 50%; max-width: 380px; margin: 0 auto; border: 6px solid var(--color-sand-deep); }
.service-detail--5 .service-detail-media:hover { border-color: var(--color-accent); }

/* --- 6. Fence — líneas verticales + deslizamiento del texto --- */
.service-detail--6 { background: linear-gradient(180deg, rgba(23,35,27,0.04), transparent); }
.service-detail--6 .service-detail-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 3px, transparent 3px 26px);
}
.service-detail--6 .service-detail-media:hover::after { opacity: 1; }
.service-detail--6 .service-detail-media:hover img { transform: scale(1.05); }


/* ---------- Contact form (Home, embedded) ---------- */
.contact-embed { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact-info-card {
  position: relative; overflow: hidden; color: #fff; border-radius: 22px;
  padding: clamp(2.2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  background:
    linear-gradient(165deg, rgba(32,63,44,0.92) 0%, rgba(15,26,18,0.96) 100%),
    url('https://images.pexels.com/photos/12629407/pexels-photo-12629407.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover; background-position: center;
}
.contact-info-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0.45; mix-blend-mode: soft-light; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M10 150 C 30 110, 20 70, 45 20'/%3E%3Cpath d='M45 20 C 55 35, 70 40, 85 30'/%3E%3Cpath d='M45 20 C 40 40, 25 50, 15 55'/%3E%3Cpath d='M30 90 C 45 85, 55 90, 60 105'/%3E%3Cpath d='M120 140 C 100 110, 110 75, 90 40'/%3E%3Cpath d='M90 40 C 100 55, 115 58, 130 50'/%3E%3Cpath d='M100 95 C 115 92, 125 98, 128 112'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h2, .contact-info-card p { color: #fff; }
.contact-info-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-info-row svg { flex-shrink: 0; margin-top: 3px; }
.contact-info-row a, .contact-info-row span { color: rgba(255,255,255,0.92); font-weight: 600; }
.contact-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.contact-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.contact-socials a:hover { background: var(--color-accent); }

.form-card { background: var(--color-cream); border-radius: 22px; padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-strong); border: 1px solid rgba(47,95,65,0.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { position: relative; grid-column: span 1; margin-top: 0.6rem; }
.form-field.full { grid-column: span 2; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 1.1rem 0.9rem 0.5rem; border-radius: 10px; border: 1.5px solid rgba(47,95,65,0.25);
  background: #fff; font-size: 0.98rem; font-family: inherit; color: var(--color-ink); transition: border-color 0.25s ease;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field label {
  position: absolute; left: 0.95rem; top: 1.05rem; font-size: 0.98rem; color: #6b756d;
  pointer-events: none; transition: 0.2s ease; background: #fff; padding: 0 0.25rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--color-accent); }
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label, .form-field textarea:not(:placeholder-shown) + label,
.form-field select + label { top: -0.55rem; left: 0.7rem; font-size: 0.72rem; font-weight: 700; color: var(--color-primary); }
.form-submit { margin-top: 1.3rem; width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: #6b756d; margin-top: 0.8rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.review-form-success { display: none; text-align: center; padding: 1.2rem; }
.review-form-success.is-visible { display: block; }
.form-success.is-visible { display: block; }
.form-success svg { color: var(--color-primary); margin-bottom: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.82); padding: 4rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2.4rem; margin-bottom: 2.6rem; }
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo { margin-bottom: 0.8rem; }
.footer-logo img { width: clamp(220px, 30vw, 380px); max-width: 100%; height: auto; display: block; }
.footer-logo span { color: var(--color-accent); }
.footer-brand .contact-socials { justify-content: center; }
.footer-col h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-col h4 svg { flex-shrink: 0; color: var(--color-accent); }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; }

/* ---------- Utility effects ---------- */
[data-reveal] { opacity: 0; transform: translateY(46px) scale(0.97); transition: opacity 0.85s cubic-bezier(.2,.75,.25,1), transform 0.85s cubic-bezier(.2,.75,.25,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(42px) scale(0.94); transition: opacity 0.65s cubic-bezier(.2,.75,.25,1), transform 0.65s cubic-bezier(.2,.75,.25,1); }
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0) scale(1); }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.34s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.42s; }

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed; right: 1.4rem; bottom: 5.6rem; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pop 0.6s cubic-bezier(.2,.9,.3,1.4) 0.4s both;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px rgba(37,211,102,0.55); }
@keyframes wa-pop { from { opacity: 0; transform: translateY(30px) scale(0.6); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Botón "Descubre más" dentro de cada bloque detallado */
.service-detail-cta { margin-top: 1.4rem; }

.parallax-section { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.parallax-bg { position: absolute; inset: -38% 0; background-size: cover; background-position: center; will-change: transform; }
.parallax-section::after { content: ""; position: absolute; inset: 0; background: var(--overlay-dark-strong); }
.parallax-content { position: relative; z-index: 2; color: #fff; text-align: center; width: min(760px, 90%); margin: 0 auto; }
.parallax-content h2 { color: #fff; text-align: center; }
.parallax-content p { color: #fff; }
@media (max-width: 640px) { .parallax-section { min-height: 68vh; } }

.magnetic { display: inline-flex; }

.back-to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; width: 46px; height: 46px;
  background: none; border: none; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; z-index: 400;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); color: var(--color-accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid, .contact-embed { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card.featured { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
}
@media (max-width: 860px) {
  .main-nav, .header-phone span { display: none; }
  .nav-toggle { display: block; }
  .logo-mark img { height: 72px; }
  .site-header.scrolled .logo-mark img { height: 60px; }
  .header-actions { gap: 0.6rem; }
  .lang-switch { flex-shrink: 0; }

  /* Títulos y subtítulos del sitio centrados en mobile */
  h1, h2, h3 { text-align: center; }

  .hero { padding-top: 9rem; }
  .page-hero { padding-top: 9rem; min-height: 52vh; }

  .hero-caption { max-width: 100%; min-height: clamp(230px, 42vw, 300px); text-align: center; align-items: center; }
  .hero-heading-stack { width: 100%; }
  /* La caja del H1/H2 tiene max-width propio: sin margin:auto queda pegada
     a la izquierda aunque el texto esté centrado. Esto la centra de verdad. */
  .hero-caption h1, .hero-caption h2.hero-headline { left: 0; right: 0; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-cards-viewport { width: 100%; }
  .hero-cards { width: auto; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; transition: none !important; transform: none !important; gap: 0.6rem; }
  .hero-card { flex: 0 0 62vw; width: 62vw; scroll-snap-align: start; padding: 0; }
  .hero-card[aria-hidden="true"] { display: none; }
  .hero-scroll-cue { display: block; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card.featured, .why-card.span-2, .why-card.span-full { grid-column: span 1; }
  .why-card.span-full { flex-direction: column; text-align: center; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Footer centrado en mobile */
  .footer-col { text-align: center; }
  .footer-col h4 { justify-content: center; }
  .footer-col ul { justify-content: center; justify-items: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .about-media .img-secondary { position: static; width: 100%; margin-top: 1rem; }

  /* Botones al 100% en mobile */
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .quote-cta-inner .btn { width: 100%; }
  .service-detail-cta .btn { width: 100%; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.1rem; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,16,12,0.55) 100%); opacity: 0; transition: opacity 0.35s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-tag { position: absolute; left: 0.7rem; bottom: 0.6rem; z-index: 2; color: #fff; font-weight: 700; font-size: 0.78rem; opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item:hover .gallery-tag { opacity: 1; transform: translateY(0); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.2rem; }
.gallery-filter { padding: 0.5rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(47,95,65,0.25); font-weight: 700; font-size: 0.85rem; background: var(--color-cream); color: var(--color-ink); transition: 0.25s ease; }

/* ---------- Before / After (una sola tarjeta) ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.6rem; }
.ba-card { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); background: var(--color-cream); border: 1px solid rgba(47,95,65,0.1); }
.ba-images { display: grid; grid-template-columns: 1fr 3px 1fr; }
.ba-half { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ba-card:hover .ba-half img { transform: scale(1.05); }
.ba-tag {
  position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-weight: 800;
  font-size: 0.78rem; text-transform: none; letter-spacing: 0.02em; padding: 0.4rem 1.1rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.ba-tag--before { background: rgba(20,20,18,0.72); }
.ba-tag--after { background: var(--color-primary); }
.ba-half::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(10,16,12,0.35) 100%); pointer-events: none; }
.ba-divider { width: 3px; background: var(--color-accent); }
.ba-caption { padding: 1.1rem 1.3rem; }
.ba-caption h3 { margin-bottom: 0.2rem; font-size: 1.05rem; }
.ba-caption p { margin: 0; font-size: 0.88rem; color: #6b756d; }
@media (max-width: 480px) { .ba-half { aspect-ratio: 1 / 1; } }
.gallery-filter.is-active, .gallery-filter:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ---------- Reviews ---------- */
.review-card { background: var(--color-cream); border-radius: 18px; padding: 1.8rem; border: 1px solid rgba(47,95,65,0.1); box-shadow: var(--shadow-soft); }
.review-stars { color: #F5A623; display: flex; gap: 0.15rem; margin-bottom: 0.8rem; }
.review-quote { font-size: 1rem; color: var(--color-ink); }
.review-author { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.2rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Poppins', sans-serif; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.92rem; }
.review-source { font-size: 0.78rem; color: #6b756d; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.reviews-summary { display: flex; align-items: center; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.reviews-summary-score { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 3rem; color: var(--color-primary); line-height: 1; }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.3rem; margin: 0.4rem 0 1.2rem; }
.star-rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-rating label { cursor: pointer; color: #d8d3c4; transition: color 0.2s ease; }
.star-rating label svg { display: block; pointer-events: none; }
.star-rating input:checked ~ label,
.star-rating label:hover, .star-rating label:hover ~ label { color: #F5A623; }
.pending-review-card { background: var(--color-bg-alt); border: 1px dashed rgba(47,95,65,0.35); border-radius: 14px; padding: 1.2rem 1.4rem; margin-top: 1rem; }
.pending-badge { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(245,166,35,0.18); color: #8a5a10; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.6rem; border-radius: 999px; margin-bottom: 0.6rem; }

.map-section { width: 100%; }
.map-section iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(0.15) contrast(1.05); }
@media (max-width: 640px) { .map-section iframe { height: 320px; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 600; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem;
  transform: translateX(100%); transition: transform 0.35s ease; overflow: hidden;
  background:
    linear-gradient(165deg, rgba(15,26,18,0.94) 0%, rgba(10,16,12,0.98) 100%),
    var(--color-ink);
}
.mobile-nav::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35; mix-blend-mode: soft-light; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M10 170 C 35 130, 25 85, 55 25'/%3E%3Cpath d='M55 25 C 68 42, 85 46, 100 36'/%3E%3Cpath d='M55 25 C 48 46, 30 58, 18 62'/%3E%3Cpath d='M35 100 C 52 94, 64 100, 70 118'/%3E%3Cpath d='M135 160 C 112 128, 124 88, 100 48'/%3E%3Cpath d='M100 48 C 112 64, 130 68, 148 58'/%3E%3Cpath d='M112 108 C 130 104, 142 112, 146 128'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.mobile-nav-logo { position: relative; z-index: 1; margin-bottom: 1.4rem; display: flex; justify-content: center; }
.mobile-nav-logo img { height: 90px; width: auto; display: block; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { position: relative; z-index: 1; color: #fff; font-size: 1.4rem; font-weight: 700; padding: 0.7rem 0; text-align: center; }
.mobile-nav-close { position: relative; z-index: 1; align-self: flex-end; background: none; border: none; color: #fff; margin-bottom: 1rem; }
