  /* =========================================================
     0. ROOT VARIABLES
     ========================================================= */
  :root {
    --cream: #f7f2ea;
    --cream-deep: #ede5d4;
    --cream-soft: #fbf8f1;
    --olive: #4a5d3a;
    --olive-deep: #364426;
    --olive-soft: #6b8054;
    --terracotta: #c47852;
    --terracotta-soft: #e8b894;
    --terracotta-deep: #a05f3d;
    --ink: #2b2620;
    --ink-soft: #6b6258;
    --ink-light: #9c9286;
    --line: #d9cfbb;
    --line-soft: #e8dfca;
    --shadow: 0 30px 60px -20px rgba(54, 68, 38, 0.18);
    --shadow-soft: 0 12px 32px -8px rgba(54, 68, 38, 0.1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --container: 1240px;
  }

  /* =========================================================
     1. RESET & BASE
     ========================================================= */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  body.no-scroll { overflow: hidden; }
  h1, h2, h3, h4, h5 { font-family: 'Fraunces', serif; font-weight: 400; line-height: 1.12; letter-spacing: -0.015em; }
  a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease-out); }
  img, svg { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--terracotta); color: var(--cream); }

  /* Focus visible — replace blue browser outline */
  *:focus { outline: none; }
  *:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* Force color inheritance on links (prevent blue browser default) */
  .topbar a, .topbar a:visited,
  footer.main a, footer.main a:visited,
  .mobile-contact a, .mobile-contact a:visited {
    color: inherit;
    text-decoration: none;
  }
  .topbar a:hover { color: var(--terracotta-soft); opacity: 1; }
  footer.main a:hover { color: var(--terracotta-soft); opacity: 1; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
  @media (max-width: 600px) { .container { padding: 0 20px; } }

  /* =========================================================
     2. PAGE LOADER
     ========================================================= */
  .page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.7s var(--ease-out), visibility 0.7s;
  }
  .page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-logo {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 7vw, 80px);
    color: var(--olive-deep);
    letter-spacing: -0.03em;
    display: flex;
    gap: 0.04em;
  }
  .loader-logo span {
    display: inline-block;
    animation: letterFloat 1.6s ease-in-out infinite;
  }
  .loader-logo span:nth-child(1) { animation-delay: 0s; }
  .loader-logo span:nth-child(2) { animation-delay: 0.12s; }
  .loader-logo span:nth-child(3) { animation-delay: 0.24s; }
  .loader-logo span:nth-child(4) { animation-delay: 0.36s; color: var(--terracotta); font-style: italic; }
  @keyframes letterFloat {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-14px); }
  }
  .loader-bar {
    width: 200px; height: 1px;
    background: var(--line);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
  }
  .loader-bar::after {
    content: ''; position: absolute; left: -40%; top: 0; height: 100%; width: 40%;
    background: var(--terracotta);
    animation: barSlide 1.4s ease-in-out infinite;
  }
  @keyframes barSlide {
    0% { left: -40%; } 100% { left: 100%; }
  }
  .loader-tagline {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  /* =========================================================
     3. IMAGE WRAPPER with skeleton + fallback
     ========================================================= */
  .img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--cream-deep);
  }
  .img-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--cream-deep) 0%, var(--line-soft) 50%, var(--cream-deep) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.8s linear infinite;
    z-index: 0;
  }
  .img-wrap img {
    position: relative; z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s var(--ease-out), transform 1.2s var(--ease-out);
  }
  .img-wrap.loaded img { opacity: 1; transform: scale(1); }
  .img-wrap.loaded::before { display: none; }
  .img-wrap.error::before {
    animation: none;
    background: linear-gradient(135deg, var(--olive-soft), var(--terracotta-soft));
  }
  .img-wrap.error::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23f7f2ea' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25%;
    z-index: 2;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* =========================================================
     4. REVEAL ANIMATIONS (on-scroll)
     ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-fade { transform: none; }
  .reveal-left { transform: translateX(-50px); }
  .reveal-right { transform: translateX(50px); }
  .reveal-clip {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out);
  }
  .reveal-clip.in { opacity: 1; transform: translateY(0) scale(1); }
  .reveal-left.in, .reveal-right.in { transform: translateX(0); }
  .delay-1 { transition-delay: 0.12s; }
  .delay-2 { transition-delay: 0.24s; }
  .delay-3 { transition-delay: 0.36s; }
  .delay-4 { transition-delay: 0.48s; }
  .delay-5 { transition-delay: 0.6s; }
  .delay-6 { transition-delay: 0.72s; }
  .delay-7 { transition-delay: 0.84s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
    .img-wrap img { opacity: 1 !important; transform: none !important; }
  }

  /* =========================================================
     5. TOPBAR & HEADER
     ========================================================= */
  .topbar {
    background: var(--olive-deep);
    color: var(--cream);
    font-size: 12.5px;
    padding: 9px 0;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 50;
  }
  .topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .topbar a { opacity: 0.85; }
  .topbar a:hover { opacity: 1; color: var(--terracotta-soft); }
  .topbar-info {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .topbar-info svg { opacity: 0.7; }

  header.main {
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 40;
    transition: box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  }
  header.main.scrolled {
    box-shadow: 0 6px 24px -12px rgba(54, 68, 38, 0.12);
  }
  .header-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0;
    transition: padding 0.3s var(--ease-out);
  }
  header.main.scrolled .header-inner { padding: 14px 0; }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--olive-deep);
    letter-spacing: -0.025em;
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo .italic { font-style: italic; color: var(--terracotta); }
  .logo small {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--ink-light);
    text-transform: uppercase;
    margin-top: 4px;
  }
  nav.desktop ul {
    list-style: none; display: flex; gap: 36px; align-items: center;
  }
  nav.desktop a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
  }
  nav.desktop a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--terracotta);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s var(--ease-out);
  }
  nav.desktop a:hover { color: var(--terracotta); }
  nav.desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  nav.desktop .cta {
    background: var(--olive);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13.5px;
    overflow: hidden;
    position: relative;
  }
  nav.desktop .cta::after { display: none; }
  nav.desktop .cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--olive-deep);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--ease-out);
  }
  nav.desktop .cta:hover { color: var(--cream); }
  nav.desktop .cta:hover::before { transform: scaleX(1); transform-origin: left; }
  nav.desktop .cta span { position: relative; z-index: 1; }

  /* Mobile menu */
  .nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    position: relative;
    z-index: 60;
  }
  .nav-toggle span {
    position: absolute;
    width: 24px; height: 1.5px;
    background: var(--olive-deep);
    transition: transform 0.4s var(--ease-out), opacity 0.3s, top 0.4s var(--ease-out);
  }
  .nav-toggle span:nth-child(1) { top: 16px; }
  .nav-toggle span:nth-child(2) { top: 22px; }
  .nav-toggle span:nth-child(3) { top: 28px; }
  .nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

  nav.mobile {
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 55;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex; flex-direction: column;
    padding: 100px 32px 40px;
  }
  nav.mobile.open { transform: translateX(0); }
  nav.mobile ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  nav.mobile a {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--olive-deep);
    padding: 12px 0;
    display: block;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.5s, color 0.2s;
  }
  nav.mobile.open a { transform: translateX(0); opacity: 1; }
  nav.mobile.open a:nth-child(1) { transition-delay: 0.15s; }
  nav.mobile.open li:nth-child(1) a { transition-delay: 0.15s; }
  nav.mobile.open li:nth-child(2) a { transition-delay: 0.22s; }
  nav.mobile.open li:nth-child(3) a { transition-delay: 0.29s; }
  nav.mobile.open li:nth-child(4) a { transition-delay: 0.36s; }
  nav.mobile.open li:nth-child(5) a { transition-delay: 0.43s; }
  nav.mobile a:hover { color: var(--terracotta); }
  .mobile-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--ink-soft);
  }
  .mobile-contact strong { color: var(--olive-deep); display: block; font-size: 18px; margin-bottom: 4px; }

  @media (max-width: 980px) {
    nav.desktop { display: none; }
    .nav-toggle { display: flex; }
  }

  /* =========================================================
     6. HERO
     ========================================================= */
  .hero {
    position: relative;
    padding: 90px 0 100px;
    background: var(--cream);
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .hero-tagline {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--terracotta);
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero-tagline::before {
    content: ''; display: inline-block;
    width: 32px; height: 1px;
    background: var(--terracotta);
  }
  .hero h1 {
    font-size: clamp(40px, 6.5vw, 84px);
    color: var(--olive-deep);
    margin-bottom: 32px;
    font-weight: 400;
  }
  .hero h1 .italic { font-style: italic; color: var(--terracotta); font-weight: 300; position: relative; display: inline-block; }
  .hero h1 .italic::after {
    content: ''; position: absolute; bottom: 0.1em; left: 0; right: 0;
    height: 6px; background: var(--terracotta-soft); opacity: 0.4;
    z-index: -1;
    transform: scaleX(0); transform-origin: left;
    transition: transform 1.2s 0.8s var(--ease-out);
  }
  .reveal.in .hero h1 .italic::after, .hero.in h1 .italic::after { transform: scaleX(1); }
  .hero p.lead {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--ink-soft);
    max-width: 500px;
    margin-bottom: 42px;
    line-height: 1.65;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 32px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .btn-primary {
    background: var(--olive);
    color: var(--cream);
  }
  .btn-primary:hover {
    background: var(--olive-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(54, 68, 38, 0.4);
    color: var(--cream);
  }
  .btn-secondary {
    background: transparent;
    color: var(--olive);
    border: 1px solid var(--olive);
  }
  .btn-secondary:hover {
    background: var(--olive);
    color: var(--cream);
    transform: translateY(-2px);
  }
  .btn .arrow { transition: transform 0.3s var(--ease-out); }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
  }
  .hero-image-frame {
    width: 100%; height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
  }
  .hero-image-frame .img-wrap { width: 100%; height: 100%; }
  .hero-image-frame img {
    transition: transform 0.6s var(--ease-out);
  }
  .hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--cream);
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 14px;
    max-width: 280px;
    border: 1px solid var(--line-soft);
  }
  .hero-floating-card .icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-floating-card .text strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--olive-deep);
    line-height: 1;
    font-weight: 500;
  }
  .hero-floating-card .text span {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
  }
  .hero-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--terracotta);
    border-radius: 50%;
    opacity: 0;
    animation: floatRotate 8s ease-in-out infinite;
  }
  @keyframes floatRotate {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-10px); }
  }
  .hero.in .hero-decorative { opacity: 0.4; }

  @media (max-width: 900px) {
    .hero { padding: 50px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    .hero-floating-card { left: 10px; bottom: -20px; }
  }

  /* =========================================================
     7. MANIFESTO STRIP
     ========================================================= */
  .manifesto {
    background: var(--cream-deep);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .manifesto::before, .manifesto::after {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 320px;
    position: absolute;
    color: var(--terracotta);
    opacity: 0.08;
    line-height: 0.5;
    pointer-events: none;
  }
  .manifesto::before { top: 100px; left: 6%; }
  .manifesto::after { bottom: 0px; right: 6%; transform: rotate(180deg); }
  .manifesto p {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--olive-deep);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.45;
    font-weight: 300;
    font-style: italic;
    position: relative;
  }
  .manifesto p strong { font-style: normal; color: var(--terracotta); font-weight: 400; }
  .manifesto .author {
    display: block;
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--ink-light);
    text-transform: uppercase;
    font-style: normal;
  }

  /* =========================================================
     8. STATS (counters)
     ========================================================= */
  .stats {
    background: var(--olive-deep);
    color: var(--cream);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    opacity: 0.15;
    top: -200px;
    right: -100px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
  }
  .stat {
    text-align: center;
    padding: 0 16px;
    border-left: 1px solid rgba(247, 242, 234, 0.12);
  }
  .stat:first-child { border-left: none; }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--terracotta-soft);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 300;
    display: inline-block;
  }
  .stat-num .suffix { color: var(--cream); font-style: italic; font-size: 0.7em; }
  .stat-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
  }
  @media (max-width: 700px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .stat { border-left: none; }
    .stat:nth-child(odd) { border-right: 1px solid rgba(247, 242, 234, 0.12); }
  }

  /* =========================================================
     9. SECTION BASE
     ========================================================= */
  section.padded { padding: clamp(70px, 10vw, 120px) 0; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--terracotta);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .eyebrow::before {
    content: ''; display: inline-block;
    width: 28px; height: 1px;
    background: var(--terracotta);
  }
  h2.section-title {
    font-size: clamp(34px, 4.5vw, 56px);
    color: var(--olive-deep);
    margin-bottom: 24px;
    max-width: 760px;
    font-weight: 400;
  }
  h2.section-title .italic { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .section-sub {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--ink-soft);
    max-width: 580px;
    line-height: 1.65;
  }

  /* =========================================================
     10. QUIÉNES SOMOS
     ========================================================= */
  .quienes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
  }
  .quienes-image { position: relative; }
  .quienes-image .img-wrap {
    aspect-ratio: 4/5;
    border-radius: 8px;
  }
  .quienes-image .badge-float {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: var(--terracotta);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    max-width: 240px;
  }
  .quienes-image .badge-float .num {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-style: italic;
    line-height: 1;
    font-weight: 300;
  }
  .quienes-image .badge-float .label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.95;
  }
  .quienes-text p {
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-size: 17px;
  }
  .quienes-text p.lead {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 2vw, 28px);
    color: var(--ink);
    line-height: 1.45;
    font-weight: 300;
    margin-bottom: 28px;
  }
  .quienes-text p.lead .italic { font-style: italic; color: var(--terracotta); }
  @media (max-width: 900px) {
    .quienes-grid { grid-template-columns: 1fr; gap: 50px; }
    .quienes-image .badge-float { left: 20px; bottom: 20px; padding: 16px 20px; }
    .quienes-image .badge-float .num { font-size: 36px; }
  }

  /* =========================================================
     11. SERVICIOS / MODALIDADES
     ========================================================= */
  section.servicios { background: var(--cream-soft); }
  .servicios-header { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px; }
  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .servicio-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: visible;
    border: 1px solid var(--line-soft);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--terracotta);
  }
  .servicio-card .img-wrap {
    aspect-ratio: 4/3;
    border-radius: 8px 8px 0 0;
  }
  .servicio-card .img-wrap img {
    transition: transform 0.8s var(--ease-out);
  }
  .servicio-card:hover .img-wrap img { transform: scale(1.06); }
  .servicio-card .body { padding: 32px; position: relative; display: flex; flex-direction: column; flex: 1; border-radius: 0 0 8px 8px; }
  .servicio-card .num {
    position: absolute;
    top: -32px;
    right: 28px;
    z-index: 3;
    background: var(--terracotta);
    color: var(--cream);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-style: italic;
    box-shadow: 0 8px 20px -4px rgba(196, 120, 82, 0.45);
  }
  .servicio-card h3 {
    font-size: clamp(24px, 2vw, 30px);
    color: var(--olive-deep);
    margin-bottom: 12px;
  }
  .servicio-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
  .servicio-card .more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    align-self: flex-start;
    color: var(--terracotta);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 4px;
    transition: gap 0.3s var(--ease-out);
  }
  .servicio-card .more:hover { gap: 14px; }
  @media (max-width: 900px) {
    .servicios-header { grid-template-columns: 1fr; gap: 20px; }
    .servicios-grid { grid-template-columns: 1fr; gap: 50px; max-width: 460px; margin: 0 auto; }
  }

  /* =========================================================
     12. MARQUEE (talleres/clínicas infinitas)
     ========================================================= */
  .marquee {
    background: var(--olive-deep);
    color: var(--cream);
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid rgba(196, 120, 82, 0.2);
    border-bottom: 1px solid rgba(196, 120, 82, 0.2);
    position: relative;
  }
  .marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(90deg, var(--olive-deep), transparent); }
  .marquee::after { right: 0; background: linear-gradient(-90deg, var(--olive-deep), transparent); }
  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marqueeRoll 40s linear infinite;
    width: max-content;
    align-items: center;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 16px;
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    color: var(--cream);
    font-weight: 300;
    white-space: nowrap;
  }
  .marquee-item .dot {
    width: 8px; height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
  }
  .marquee-item em { color: var(--terracotta-soft); font-style: italic; }
  @keyframes marqueeRoll {
    to { transform: translateX(-50%); }
  }

  /* =========================================================
     13. VALORES
     ========================================================= */
  .valores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .valor {
    text-align: center;
    padding: 36px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
  }
  .valor:hover {
    background: var(--olive-deep);
    border-color: var(--olive-deep);
    transform: translateY(-4px);
  }
  .valor:hover h4 { color: var(--cream); }
  .valor:hover .valor-icon { color: var(--terracotta-soft); transform: rotate(360deg) scale(1.08); }
  .valor-icon {
    width: 48px; height: 48px;
    margin: 0 auto 18px;
    color: var(--terracotta);
    transition: color 0.5s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .valor h4 {
    font-size: 19px;
    color: var(--olive-deep);
    transition: color 0.3s;
  }
  @media (max-width: 980px) {
    .valores-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .valores-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .valor { padding: 24px 12px; }
  }

  /* =========================================================
     14. SEDE
     ========================================================= */
  section.sede { background: var(--olive-deep); color: var(--cream); position: relative; overflow: hidden; }
  section.sede::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 60%);
    opacity: 0.12;
    bottom: -200px;
    left: -100px;
  }
  section.sede .eyebrow { color: var(--terracotta-soft); }
  section.sede .eyebrow::before { background: var(--terracotta-soft); }
  section.sede h2.section-title { color: var(--cream); }
  section.sede h2.section-title .italic { color: var(--terracotta-soft); }
  .sede-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 60px;
    position: relative;
  }
  .sede-image { position: relative; }
  .sede-image .img-wrap {
    aspect-ratio: 4/3;
    border-radius: 8px;
  }
  .sede-mini-gallery {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 12px;
  }
  .sede-mini-gallery .img-wrap {
    aspect-ratio: 1;
    border-radius: 6px;
  }
  .sede-image .map-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
  }
  .sede-image .map-wrap iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.85);
  }
  .sede-image .map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 18px;
    background: var(--terracotta);
    color: var(--cream);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out);
  }
  .sede-image .map-link:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
    color: var(--cream);
  }
  .sede-features { list-style: none; }
  .sede-features li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(247, 242, 234, 0.12);
    display: flex; gap: 18px; align-items: start;
  }
  .sede-features li:first-child { border-top: 1px solid rgba(247, 242, 234, 0.12); }
  .sede-features .check {
    color: var(--terracotta-soft);
    flex-shrink: 0;
    margin-top: 4px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-style: italic;
    width: 32px;
  }
  .sede-features strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }
  .sede-features span {
    opacity: 0.75;
    font-size: 14.5px;
  }
  .clinicas-bar {
    grid-column: 1 / -1;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(247, 242, 234, 0.15);
  }
  .clinicas-bar h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .clinicas-list { display: flex; flex-wrap: wrap; gap: 10px; }
  .clinicas-list span {
    background: rgba(247, 242, 234, 0.08);
    border: 1px solid rgba(247, 242, 234, 0.12);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    transition: all 0.3s;
  }
  .clinicas-list span:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
    transform: translateY(-2px);
  }
  @media (max-width: 900px) {
    .sede-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* =========================================================
     15. EQUIPO
     ========================================================= */
  .equipo-intro { max-width: 760px; margin-bottom: 60px; }
  .equipo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .equipo-card {
    background: var(--cream-deep);
    padding: 36px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.45s var(--ease-out);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .equipo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-out);
  }
  .equipo-card:hover {
    background: var(--cream-soft);
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--line-soft);
  }
  .equipo-card:hover::before { transform: scaleX(1); }
  .equipo-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    color: var(--olive);
    transition: transform 0.5s var(--ease-out);
  }
  .equipo-card:hover .icon { transform: scale(1.1) rotate(-5deg); color: var(--terracotta); }
  .equipo-card h4 {
    font-size: 19px;
    color: var(--olive-deep);
    margin-bottom: 6px;
    font-weight: 400;
  }
  .equipo-card p { font-size: 13px; color: var(--ink-soft); }
  .equipo-card.featured {
    background: var(--olive);
    color: var(--cream);
  }
  .equipo-card.featured h4 { color: var(--cream); }
  .equipo-card.featured p { color: rgba(247, 242, 234, 0.8); }
  .equipo-card.featured .icon { color: var(--terracotta-soft); }
  .equipo-cert {
    margin-top: 40px;
    display: inline-flex; align-items: center; gap: 16px;
    padding: 20px 28px;
    background: var(--cream-deep);
    border: 1px solid var(--line);
    border-radius: 6px;
    max-width: 100%;
  }
  .equipo-cert .seal {
    width: 44px; height: 44px;
    background: var(--olive);
    color: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .equipo-cert strong { display: block; color: var(--olive-deep); font-size: 15px; }
  .equipo-cert span { font-size: 13px; color: var(--ink-soft); }
  @media (max-width: 980px) {
    .equipo-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .equipo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .equipo-card { padding: 24px 14px; }
  }

  /* =========================================================
     16. ACTIVIDADES
     ========================================================= */
  section.actividades { background: var(--cream-deep); }
  .actividades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }
  .actividad-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .actividad-card .img-wrap { width: 100%; height: 100%; }
  .actividad-card .img-wrap img { transition: transform 1s var(--ease-out); }
  .actividad-card:hover .img-wrap img { transform: scale(1.08); }
  .actividad-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(43, 38, 32, 0.85) 100%);
    z-index: 2;
  }
  .actividad-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 3;
    color: var(--cream);
  }
  .actividad-body .num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--terracotta-soft);
    margin-bottom: 12px;
  }
  .actividad-body h3 {
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .actividad-body p {
    font-size: 14px;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.4s, max-height 0.4s var(--ease-out);
  }
  .actividad-card:hover .actividad-body p { opacity: 0.95; max-height: 100px; margin-top: 8px; }
  @media (max-width: 900px) {
    .actividades-grid { grid-template-columns: 1fr; gap: 20px; max-width: 460px; margin: 30px auto 0; }
    .actividad-body p { opacity: 0.95; max-height: 100px; margin-top: 8px; }
  }

  /* =========================================================
     17. CTA BANNER
     ========================================================= */
  .cta-banner {
    background: var(--cream);
    padding: clamp(80px, 12vw, 140px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before, .cta-banner::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid var(--terracotta);
    opacity: 0.15;
  }
  .cta-banner::before { top: -150px; left: -100px; }
  .cta-banner::after { bottom: -100px; right: -80px; width: 200px; height: 200px; }
  .cta-banner h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    color: var(--olive-deep);
    margin-bottom: 28px;
    font-weight: 300;
    font-style: italic;
  }
  .cta-banner h2 strong { font-weight: 500; font-style: normal; color: var(--terracotta); }
  .cta-banner p {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.65;
  }

  /* =========================================================
     18. FOOTER
     ========================================================= */
  footer.main {
    background: var(--olive-deep);
    color: var(--cream);
    padding: 80px 0 32px;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }
  footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    margin-bottom: 22px;
    font-weight: 600;
  }
  footer ul { list-style: none; }
  footer li { margin-bottom: 12px; font-size: 15px; opacity: 0.85; }
  footer a { transition: opacity 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
  footer a:hover { opacity: 1; color: var(--terracotta-soft); }
  .footer-brand .logo { color: var(--cream); flex-direction: row; align-items: baseline; gap: 0; flex-wrap: wrap; }
  .footer-brand .logo small { color: rgba(247, 242, 234, 0.6); display: block; width: 100%; margin-top: 6px; }
  .footer-brand p { font-size: 14.5px; opacity: 0.75; line-height: 1.7; margin-top: 18px; max-width: 320px; }
  .footer-bottom {
    border-top: 1px solid rgba(247, 242, 234, 0.12);
    padding-top: 30px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 12.5px;
    opacity: 0.7;
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* =========================================================
     19. WHATSAPP FLOTANTE
     ========================================================= */
  .wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.45);
    z-index: 90;
    transition: transform 0.3s var(--ease-out);
  }
  .wa-float::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse 2s infinite;
  }
  .wa-float:hover { transform: scale(1.1); color: white; }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  @media (max-width: 500px) {
    .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  }

  /* =========================================================
     20. SCROLL PROGRESS BAR
     ========================================================= */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: var(--terracotta);
    z-index: 100;
    transition: width 0.1s linear;
  }

  /* =========================================================
     21. RESPONSIVE TWEAKS
     ========================================================= */
  @media (max-width: 600px) {
    body { font-size: 16px; }
    .topbar { font-size: 11.5px; padding: 6px 0; }
    .topbar-inner > span:not(:first-child) { display: none; }
    .hero-floating-card { padding: 14px 18px; max-width: 220px; }
    .hero-floating-card .text strong { font-size: 18px; }
    .clinicas-list span { font-size: 13px; padding: 8px 14px; }
  }
