  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --negro: #000000;
    --verde: #7A826A;
    --fondo: #FAF7F2;
    --beige: #F2EADF;
    --terra: #C98F78;
    --gris: #6B675F;
    --dark: #3A3A34;
    --gold: #C4A35A;
    --beige-mid: #E8DDD0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--fondo);
    color: var(--gris);
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── SUPERPOSICION DE TEXTURA DE RUIDO ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122, 130, 106, 0.12);
    transition: box-shadow 0.3s;
  }

  nav.scrolled {
    box-shadow: 0 2px 20px rgba(58, 58, 52, 0.08);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  nav-logo-taller {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--taller-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo svg {
    width: 22px;
    height: 22px;
  }

  .nav-brand-text {
    line-height: 1.2;
  }

  .nav-brand-name {
    font-family: 'Lora', serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.04em;
    display: block;
  }

  .nav-brand-sub {
    font-family: 'Lora', serif;
    font-size: 10.5px;
    color: var(--terra);
    letter-spacing: 0.08em;
    display: block;
  }

  .nav-logo svg {
    width: 22px;
    height: 22px;
  }

  .nav-back {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--gris);
    text-decoration: none;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }

  .nav-back:hover {
    color: var(--taller-color);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-family: 'Lora', serif;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terra);
    transition: width 0.3s;
  }

  .nav-links a:hover {
    color: var(--terra);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-ig {
    color: var(--verde);
    transition: color 0.25s, transform 0.25s;
  }

  .nav-ig:hover {
    color: var(--terra);
    transform: scale(1.1);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 120px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
  }

  .hero-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taller-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--taller-color);
  }

  /* Formas decorarivas de fondo de papel rasgado */
  .hero::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 320px;
    height: 220px;
    background: var(--terra);
    opacity: 0.18;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    transform: rotate(-8deg);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -30px;
    width: 180px;
    height: 120px;
    background: var(--verde);
    opacity: 0.15;
    border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
  }

  .hero-left {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Lora', serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--terra);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 300;
    line-height: 1.05;

    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    font-style: italic;
    color: var(--terra);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-divider span {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--beige-mid);
  }

  .hero-divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.7;
  }

  .hero-tagline {
    font-size: 17px;
    color: var(--gris);
    max-width: 400px;
    line-height: 1.75;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.85s forwards;
  }

  .btn-primary {
    padding: 14px 32px;
    background: var(--verde);
    color: var(--fondo);
    font-family: 'Lora', serif;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--verde);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--verde);
    transform: translateY(-2px);
  }

  .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--gris);
    font-family: 'Lora', serif;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--beige-mid);
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--terra);
    color: var(--terra);
    transform: translateY(-2px);
  }

  .btn-centro {
    text-align: center;
    margin: 40px 0 20px;
  }

  .btn-centro .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #C98F78;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
  }

  .btn-centro .btn-primary:hover {
    background: #B07A64;
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gris);
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
  }

  .scroll-arrow {
    width: 20px;
    height: 20px;
    border: 1px solid var(--gris);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s 1.5s infinite;
  }

  /* Hero image collage */
  .hero-right {
    position: relative;
    height: 580px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
  }

  .hero-img-main {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 480px;
    object-fit: cover;
    /* efecto de papel rasgado mediante ruta de recorte */
    clip-path: polygon(5% 2%, 12% 0%, 20% 3%, 30% 1%, 40% 4%, 52% 0%,
        62% 2%, 70% 0%, 80% 3%, 92% 1%, 98% 0%,
        100% 8%, 97% 18%, 100% 28%, 98% 40%, 100% 52%,
        97% 62%, 100% 72%, 98% 82%, 100% 92%, 97% 100%,
        85% 97%, 75% 100%, 62% 96%, 50% 100%, 38% 97%,
        25% 100%, 15% 97%, 5% 100%, 0% 92%,
        3% 78%, 0% 65%, 3% 52%, 0% 38%, 3% 25%, 0% 12%);
  }

  /*decoraciones botanicas SVG */
  .hero-botanical {
    position: absolute;
    top: 30px;
    right: 0;
    width: 100px;
    opacity: 0.7;
  }

  /* ── seccion compartida ── */
  section {
    position: relative;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
  }

  /* ── SECCION ESPACIO ── */
  .espacio {
    padding: 110px 0;
    background: var(--fondo);
  }

  .espacio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .espacio-img-wrap {
    position: relative;
    height: 500px;
  }

  .espacio-img {
    width: 88%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(8% 0%, 20% 2%, 35% 0%, 50% 3%, 65% 0%, 80% 2%, 95% 0%, 100% 5%,
        98% 20%, 100% 38%, 97% 55%, 100% 72%, 98% 88%, 100% 100%,
        85% 97%, 70% 100%, 55% 96%, 40% 100%, 25% 97%, 10% 100%, 0% 95%,
        2% 78%, 0% 60%, 3% 42%, 0% 25%, 2% 10%);
  }

  .espacio-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--fondo);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
  }

  .espacio-badge svg {
    width: 30px;
    margin-bottom: 6px;
  }

  .espacio-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--verde);
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 16px;
    color: var(--gris);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 48px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--taller-color);
    color: white;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    transition: opacity 0.2s, transform 0.2s;
    width: fit-content;
  }

  .hero-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  .hero-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 247, 242, 0.18) 0%, transparent 60%);
  }

  /* ── SECCIONES ── */
  .section {
    padding: 120px 80px;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-alt {
    background: var(--taller-light);
  }

  .section-label {
    font-family: 'Lora', serif;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--terra);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.18;
    margin-bottom: 24px;
  }

  .section-body {
    font-size: 15.5px;
    color: var(--gris);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .link-arrow {
    font-family: 'Lora', serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terra);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    transition: gap 0.3s, border-color 0.3s;
  }

  .link-arrow:hover {
    gap: 14px;
    border-color: var(--terra);
  }

  /* ── INTRO ── */
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .intro-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taller-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .intro-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--taller-color);
  }

  .intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .intro-body {
    font-size: 15.5px;
    color: var(--gris);
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .intro-body:last-child {
    margin-bottom: 0;
  }

  .intro-deco {
    width: 56px;
    height: 1px;
    background: var(--taller-color);
    margin-bottom: 32px;
    opacity: 0.5;
  }

  /* ── PARA QUIÉN / QUÉ TRABAJAMOS ── */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .feature-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 20px;
  }

  .feature-text {
    font-size: 15.5px;
    color: var(--gris);
    line-height: 1.8;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .feature-list li {
    font-size: 15px;
    color: var(--gris);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--taller-color);
    flex-shrink: 0;
    margin-top: 8px;
  }

  /* ── FORMATO ── */
  .formato-wrap {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 1px solid var(--beige-mid);
    background: white;
  }

  .formato-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taller-color);
    margin-bottom: 16px;
  }

  .formato-text {
    font-family: 'Cormorant Garamond', serif;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 32px;
  }

  /* ── CITA DECORATIVA ── */
  .quote-section {
    padding: 100px 80px;
    text-align: center;
    background: var(--beige);
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.35;
  }

  .quote-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .quote-deco span {
    width: 48px;
    height: 1px;
    background: var(--taller-color);
    opacity: 0.5;
  }

  .quote-deco-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--taller-color);
  }

  /* ── CONTACTO / CTA FINAL ── */
  .cta-section {
    padding: 100px 80px;
    text-align: center;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .cta-text {
    font-size: 15.5px;
    color: var(--gris);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--taller-color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Lora', serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 16px 40px;
    border: 1.5px solid var(--taller-color);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  }

  .cta-btn:hover {
    background: transparent;
    color: var(--taller-color);
    transform: translateY(-2px);
    opacity: 0.88;
    transform: translateY(-1px);
  }

  /* ── TALLERES ── */
  .talleres {
    padding: 110px 0;
    background: var(--beige);
    overflow: hidden;
  }

  .talleres-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .talleres-header .section-label {
    justify-content: center;
  }

  .talleres-header .section-label::before {
    display: none;
  }

  .talleres-header .section-title {
    margin-bottom: 12px;
  }

  .talleres-header p {
    font-size: 16px;
    font-style: italic;
    color: var(--gris);
  }

  .talleres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .taller-card {
    background: var(--fondo);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
  }

  .taller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(58, 58, 52, 0.10);
  }

  .taller-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .taller-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: saturate(0.85);
  }

  .taller-card:hover .taller-img-wrap img {
    transform: scale(1.05);
  }

  .taller-body {
    padding: 28px 28px 32px;
  }

  .taller-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .taller-name.terra {
    color: var(--terra);
  }

  .taller-desc {
    font-size: 14px;
    color: var(--gris);
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .taller-link {
    font-family: 'Lora', serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verde);
    text-decoration: none;
    border-bottom: 1px solid var(--verde);
    padding-bottom: 2px;
    transition: color 0.25s;
  }

  .taller-link:hover {
    color: var(--terra);
    border-color: var(--terra);
  }

  /* ── PSICOLOGÍA ── */
  .psico {
    padding: 110px 0;
  }

  .psico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .psico-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: saturate(0.8);
  }

  .psico-right {
    position: relative;
  }

  .psico-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--terra);
    border-left: 2px solid var(--terra);
    padding-left: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  /* ── QUOTE BAND ── */
  .quote-band {
    padding: 80px 0;
    background: var(--verde);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-band::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
  }

  .quote-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: var(--fondo);
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.45;
    position: relative;
    z-index: 1;
  }

  .quote-band cite {
    font-family: 'Lora', serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.6);
  }

  /* ── SOBRE MÍ ── */
  .sobre {
    padding: 110px 0;
    background: var(--beige);
  }

  .sobre-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }

  .sobre-img-wrap {
    position: relative;
  }

  .sobre-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    clip-path: polygon(6% 0%, 94% 0%, 100% 4%,
        98% 96%, 94% 100%,
        6% 100%, 0% 96%,
        2% 4%);
  }

  .sobre-img-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
  }

  .sobre-content {
    padding-top: 16px;
  }

  .sobre-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .sobre-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--terra);
    margin-bottom: 28px;
  }

  .sobre-p {
    font-size: 15.5px;
    color: var(--gris);
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .sobre-bio {
    margin-top: 28px;
    border-top: 1px solid var(--beige-mid);
    padding-top: 28px;
  }

  .sobre-bio .sobre-p {
    margin-bottom: 18px;
  }

  .sobre-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
  }

  .sobre-divider span {
    flex: 1;
    height: 1px;
    background: var(--beige-mid);
  }

  .sobre-divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.6;
  }

  .sobre-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    color: var(--terra);
    border-left: 2px solid var(--terra);
    padding: 10px 0 10px 20px;
    margin: 28px 0;
    line-height: 1.6;
  }

  /* Formación */
  .sobre-formacion {
    margin-top: 8px;
  }

  .sobre-formacion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
  }

  .formacion-bloque {
    margin-bottom: 24px;
  }

  .formacion-subtitulo {
    font-family: 'Lora', serif;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .formacion-subtitulo::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--terra);
    flex-shrink: 0;
  }

  .formacion-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 4px;
  }

  .formacion-lista li {
    font-size: 14.5px;
    color: var(--gris);
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
  }

  .formacion-lista li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
  }

  .formacion-lista--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .formacion-lista--inline li {
    padding: 6px 16px;
    background: var(--beige);
    border: 1px solid var(--beige-mid);
    font-family: 'Lora', serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--verde);
    padding-left: 16px;
  }

  .formacion-lista--inline li::before {
    display: none;
  }

  .sobre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }

  .sobre-tag {
    padding: 7px 18px;
    border: 1px solid var(--beige-mid);
    font-family: 'Lora', serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--verde);
    background: var(--fondo);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--terra);
    padding: 70px 0 36px;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--beige);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 80% 70%, 60% 45%, 40% 80%, 20% 50%, 0 65%);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .footer-brand-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--fondo);
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .footer-heart {
    color: rgba(250, 247, 242, 0.5);
    font-size: 18px;
  }

  .footer-heading {
    font-family: 'Lora', serif;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.6);
    margin-bottom: 20px;
  }

  .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--fondo);
  }

  .footer-contact-list svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-list a {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.8);
    text-decoration: none;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-nav-list a:hover {
    color: var(--fondo);
  }

  .footer-nav-list a::before {
    content: '—';
    font-size: 10px;
    opacity: 0.4;
  }

  .footer-legal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 3 columnas en desktop, 1 en móvil */
    gap: 32px;
    font-family: 'Lora', serif;
    font-size: 12.5px;
    /* Un pelín más que 11px, pero sigue siendo legal */
    line-height: 1.6;
    color: #000;
    opacity: 0.75;
    /* No compite con el resto del footer */
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    letter-spacing: 0.02em;
  }

  .footer-legal p {
    margin: 6px 0;
  }

  .footer-legal strong {
    font-weight: 600;
    /* SemiBold para que destaque sin gritar */
    opacity: 1;
    /* Título a negro 100% */
  }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 60px 0;
    margin-top: 0;
    /* 2. Quita el margin-top de 50px para que pegue bien */
    padding-top: 28px;
    /* 3. Usa padding en vez de margin para separar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lora', serif;
    font-size: 11px;
    color: #000;
    /* 1. NEGRO SOLIDO = destaca el mensaje */
    letter-spacing: 0.06em;
    opacity: 0.7;
    /* 2. Le doy 70% opacidad para que no sea negro #000 a tope */
  }

  .footer-bottom a {
    color: inherit;
    /* Hereda el negro 0.7 */
    text-decoration: none;
    font-weight: 500;
    /* Los links un poco más marcados */
    transition: color 0.25s, opacity 0.25s;
    /*  
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
    */
  }

  .footer-bottom a:hover {
    color: #fff;
    /* 1. HOVER: Blanco como antes */
    opacity: 1;
    /* 2. A tope de opacidad para que destaque más */
    /*    
    color: var(--fondo);
    */
  }

  /* Botanical SVG decoration in footer */
  .footer-botanical {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 90px;
    opacity: 0.18;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(5px);
    }
  }

  /* Scroll-reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 {
    transition-delay: 0.1s;
  }

  .reveal-delay-2 {
    transition-delay: 0.2s;
  }

  .reveal-delay-3 {
    transition-delay: 0.3s;
  }

  /* ── BOTANICAL SVG COMPONENT ── */
  .botanical-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
  }

  /* ── SECCIÓN CONTACTO ── */
  .contacto-section {
    padding: 110px 0;
    background: var(--beige);
  }

  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .contacto-intro {
    font-size: 16px;
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 360px;
  }

  .contacto-datos {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .contacto-datos li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contacto-icono {
    width: 38px;
    height: 38px;
    border: 1px solid var(--beige-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--fondo);
  }

  .contacto-icono svg {
    width: 15px;
    height: 15px;
    color: var(--verde);
  }

  .contacto-dato-label {
    display: block;
    font-family: 'Lora', serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 3px;
  }

  .contacto-dato-valor {
    font-size: 14.5px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.25s;
  }

  a.contacto-dato-valor:hover {
    color: var(--terra);
  }

  /* Formulario */
  .contacto-form-wrap {
    background: var(--fondo);
    padding: 48px;
  }

  .contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* ── RGPD consent checkbox ── */
  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 1px solid var(--beige-mid);
    background: var(--fondo);
    cursor: pointer;
    margin-top: 3px;
    transition: border-color 0.25s, background 0.25s;
  }

  .form-consent input[type="checkbox"]:checked {
    background: var(--verde);
    border-color: var(--verde);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23FAF7F2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  .form-consent input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--verde);
  }

  .form-consent input[type="checkbox"].error {
    border-color: var(--terra);
  }

  .form-consent label {
    font-family: 'Lora', serif;
    font-size: 12.5px;
    color: var(--gris);
    line-height: 1.65;
    cursor: pointer;
  }

  .form-consent label a {
    color: var(--terra);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 143, 120, 0.4);
    transition: border-color 0.2s;
  }

  .form-consent label a:hover {
    border-color: var(--terra);
  }

  .form-consent-error {
    font-size: 12px;
    color: var(--terra);
    font-family: 'Lora', serif;
    display: none;
  }

  .form-consent-error.visible {
    display: block;
  }

  /* ── RGPD consent checkbox final de las clases ── */

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-family: 'Lora', serif;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gris);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--fondo);
    border: 1px solid var(--beige-mid);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(107, 103, 95, 0.4);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--verde);
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B675F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
  }

  .btn-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--verde);
    color: var(--fondo);
    font-family: 'Lora', serif;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1.5px solid var(--verde);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    align-self: flex-start;
  }

  .btn-form:hover {
    background: transparent;
    color: var(--verde);
    transform: translateY(-2px);
  }

  .btn-form svg {
    transition: transform 0.25s;
  }

  .btn-form:hover svg {
    transform: translateX(3px);
  }

  .form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(122, 130, 106, 0.1);
    border-left: 3px solid var(--verde);
    font-size: 14px;
    color: var(--verde);
  }

  .form-success.visible {
    display: flex;
  }

  .form-success svg {
    flex-shrink: 0;
  }

  /* ── RESPONSIVE COMPLETO ── */
  @media (max-width: 1024px) {
    .hero {
      padding: 120px 40px 80px;
    }

    .section-inner {
      padding: 0 40px;
    }

    .espacio-grid,
    .psico-grid {
      gap: 50px;
    }

    .sobre-grid {
      grid-template-columns: 280px 1fr;
      gap: 50px;
    }

    .contacto-grid {
      gap: 50px;
    }
  }

  @media (max-width: 900px) {

    /* Nav */
    nav {
      padding: 14px 24px;
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--fondo);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 200;
    }

    .nav-links.open {
      display: flex;
    }

    .nav-links a {
      font-size: 18px;
      letter-spacing: 0.12em;
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 300;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--dark);
      transition: transform 0.3s, opacity 0.3s;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Hero */
    .hero {
      grid-template-columns: 1fr;
      padding: 100px 24px 60px;
      gap: 40px;
      min-height: auto;
    }

    .hero-right {
      height: 300px;
    }

    .hero::before,
    .hero::after {
      display: none;
    }

    .hero-scroll {
      display: none;
    }

    /* Sections */
    .section-inner {
      padding: 0 24px;
    }

    .espacio,
    .talleres,
    .psico,
    .sobre,
    .contacto-section {
      padding: 70px 0;
    }

    .espacio-grid,
    .psico-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .espacio-img-wrap {
      height: 320px;
    }

    .psico .psico-right {
      order: -1;
    }

    .sobre-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .sobre-img-wrap {
      max-width: 280px;
      margin: 0 auto;
    }

    /* Talleres */
    .talleres-grid {
      grid-template-columns: 1fr;
    }

    /* INTRO + FEATURES: plantillas Talleres */
    .intro-grid,
    .features-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    /* Para que el texto no se estire al tener 1 columna */
    .intro-body,
    .feature-text,
    .hero-subtitle,
    .hero-tagline {
      max-width: 65ch;
    }

    /* Contacto */
    .contacto-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .contacto-form-wrap {
      padding: 32px 24px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .contacto-intro {
      max-width: 100%;
    }


    /* Footer */
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 36px;
      padding: 0 24px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
      padding: 24px 24px 0;
    }

    .footer-bottom div {
      justify-content: center;
    }

    /* Quote band */
    .quote-band {
      padding: 60px 24px;
    }

    /* Formacion inline tags */
    .formacion-lista--inline {
      gap: 8px;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 42px;
    }

    .hero-subtitle {
      font-size: 20px;
    }

    .section-title {
      font-size: 28px;
    }

    .hero-ctas {
      flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
      text-align: center;
    }

    .sobre-tags {
      gap: 8px;
    }

    .sobre-tag {
      font-size: 10px;
      padding: 5px 12px;
    }

    .nav-brand-name {
      font-size: 13px;
    }

    .nav-brand-sub {
      font-size: 9px;
    }

  }

  /* 1. BOTÓN HAMBURGUESA - solo móvil */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    /* Por encima del menú */
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--verde);
    display: block;
    transition: 0.3s;
  }

  /* 2. RESPONSIVE */
  @media (max-width: 900px) {
    nav {
      padding: 14px 20px;
      /* Menos padding en móvil */
    }

    .nav-brand-sub {
      display: none;
      /* Oculta los textos largos de abajo para que no reviente */
    }

    .nav-toggle {
      display: flex;
      /* Aparecen las 3 rayas */
    }

    .nav-links {
      position: fixed;
      /* Fixed para que no empuje contenido */
      top: 0;
      right: -100%;
      /* Fuera de pantalla */
      width: 80%;
      max-width: 320px;
      height: 100vh;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
      background: rgba(250, 247, 242, 0.98);
      backdrop-filter: blur(12px);
      padding: 100px 28px 40px;

      transition: right 0.35s ease;
      z-index: 999;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
      /* Cuando JS añade .open */
      right: 0;
      /* Entra desde la derecha */
    }

    .nav-links li {
      width: 100%;
      border-bottom: 1px solid rgba(122, 130, 106, 0.12);
    }

    .nav-links li:last-child {
      border-bottom: 0;
    }

    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 14px;
    }

    .nav-links a::after {
      display: none;
      /* Quita la rayita de hover en móvil */
    }
  }

  footer {
    position: relative;
  }

  .footer-logo-bg {
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 200px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }

  .footer-logo-taller {
    position: absolute;
    bottom: 40px;
    right: 55px;
    width: 200px;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
  }


  .footer-inner {
    position: relative;
    z-index: 1;
  }