/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6f7f8;
  --bg-2:      #eceff1;
  --paper:     #ffffff;
  --ink:       #1c2b33;
  --ink-soft:  #34474f;
  --ink-mute:  #5f7079;
  --accent:    #4f7c94;
  --accent-2:  #3a6278;
  --accent-soft: #dce7ec;
  --cta:       #c2410c;
  --cta-2:     #9a3409;
  --highlight: #d97a4d;
  --success:   #4f9d69;
  --star:      #e8a33d;
  --glass:     rgba(255,255,255,0.62);
  --glass-2:   rgba(255,255,255,0.34);
  --line:      rgba(28,43,51,0.1);
  --shadow-soft: 0 20px 50px -20px rgba(28,43,51,0.25);
  --shadow-lift: 0 30px 70px -25px rgba(28,43,51,0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --nav-h: 92px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  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; }
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; font-family: var(--display); color: var(--ink); font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.kicker { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: .9rem; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--cta); border-radius: 2px; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-mute); font-size: 1.05rem; margin-top: .8rem; }
.bg-paper { background: var(--paper); }
.bg-soft { background: var(--bg-2); }

/* Reveal + defensive split rule (gotcha A.4.5) */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

.hero-content [data-reveal]:nth-child(1) { transition-delay: .05s; }
.hero-content [data-reveal]:nth-child(2) { transition-delay: .15s; }
.hero-content [data-reveal]:nth-child(3) { transition-delay: .25s; }
.hero-content [data-reveal]:nth-child(4) { transition-delay: .35s; }
.hero-content [data-reveal]:nth-child(5) { transition-delay: .45s; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-cta { background: var(--cta); color: #fff; box-shadow: 0 14px 30px -10px rgba(194,65,12,.5); }
.btn-cta:hover { background: var(--cta-2); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(194,65,12,.55); }
.btn-ghost { background: var(--glass); border: 1px solid var(--line); color: var(--ink); backdrop-filter: blur(14px); }
.btn-ghost:hover { background: var(--paper); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--accent); color: var(--accent-2); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-block { width: 100%; white-space: normal; text-align: center; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: #fff;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.nav.is-scrolled { background: #fff; border-color: var(--line); box-shadow: 0 10px 30px -20px rgba(28,43,51,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-mark { width: 80px; height: 80px; flex-shrink: 0; background: #fff; border-radius: 12px; }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark img { mix-blend-mode: multiply; }
.footer-brand-chip { background: #fff; border-radius: 10px; padding: 5px; display: flex; width: 48px; height: 48px; flex-shrink: 0; }
.footer-brand-chip img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.brand-text { font-family: var(--display); font-weight: 800; font-size: 1.2rem; line-height: 1.1; color: var(--ink); }
.brand-text small { display: block; font-family: var(--sans); font-weight: 500; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); margin-top: 3px; }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-links a, .nav-dropdown-trigger { font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); position: relative; padding-block: .3rem; }
.nav-links a::after, .nav-dropdown-trigger::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--cta); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-dropdown-trigger:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform .3s var(--ease-out); }
.nav-dropdown.is-open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .6rem; box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none; transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: .7rem .9rem; border-radius: 9px; font-size: .98rem; font-weight: 600; color: var(--ink-soft); }
.nav-dropdown-menu a:hover { background: var(--accent-soft); color: var(--accent-2); }

.nav-actions { display: none; align-items: center; gap: .6rem; }
.icon-btn {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 999px; background: var(--glass-2); border: 1px solid var(--line); color: var(--accent-2);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: var(--accent-soft); transform: translateY(-2px); }

.nav-actions .btn-cta { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; }
.nav-burger span, .nav-burger::before, .nav-burger::after { content: ""; display: block; height: 2px; width: 22px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span { opacity: 0; }
.nav-burger.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190; background: var(--bg);
  padding: 1.5rem 1.25rem 2.5rem; overflow-y: auto;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-mobile.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile a { display: block; padding: .95rem 0; font-size: 1.15rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav-mobile .nav-mobile-sub { padding-left: 1rem; }
.nav-mobile .nav-mobile-sub a { font-size: 1rem; font-weight: 600; color: var(--ink-soft); border-bottom: none; padding: .6rem 0; }
.nav-mobile-actions { display: flex; gap: .7rem; margin-top: 1.5rem; flex-wrap: wrap; }

@media (min-width: 960px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. WhatsApp float
   ============================================================= */
.whatsapp-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 300;
  width: 60px; height: 60px; border-radius: 999px; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px -10px rgba(37,211,102,.6);
  transition: transform .35s var(--ease-bounce);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; background: #25D366;
  animation: waPulse 2.6s var(--ease-soft) infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float::before { animation: none; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; padding-top: clamp(3.5rem, 9vw, 6rem); padding-bottom: clamp(3rem, 8vw, 5.5rem); overflow: clip; }
.hero-mesh {
  position: absolute; inset: -180px -100px -220px -100px; z-index: -2;
  background:
    radial-gradient(at 18% 22%, rgba(79,124,148,.28) 0%, transparent 55%),
    radial-gradient(at 82% 15%, rgba(194,65,12,.12) 0%, transparent 50%),
    radial-gradient(at 55% 85%, rgba(79,124,148,.18) 0%, transparent 55%);
  filter: blur(60px) saturate(130%);
  animation: meshDrift 34s ease-in-out infinite;
}
@keyframes meshDrift { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.15) rotate(6deg); } }
@media (prefers-reduced-motion: reduce) { .hero-mesh { animation: none; } }
.hero-prints { position: absolute; right: -4%; top: 8%; width: min(46vw, 560px); opacity: .12; z-index: -1; pointer-events: none; }
.hero-photo {
  position: absolute; right: -2%; top: 0; bottom: 0; width: min(42vw, 500px);
  z-index: -1; opacity: .42; pointer-events: none;
  object-fit: cover; object-position: center 62%; border-radius: 32px;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 68% 55%, #000 42%, transparent 86%);
  mask-image: radial-gradient(ellipse 78% 78% at 68% 55%, #000 42%, transparent 86%);
}
@media (max-width: 959px) { .hero-photo { display: none; } }
.hero-inner { display: grid; gap: 2.5rem; align-items: center; }
.hero-content { max-width: 620px; }
.hero-title { font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.05; }
.hero-title em { font-style: normal; color: var(--accent); position: relative; }
.hero-title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em; background: var(--highlight); opacity: .3; z-index: -1; border-radius: 4px; }
.hero-sub { font-size: 1.15rem; color: var(--ink-mute); margin-top: 1.2rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.3rem; }
.hero-trust-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* =============================================================
   8. Cards / glass
   ============================================================= */
.glass-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
@supports (backdrop-filter: blur(16px)) {
  .glass-card { background: var(--glass); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); }
}

.services-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card {
  padding: 1.9rem 1.6rem; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.service-icon svg, .service-icon img { width: 26px; height: 26px; object-fit: contain; mix-blend-mode: multiply; }
.service-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.service-card p { color: var(--ink-mute); font-size: .95rem; }
.service-card a.card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-weight: 700; font-size: .88rem; color: var(--accent-2); }
.service-card a.card-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.service-card a.card-link:hover svg { transform: translateX(4px); }

/* =============================================================
   9. Why us
   ============================================================= */
.why-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.why-item { display: flex; gap: 1.1rem; }
.why-num { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; width: 2.4rem; }
.why-item h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.why-item p { color: var(--ink-mute); font-size: .96rem; }
.why-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }

.photo-placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius); background: linear-gradient(135deg, var(--accent-soft), var(--bg-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  color: var(--accent-2); border: 1px dashed rgba(79,124,148,.35); text-align: center; padding: 1.5rem;
}
.photo-placeholder svg { width: 40px; height: 40px; opacity: .8; }
.photo-placeholder span { font-size: .82rem; font-weight: 600; color: var(--ink-mute); }
.photo-placeholder-portrait { aspect-ratio: 4 / 5; }
@media (max-width: 539px) {
  .photo-placeholder { aspect-ratio: auto; height: 200px; padding: 1rem; }
  .photo-placeholder-portrait { aspect-ratio: auto; height: 200px; }
  .photo-placeholder svg { width: 32px; height: 32px; }
}

.gallery-photo { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.gallery-photo.photo-placeholder-portrait { aspect-ratio: 4 / 5; }
@media (max-width: 539px) { .gallery-photo.photo-placeholder-portrait { aspect-ratio: auto; height: 260px; } }
.gallery-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-photo:hover img { transform: scale(1.06); }
.gallery-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .8rem;
  background: linear-gradient(0deg, rgba(28,43,51,.72), transparent);
  color: #fff; font-size: .86rem; font-weight: 700;
}

/* =============================================================
   10. Testimonials
   ============================================================= */
.testimonials-track-wrap { overflow: hidden; position: relative; }
.testimonials-track-wrap::before, .testimonials-track-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.testimonials-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.testimonials-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.testimonials-track { display: flex; gap: 1.3rem; width: max-content; animation: testimonialsMarquee 42s linear infinite; }
.testimonials-track-wrap:hover .testimonials-track { animation-play-state: paused; }
@keyframes testimonialsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .testimonials-track { animation-duration: 90s; } }
.testimonial-card { width: min(360px, 82vw); padding: 1.7rem; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); flex-shrink: 0; }
.stars { display: flex; gap: 3px; color: var(--star); margin-bottom: .9rem; }
.stars svg { width: 16px; height: 16px; }
.testimonial-card p.quote { font-size: .98rem; color: var(--ink-soft); }
.testimonial-author { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.testimonial-author strong { font-size: .9rem; display: block; }
.testimonial-author span { font-size: .8rem; color: var(--ink-mute); }
.testimonials-note { text-align: center; font-size: .82rem; color: var(--ink-mute); margin-top: 1.4rem; }

/* =============================================================
   11. Location
   ============================================================= */
.location-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; align-items: stretch; }
.location-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; box-shadow: var(--shadow-soft); }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.hours-card { padding: 1.8rem; border-radius: var(--radius); }

/* =============================================================
   12. Final CTA
   ============================================================= */
.cta-final { position: relative; border-radius: 28px; padding: clamp(2.4rem, 6vw, 4rem); text-align: center; overflow: clip; background: linear-gradient(160deg, var(--accent-2), var(--accent)); color: #fff; }
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-final p { color: rgba(255,255,255,.85); max-width: 46ch; margin: 1rem auto 2rem; font-size: 1.05rem; }
.cta-final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-final .btn-ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.24); }
.cta-final .btn-cta { background: #fff; color: var(--accent-2); box-shadow: 0 14px 30px -10px rgba(0,0,0,.3); }
.cta-final .btn-cta:hover { background: #fff; }
.cta-final-glow { position: absolute; inset: -40% -20% -60% -20%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }

/* =============================================================
   13. Footer
   ============================================================= */
.footer { background: var(--ink); color: rgba(246,247,248,.72); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand .brand-mark svg path, .footer-brand .brand-mark svg circle { fill: #eceff1; }
.footer-brand-text { font-family: var(--display); font-weight: 800; color: #fff; }
.footer p.tagline { font-size: .92rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.8rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* =============================================================
   14. Page hero (inner pages)
   ============================================================= */
.page-hero { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(2.2rem, 5vw, 3.5rem); position: relative; overflow: clip; }
.page-hero .hero-mesh { inset: -140px -60px -220px -60px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--accent-2); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 18ch; }
.page-hero p.lede { font-size: 1.1rem; color: var(--ink-mute); max-width: 60ch; margin-top: 1.1rem; }

/* =============================================================
   15. Servicios page — accordion
   ============================================================= */
.service-block { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: 1rem; overflow: hidden; scroll-margin-top: calc(var(--nav-h) + 16px); }
.service-block-head { display: flex; align-items: center; gap: 1.1rem; width: 100%; padding: 1.4rem 1.5rem; text-align: left; }
.service-block-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-block-icon svg, .service-block-icon img { width: 22px; height: 22px; object-fit: contain; mix-blend-mode: multiply; }
.service-block-title { flex: 1; }
.service-block-title h3 { font-size: 1.08rem; }
.service-block-title span { font-size: .85rem; color: var(--ink-mute); }
.service-block-toggle { width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .35s var(--ease-out), background .3s var(--ease-out); }
.service-block-toggle svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.service-block.is-open .service-block-toggle { background: var(--accent); border-color: var(--accent); color: #fff; }
.service-block.is-open .service-block-toggle svg { transform: rotate(45deg); }
.service-block-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.service-block-body-inner { padding: 0 1.5rem 1.6rem 1.5rem; padding-left: calc(46px + 1.1rem + 1.5rem); color: var(--ink-mute); font-size: .96rem; }
.service-block-body-inner ul { display: flex; flex-direction: column; gap: .5rem; margin-top: .8rem; }
.service-block-body-inner li { display: flex; gap: .5rem; }
.service-block-body-inner li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }

.sport-panel { display: grid; gap: 2rem; align-items: center; border-radius: 28px; padding: clamp(2rem, 5vw, 3.2rem); background: linear-gradient(155deg, var(--accent-soft), var(--bg-2)); }
.sport-panel-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.sport-panel-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.sport-panel-list svg { width: 20px; height: 20px; color: var(--accent-2); flex-shrink: 0; margin-top: 2px; }

/* =============================================================
   16. Podóloga page
   ============================================================= */
.bio-grid { display: grid; gap: 2.2rem; align-items: start; }
.bio-grid > * { min-width: 0; }
.bio-photo { max-width: 420px; margin-inline: auto; }
.credentials-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.2rem; }
.credential-item { display: flex; gap: .8rem; align-items: flex-start; padding: .9rem 1rem; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.credential-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.credential-item strong { display: block; font-size: .95rem; color: var(--ink); }
.credential-item span { font-size: .84rem; color: var(--ink-mute); }
.philosophy-quote { border-left: 3px solid var(--cta); padding-left: 1.3rem; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--ink); margin-block: 1.6rem; }

@media (max-width: 959px) {
  .bio-grid {
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  .bio-photo { max-width: none; margin-inline: 0; }
  .bio-photo .gallery-photo,
  .bio-photo .photo-placeholder {
    border-radius: 0; box-shadow: none; aspect-ratio: 4 / 5; height: auto;
  }
  .bio-grid > div:last-child { padding: 1.7rem 1.4rem 2rem; }
}

@media (min-width: 960px) { .bio-grid { grid-template-columns: .85fr 1.15fr; } .bio-photo { position: sticky; top: calc(var(--nav-h) + 20px); max-width: none; margin-inline: 0; } }

/* =============================================================
   17. Contacto page
   ============================================================= */
.contact-grid { display: grid; gap: 2rem; min-width: 0; }
.contact-grid > * { min-width: 0; }
.contact-form { padding: clamp(1.6rem, 4vw, 2.4rem); border-radius: var(--radius); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row > * { min-width: 0; }
@media (min-width: 540px) { .form-row-2col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.form-field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; min-width: 0; padding: .85rem 1rem; border-radius: 10px; border: 1.5px solid var(--line); background: var(--paper);
  font: inherit; color: var(--ink); transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); outline: none; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .9rem; }
.form-status { margin-top: 1rem; font-size: .9rem; font-weight: 600; display: none; padding: .8rem 1rem; border-radius: 10px; }
.form-status.is-visible { display: block; }
.form-status.is-ok { background: rgba(79,157,105,.12); color: var(--success); }

.contact-side { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-card { padding: 1.6rem; border-radius: var(--radius); display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-card svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.contact-info-card strong { display: block; font-size: .98rem; margin-bottom: .25rem; }
.contact-info-card span, .contact-info-card p { font-size: .9rem; color: var(--ink-mute); }
.contact-info-card a:hover { color: var(--accent-2); }

@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.3fr .9fr; } }

/* =============================================================
   18. Legal pages
   ============================================================= */
.legal-content { max-width: 760px; margin-inline: auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2.2rem; margin-bottom: .8rem; }
.legal-content p, .legal-content li { color: var(--ink-mute); font-size: .96rem; margin-bottom: .8rem; }
.legal-content li { margin-left: 1.2rem; list-style: disc; }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { flex-wrap: nowrap; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .why-grid.with-media { grid-template-columns: 1fr 1fr; }
  .why-media { grid-column: 2; grid-row: 1 / span 4; align-self: start; }
  .sport-panel { grid-template-columns: 1fr 1fr; }
  .sport-panel-media-first .gallery-photo { order: -1; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: clamp(2.6rem, 4.6vw, 4.4rem); }
}
