/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #f7f6f4;
  --bg-2:        #eff3f8;
  --bg-dark:     #1a2535;
  --glass:       rgba(255, 255, 255, 0.55);
  --glass-2:     rgba(255, 255, 255, 0.3);
  --glass-dark:  rgba(26, 37, 53, 0.85);
  --ink:         #1a2535;
  --ink-soft:    #3d526a;
  --ink-mute:    #7a8fa6;
  --cream:       #f7f6f4;
  --accent:      #1a6b5a;
  --accent-lt:   #2d9b82;
  --accent-bg:   rgba(26, 107, 90, 0.08);
  --gold:        #c9a96e;
  --gold-lt:     #e0c896;
  --line:        rgba(26, 37, 53, 0.1);
  --line-light:  rgba(255, 255, 255, 0.2);
  --serif:       'Cormorant', 'Georgia', serif;
  --sans:        'Inter', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:       72px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
  --max-w:       1280px;
  --radius:      16px;
  --radius-lg:   28px;
  --shadow:      0 4px 32px rgba(26, 37, 53, 0.08);
  --shadow-md:   0 8px 48px rgba(26, 37, 53, 0.14);
  --shadow-lg:   0 20px 80px rgba(26, 37, 53, 0.18);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; object-fit: cover; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; }
input, select, textarea { font: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--ink);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================
   4. Typography
   ============================================================= */
.display-1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.display-2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.display-3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 60ch;
}
em { font-style: italic; }
.serif { font-family: var(--serif); }
.gold { color: var(--gold); }
.accent { color: var(--accent); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  transition: all .3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26, 107, 90, 0.35);
}
.btn-primary:hover {
  background: var(--accent-lt);
  box-shadow: 0 8px 36px rgba(26, 107, 90, 0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Glass card --- */
.glass-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}
.glass-card-dark {
  background: rgba(26,37,53,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--cream);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}

/* --- Badge / pill --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(26, 107, 90, 0.2);
}

/* --- Section headers --- */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .kicker { display: block; margin-bottom: .75rem; }

/* --- Divider --- */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  margin-block: 1.25rem;
}

/* --- Rating stars --- */
.stars {
  display: flex;
  gap: .15rem;
  color: var(--gold);
  font-size: .9rem;
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.nav.is-solid {
  background: rgba(247,246,244,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo .logo-dot { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 450;
  color: var(--ink-soft);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .35s var(--ease-out);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247,246,244,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-soft);
}
.nav-mobile-menu.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 400;
}
.nav-mobile-menu a:hover { color: var(--accent); }

/* =============================================================
   6b. Hero (shared)
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(at 18% 25%, #93c5fd 0%, transparent 50%),
    radial-gradient(at 78% 65%, #6ee7b7 0%, transparent 50%),
    radial-gradient(at 45% 90%, #fde68a 0%, transparent 45%),
    radial-gradient(at 70% 15%, #a5f3fc 0%, transparent 45%),
    #e8f4f0;
  filter: blur(70px) saturate(160%);
  animation: meshDrift 28s ease-in-out infinite;
  opacity: .75;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33%       { transform: scale(1.15) rotate(120deg); }
  66%       { transform: scale(1.08) rotate(240deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

/* Inner hero for sub-pages */
.hero-inner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
}
.hero-inner-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(at 15% 50%, #c8dff4 0%, transparent 60%),
    radial-gradient(at 85% 30%, #d4ede6 0%, transparent 60%),
    var(--bg);
  filter: blur(50px) saturate(140%);
}
.hero-inner-content { position: relative; z-index: 2; }

/* =============================================================
   6c. Hero load animations (above-the-fold — no scroll needed)
   ============================================================= */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroScale {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: none; }
}
.home-hero-text .kicker    { animation: heroIn .7s cubic-bezier(0.16,1,0.3,1) .1s both; }
.home-hero-title           { animation: heroIn .8s cubic-bezier(0.16,1,0.3,1) .2s both; }
.home-hero-sub             { animation: heroIn .7s cubic-bezier(0.16,1,0.3,1) .32s both; }
.home-hero-actions         { animation: heroIn .7s cubic-bezier(0.16,1,0.3,1) .44s both; }
.home-hero-stats           { animation: heroIn .7s cubic-bezier(0.16,1,0.3,1) .58s both; }
.home-hero-image           { animation: heroScale .9s cubic-bezier(0.16,1,0.3,1) .28s both; }

/* Remove data-reveal from hero items (they're already animated above) */
.home-hero-text [data-reveal],
.home-hero-image[data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

/* =============================================================
   7. Home Hero
   ============================================================= */
.home-hero {
  min-height: 100vh;
  min-height: 100svh;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
  min-height: 100svh;
}
.home-hero-text { max-width: 640px; }
.home-hero-text .kicker { margin-bottom: 1.25rem; }
.home-hero-title { margin-bottom: 1.5rem; color: var(--ink); }
.home-hero-title em { color: var(--accent); font-style: italic; }
.home-hero-sub {
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  max-width: 52ch;
}
.home-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.home-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-item { }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--ink-mute); margin-top: .25rem; }
.home-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.home-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.home-hero-image:hover img { transform: scale(1.04); }
.home-hero-image-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(247,246,244,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: calc(100% - 3rem);
}
.home-hero-image-badge .badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.home-hero-image-badge .badge-text { font-size: .8rem; font-weight: 500; }
.home-hero-image-badge .badge-text strong { display: block; font-size: .95rem; }

/* =============================================================
   8. About section
   ============================================================= */
.about-section { padding-block: clamp(5rem, 10vw, 9rem); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  isolation: isolate;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-image img { width: 100%; height: 100%; }
.about-image-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--accent-bg), rgba(201,169,110,0.15));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text .kicker { margin-bottom: .75rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text .lead { margin-bottom: 1.5rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--accent-bg);
}
.about-feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-feature-text strong { display: block; font-size: .9rem; margin-bottom: .2rem; }
.about-feature-text span { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   9. Services section
   ============================================================= */
.services-section { padding-block: clamp(5rem, 10vw, 9rem); }
.services-section-bg {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background .3s;
}
.service-card:hover .service-card-icon { background: var(--accent); }
.service-card-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
}
.service-card-desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.65; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  transition: gap .25s;
}
.service-card:hover .service-card-link { gap: .7rem; }

/* --- Services page detail --- */
.services-detail { padding-block: clamp(3rem, 6vw, 6rem); }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
  border-bottom: 1px solid var(--line);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}
.service-detail-image img { width: 100%; height: 100%; }
.service-detail-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.service-detail-text h3 { margin-bottom: 1rem; }
.service-detail-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.25rem;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.service-detail-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* =============================================================
   10. Team section
   ============================================================= */
.team-section { padding-block: clamp(5rem, 10vw, 9rem); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-soft);
}
.team-card:hover .team-card-photo img { transform: scale(1.05); }
.team-card-info {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}
.team-card-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: .25rem;
}
.team-card-role {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: .75rem;
}
.team-card-bio { font-size: .85rem; color: var(--ink-soft); line-height: 1.6; }

/* About page extras */
.about-hero-section {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
}
.about-hero-section .lead { margin-inline: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.value-text { font-size: .9rem; color: var(--ink-soft); }

/* =============================================================
   11. Testimonials
   ============================================================= */
.testimonials-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-dark);
  color: var(--cream);
}
.testimonials-section .kicker { color: var(--gold); }
.testimonials-section h2 { color: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(247,246,244,0.9);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-author-name { font-weight: 500; font-size: .9rem; }

/* =============================================================
   12. Contact Form
   ============================================================= */
.form-section { padding-block: clamp(5rem, 10vw, 9rem); }
.form-section-dark {
  background: var(--bg-dark);
  color: var(--cream);
}
.form-section-dark .kicker { color: var(--gold); }
.form-section-dark h2 { color: var(--cream); }
.form-section-dark .lead { color: rgba(247,246,244,0.7); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.form-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.form-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.form-info-item-text strong { display: block; font-size: .85rem; color: rgba(247,246,244,0.6); margin-bottom: .15rem; }
.form-info-item-text span { font-size: .95rem; }
.contact-form {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { display: grid; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.form-control {
  padding: .875rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 90, 0.12);
  background: #fff;
}
.form-control::placeholder { color: var(--ink-mute); }
select.form-control { cursor: pointer; }
.form-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9rem;
}
.form-radio-label input { accent-color: var(--accent); width: 16px; height: 16px; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .75rem; }
.form-success p { color: var(--ink-soft); }
.form-note { font-size: .78rem; color: var(--ink-mute); margin-top: .75rem; text-align: center; }

/* =============================================================
   13. CTA Banner
   ============================================================= */
.cta-banner {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(135deg, var(--accent) 0%, #0f4a3d 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(at 30% 50%, rgba(201,169,110,0.3) 0%, transparent 60%),
    radial-gradient(at 70% 50%, rgba(45,155,130,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta-banner .kicker { color: var(--gold-lt); margin-bottom: 1rem; }
.cta-banner h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-banner .lead { color: rgba(255,255,255,0.8); margin-inline: auto; margin-bottom: 2.5rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   14. WhatsApp Button
   ============================================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
  cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================================
   15. Custom cursor
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; opacity: 0; transition: opacity .25s; }
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: -4px; left: -4px;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 107, 90, 0.5);
  position: absolute;
  top: -18px; left: -18px;
  transition: transform .12s var(--ease-soft), width .2s var(--ease-soft), height .2s var(--ease-soft);
}
.cursor.is-hovering .cursor-ring {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
  background: rgba(26, 107, 90, 0.06);
}

/* =============================================================
   16. Reveals & animations
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="left"].is-revealed,
[data-reveal="right"].is-revealed,
[data-reveal="scale"].is-revealed { transform: none; }

/* Staggered children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: .1s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: .2s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: .3s; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: .4s; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: .5s; }
[data-reveal-stagger].is-revealed > *:nth-child(7) { transition-delay: .6s; }
[data-reveal-stagger].is-revealed > *:nth-child(8) { transition-delay: .7s; }

/* Defensive rule for split+reveal conflict */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(247,246,244,0.7);
  padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .9rem; max-width: 28ch; line-height: 1.65; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .25s, border-color .25s;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,246,244,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .9rem;
  transition: color .25s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col .contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .85rem; margin-bottom: .6rem;
}
.footer-col .contact-item span:first-child { font-size: .95rem; flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(247,246,244,0.35);
}
.footer-bottom a { transition: color .25s; }
.footer-bottom a:hover { color: rgba(247,246,244,0.6); }

/* =============================================================
   17b. Promo Banner — Oferta de Verano
   ============================================================= */
.promo-banner {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #0f2027 0%, #0d3d2e 50%, #1a2535 100%);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(45,155,130,.2) 0%, transparent 55%);
  pointer-events: none;
}
.promo-inner { position: relative; z-index: 1; }
.promo-badge-wrap {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.promo-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(201,169,110,.2);
  color: var(--gold-lt);
  border: 1px solid rgba(201,169,110,.35);
}
.promo-badge-dates {
  background: rgba(45,155,130,.15);
  color: #7dd3c0;
  border-color: rgba(45,155,130,.3);
}
.promo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .promo-content { grid-template-columns: 1fr auto; gap: 4rem; }
}
.promo-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.promo-title em { color: var(--gold-lt); font-style: italic; }
.promo-desc { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; font-size: .95rem; }
.promo-includes {
  display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: 2rem;
}
.promo-includes li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.85); font-size: .92rem;
}
.promo-check {
  color: var(--gold-lt); font-weight: 700;
  flex-shrink: 0;
}
.promo-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.promo-price-block {
  text-align: center;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 220px;
}
.promo-price-before { margin-bottom: .5rem; }
.promo-price-label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .2rem; }
.promo-price-old { font-size: 1.4rem; color: rgba(255,255,255,.35); text-decoration: line-through; }
.promo-price-now { margin-bottom: .75rem; }
.promo-price-big {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold-lt);
  line-height: 1;
}
.promo-savings {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 100px;
  background: rgba(201,169,110,.2);
  color: var(--gold-lt);
  font-size: .78rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.promo-countdown { }
.promo-countdown-label { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .6rem; display: block; }
.promo-countdown-digits {
  display: flex; align-items: center; gap: .4rem;
  justify-content: center;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 42px;
}
.cd-unit span {
  font-family: var(--serif); font-size: 1.8rem; color: #fff; line-height: 1;
  font-weight: 400;
}
.cd-unit small { font-size: .62rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-top: .15rem; }
.cd-sep { color: rgba(255,255,255,.3); font-size: 1.4rem; margin-bottom: .6rem; }

/* =============================================================
   18. Insurance logos
   ============================================================= */
.insurances-section {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.insurances-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  margin-bottom: 1.5rem;
}
.insurances-marquee {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.insurances-marquee span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-mute);
  padding: .4rem .85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .insurances-marquee { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* =============================================================
   19. Breadcrumb
   ============================================================= */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--ink-mute);
  margin-bottom: 2rem;
}
.breadcrumb a { transition: color .25s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--line); }

/* =============================================================
   20. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .home-hero-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1.6fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .service-detail-item { grid-template-columns: 1fr 1fr; }
  .service-detail-item:nth-child(even) .service-detail-image { order: 1; }
  .service-detail-item:nth-child(even) .service-detail-text { order: -1; }
}
@media (min-width: 960px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 959px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* =============================================================
   32. Sección Cómo Llegar (contacto.html)
   ============================================================= */
.como-llegar-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.map-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--bg-2) 0%, #dce8f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 2px dashed rgba(26, 107, 90, 0.2);
  border-radius: var(--radius-lg);
}

.map-placeholder-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  opacity: .55;
}

.map-placeholder-address {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 400;
  text-align: center;
  padding-inline: 1rem;
}

/* Grid de tarjetas de transporte */
.llegar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.llegar-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.llegar-card-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.llegar-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.llegar-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.llegar-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.llegar-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  list-style: none;
}

.llegar-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.llegar-list-parking li {
  align-items: flex-start;
}

/* Badge de línea de metro — fondo dinámico via style="" */
.metro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}

/* Badge de línea de bus */
.bus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding-inline: .35rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: .02em;
}

/* Badge de parking */
.parking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

.parking-badge-zona {
  background: var(--gold);
}

/* Fix: inline grid-template-columns en form-row ignora la media query en móvil */
@media (max-width: 719px) {
  .form-row { grid-template-columns: 1fr !important; }
  .contact-form { padding: 1.75rem 1.25rem; }
}

/* =============================================================
   21. SVG Icons en tarjetas y features
   ============================================================= */

/* Íconos de servicio y features — usa currentColor para stroke */
.service-card-icon {
  color: var(--accent);
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.service-card:hover .service-card-icon {
  color: #fff;
}

.about-feature-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Íconos de info de contacto (página contacto) */
.contact-info-card-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Íconos de valores (página equipo) */
.value-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* Íconos de footer social */
.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: rgba(247,246,244,0.6);
  fill: none;
  transition: stroke .25s;
}
.footer-social a:hover svg { stroke: var(--cream); }
.footer-social a svg[fill="currentColor"] {
  fill: rgba(247,246,244,0.6);
  stroke: none;
}
.footer-social a:hover svg[fill="currentColor"] { fill: var(--cream); }

/* Íconos de badges de servicios (barra filtro) */
.services-filter-nav {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: none;
}
.services-filter-nav::-webkit-scrollbar { display: none; }
.services-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(26, 107, 90, 0.2);
  transition: background .25s, color .25s;
}
.services-filter-badge:hover {
  background: var(--accent);
  color: #fff;
}

/* =============================================================
   22. Testimonial author detail
   ============================================================= */
.testimonial-author-detail {
  display: block;
  font-size: .75rem;
  color: rgba(247,246,244,0.45);
  margin-top: .15rem;
}

/* =============================================================
   23. Hero badge sin emoji
   ============================================================= */
.home-hero-image-badge .badge-icon {
  color: var(--accent);
}
.home-hero-image-badge .badge-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* =============================================================
   24. Hero CTA más prominente
   ============================================================= */
.btn-primary-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* =============================================================
   25. WhatsApp pulse discreto
   ============================================================= */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}
.whatsapp-btn {
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  animation: none;
}

/* =============================================================
   26. Form success mejorado
   ============================================================= */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
}
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  fill: none;
  display: block;
}
.form-success h4 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.form-success p { color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }

/* =============================================================
   27. Promo banner ajustes
   ============================================================= */
.promo-badge {
  letter-spacing: .04em;
}

/* =============================================================
   28. Mid-page WhatsApp CTA strip
   ============================================================= */
.wa-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.75rem;
}
.wa-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.wa-strip-text {
  font-size: .95rem;
  color: var(--ink-soft);
}
.wa-strip-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .2rem;
}

/* =============================================================
   29. Ajustes generales de credibilidad
   ============================================================= */
.trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--ink-mute);
}
.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .home-hero-stats { flex-direction: column; gap: 1.25rem; }
  .wa-strip-inner { flex-direction: column; align-items: flex-start; }
  .home-hero-image { aspect-ratio: 3/2; }
  .home-hero-grid { padding-top: calc(var(--nav-h) + 2rem); gap: 2rem; }
  .promo-price-block { min-width: unset; width: 100%; }
  .btn { padding: .8rem 1.4rem; font-size: .9rem; }
  .btn-primary-lg { padding: .9rem 1.75rem; font-size: .95rem; }
}

/* Fix sticky contact info en móvil — en columna única se superpone al formulario */
@media (max-width: 959px) {
  .contact-info-block { position: static !important; }
}

/* Asegurar que las secciones no se solapan visualmente con transforms de reveal */
[data-reveal], [data-reveal-stagger] > * { will-change: opacity, transform; }

/* Mejoras generales de touch/tap en móvil */
@media (hover: none) {
  .service-card:hover,
  .team-card:hover,
  .contact-info-card:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* =============================================================
   30. Validación de formulario
   ============================================================= */
.form-control.is-error {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.1);
}
.field-error {
  display: block;
  font-size: .78rem;
  color: #d94f4f;
  margin-top: .3rem;
}

/* =============================================================
   31. Service detail icon (SVG en páginas de servicio)
   ============================================================= */
.service-detail-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-detail-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
