*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #f5f0e8;
      --cream-dark: #ede5d5;
      --warm-brown: #6b4f3a;
      --dark-brown: #3a2a1e;
      --forest-green: #3d5a3e;
      --forest-green-light: #4e7050;
      --gold: #b8924a;
      --text-body: #5a4535;
      --text-light: #8a7060;
      --section-divider: #c8b89a;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'EB Garamond', Georgia, serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background-color: var(--cream);
      color: var(--text-body);
      overflow-x: hidden;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 520px;
      max-height: 700px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(20,15,8,0.35) 0%, rgba(20,15,8,0.1) 40%, rgba(20,15,8,0.55) 100%),
        /*url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1400&q=80') center/cover no-repeat;*/
        url('../img/IMG_20260403_132616.avif');
      transform: scale(1.04);
      transition: transform 3s ease-out;
    }
    .hero:hover .hero-bg { transform: scale(1.0); }

    /* Texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      padding: 0 20px;
      animation: fadeUp 1.2s ease both;
    }

    .hero-content .logo{
        width:120px;
        margin-bottom:20px;
        opacity:0.85;
        filter:drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 300;
      letter-spacing: 0.04em;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
      margin-bottom: 0.3em;
    }

    .hero-subtitle {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-weight: 300;
      opacity: 0.92;
      text-shadow: 0 1px 10px rgba(0,0,0,0.3);
      margin-bottom: 2.2em;
      letter-spacing: 0.02em;
    }

    .hero-btn {
      display: inline-block;
      padding: 14px 38px;
      background: var(--forest-green);
      color: #fff;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 3px;
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    .hero-btn:hover {
      background: var(--forest-green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }

    /* ============ SECTION SHARED ============ */
    .section {
      padding: 64px 24px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .section-heading {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 400;
      color: var(--dark-brown);
      letter-spacing: 0.04em;
      margin-bottom: 0.5em;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 20px;
    }

    .section-heading::before,
    .section-heading::after {
      content: '';
      flex: 1;
      display: block;
      height: 1px;
      background: var(--section-divider);
      min-width: 100px;
    }

    .section-quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      color: var(--warm-brown);
      margin-bottom: 1em;
      font-weight: 300;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ============ EL DESPERTAR ============ */
    .despertar-wrap {
      background: var(--cream);
      border-top: 1px solid var(--section-divider);
      border-bottom: 1px solid var(--section-divider);
    }

    /* ============ CAMINOS ============ */
    .caminos-wrap {
      background: var(--cream-dark);
      padding: 60px 0;
    }

    .caminos-heading-row {
      text-align: center;
      padding: 0 24px 40px;
    }

    .caminos-grid {
      display: flex;
      gap: 8px;
      padding: 0 24px;
      max-width: 1100px;
      margin: 0 auto;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .caminos-grid::-webkit-scrollbar { display: none; }

    .camino-card {
      flex: 1;
      min-width: 180px;
      max-width: 220px;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      scroll-snap-align: start;
      aspect-ratio: 3/4;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      cursor: pointer;
    }
    .camino-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 16px 40px rgba(0,0,0,0.25);
      z-index: 2;
    }

    .camino-img {
      width: 100%; height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      transition: transform 0.5s ease;
    }
    .camino-card:hover .camino-img { transform: scale(1.06); }

    .camino-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,12,6,0.72) 0%, rgba(20,12,6,0.1) 55%, transparent 100%);
    }

    .camino-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 14px 16px;
      color: #fff;
      text-align: left;
    }
    .camino-title {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 4px;
      line-height: 1.25;
    }
    .camino-quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 0.78rem;
      opacity: 0.88;
      line-height: 1.4;
      font-weight: bold;
    }

    /* Card images via gradient placeholders if no photo loads */
    .card-juego    { background: linear-gradient(135deg, #7a8a5a, #4a5a3a); }
    .card-limites  { background: linear-gradient(135deg, #c8b8a0, #a09080); }
    .card-cuidado  { background: linear-gradient(135deg, #c0a890, #907060); }
    .card-roda     { background: linear-gradient(135deg, #8a9a6a, #5a7050); }
    .card-emociones { background: linear-gradient(135deg, #b09080, #806050); }

    /* ============ FILOSOFIA ============ */
    .filosofia-wrap {
      position: relative;
      overflow: hidden;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .filosofia-bg {
      position: absolute;
      inset: 0;
      /*background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80') center/cover no-repeat;*/
      background: url('../img/boumort.avif') center 20% /cover no-repeat;
      filter: brightness(0.90) saturate(0.55);*/
    }

    .filosofia-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      padding: 80px 24px;
    }

    .filosofia-heading {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 400;
      letter-spacing: 0.05em;
      margin-bottom: 1.5em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .filosofia-heading::before,
    .filosofia-heading::after {
      content: '';
      display: block;
      height: 1px;
      background: rgba(255,255,255,0.45);
      width: 100px;
    }

    .filosofia-quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      font-weight: 300;
      line-height: 1.7;
      opacity: 0.95;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ============ RECURSOS ============ */

    .recursos-wrap {
          background: var(--cream-dark);
          padding: 60px 0;
        }

        .recursos-heading-row {
          text-align: center;
          padding: 0 24px 40px;
        }

        .recursos-grid {
          display: flex;
          gap: 8px;
          padding: 0 24px;
          max-width: 1100px;
          margin: 0 auto;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
        }
        .recursos-grid::-webkit-scrollbar { display: none; }

        .recursos-card {
          flex: 1;
          min-width: 180px;
          max-width: 220px;
          border-radius: 6px;
          overflow: hidden;
          position: relative;
          cursor: pointer;
          scroll-snap-align: start;
          aspect-ratio: 3/4;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .recursos-card:hover {
          transform: translateY(-6px) scale(1.02);
          box-shadow: 0 16px 40px rgba(0,0,0,0.25);
          z-index: 2;
        }

        .recursos-img {
          width: 100%; height: 100%;
          object-fit: cover;
          position: absolute;
          inset: 0;
          transition: transform 0.5s ease;
        }
        .recursos-card:hover .recursos-img { transform: scale(1.06); }

        .recursos-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(20,12,6,0.72) 0%, rgba(20,12,6,0.1) 55%, transparent 100%);
        }

        .recursos-text {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 18px 14px 16px;
          color: #fff;
          text-align: left;
        }
        .recursos-title {
          font-family: var(--font-serif);
          font-size: 1.05rem;
          font-weight: 500;
          margin-bottom: 4px;
          line-height: 1.25;
        }
        .recursos-quote {
          font-family: var(--font-serif);
          font-style: italic;
          font-size: 0.78rem;
          opacity: 0.88;
          line-height: 1.4;
          font-weight: bold;
        }


    /* ============ SOY TATIANA ============ */
    .tatiana-wrap {
      background: var(--cream);
      border-top: 1px solid var(--section-divider);
      border-bottom: 1px solid var(--section-divider);
      padding: 60px 24px;
    }

    .tatiana-inner {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .tatiana-photo {
      flex-shrink: 0;
      width: 160px;
      height: 245px;
      border-radius: 4px;
      object-fit: cover;
      box-shadow: 6px 8px 24px rgba(0,0,0,0.15);
    }

    .tatiana-photo-placeholder {
      flex-shrink: 0;
      width: 160px;
      height: 200px;
      border-radius: 4px;
      background: linear-gradient(160deg, #c0a890, #8a7060);
      box-shadow: 6px 8px 24px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 3rem;
      color: rgba(255,255,255,0.5);
    }

    .tatiana-text { flex: 1; }
    .tatiana-name {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--dark-brown);
      margin-bottom: 0.4em;
    }
    .tatiana-bio {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.75;
    }

    .tatiana-name a, .tatiana-bio a{
        text-decoration:none;
        color: inherit;
    }

    /* ============ RUEDA DE LA VIDA ============ */
    .rueda-wrap {
      background: var(--cream-dark);
      padding: 60px 0 0;
    }

    .rueda-heading-row {
      text-align: center;
      padding: 0 24px 40px;
    }

    .rueda-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .rueda-card {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      cursor: pointer;
    }
    .rueda-card:hover .rueda-img { transform: scale(1.07); }

    .rueda-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: sepia(0.2) brightness(0.85);
    }

    .rueda-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,12,6,0.35);
      transition: background 0.3s;
    }
    .rueda-card:hover .rueda-overlay { background: rgba(20,12,6,0.2); }

    .rueda-text {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      padding: 16px;
    }

    .rueda-season {
      font-family: var(--font-serif);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 500;
      margin-bottom: 4px;
      letter-spacing: 0.04em;
    }
    .rueda-concept {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(0.85rem, 1.3vw, 1rem);
      opacity: 0.9;
      font-weight: 300;
    }

    /* Placeholder BGs for seasons */
    .season-invierno { background: linear-gradient(135deg, #3a4a5a, #1a2530); }
    .season-primavera { background: linear-gradient(135deg, #5a7a4a, #3a5030); }
    .season-verano    { background: linear-gradient(135deg, #8a9a5a, #6a7a3a); }
    .season-otono     { background: linear-gradient(135deg, #9a6a3a, #7a4a1a); }

    /* ============ COMUNIDAD ============ */
    .comunidad-wrap {
      background: var(--cream);
      padding: 60px 24px;
      text-align: center;
    }

    .comunidad-heading-row {
      margin-bottom: 40px;
    }

    .comunidad-img-wrap {
      max-width: 700px;
      margin: 0 auto;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .comunidad-img {
      width: 100%;
      display: block;
      filter: sepia(0.15) brightness(0.92);
      transition: transform 0.5s ease, filter 0.3s;
    }
    .comunidad-img-wrap:hover .comunidad-img {
      transform: scale(1.03);
      filter: sepia(0.05) brightness(0.95);
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--dark-brown);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 28px 24px;
      font-size: 0.85rem;
      font-family: var(--font-body);
      letter-spacing: 0.06em;
    }
    footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
    footer a:hover { color: rgba(255,255,255,0.85); }

    /* ============ SCROLL REVEAL ============ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 700px) {
      .tatiana-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
      }
      .rueda-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .caminos-grid {
        gap: 6px;
        padding: 0 16px;
      }
      .camino-card {
        min-width: 150px;
      }
    }