    /* Custom Fonts - Above the beyond Script & IBM Plex Serif */
    @font-face {
      font-family: 'Above the beyond Script';
      src: url('Fonts/Demo_Fonts/DEMO-atbscript-rg.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Serif Local';
      src: url('Fonts/IBM_Plex_Serif/IBMPlexSerif-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Serif Local';
      src: url('Fonts/IBM_Plex_Serif/IBMPlexSerif-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      /* ---- Paleta Bruma: azul niebla, ciruela y neutros fríos ---- */
      --bg-base: #EDEFF1;
      /* blanco frío */
      --bg-surface: #FFFFFF;
      --bg-sunken: #E4E8EC;
      /* bandas y zonas hundidas */
      --text-strong: #2B2F38;
      /* tinta azulada */
      --text-muted: #55606E;
      --accent-primary: #5E7089;
      /* azul niebla */
      --accent-primary-deep: #4C5B72;
      /* hover / estados activos */
      --accent-neutral: #9AA4B0;
      --accent-plum: #7A4A63;
      /* ciruela: acento decorativo */
      --accent-plum-deep: #653D52;
      /* ciruela profunda: llamados a la accion */
      --line: #D3DAE1;

      /* ---- Tipografia ---- */
      --font-display: 'Playfair Display', serif;
      --font-body: 'Lato', sans-serif;
      --font-signature: 'Pinyon Script', 'Great Vibes', cursive;

      /* Escala fluida: crece con el viewport sin saltos por breakpoint */
      --text-xs: clamp(0.75rem, 0.73rem + 0.1vw, 0.8rem);
      --text-sm: clamp(0.875rem, 0.85rem + 0.12vw, 0.94rem);
      --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
      --text-lg: clamp(1.15rem, 1.08rem + 0.32vw, 1.35rem);
      --text-xl: clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
      --text-2xl: clamp(1.85rem, 1.55rem + 1.4vw, 2.75rem);
      --text-3xl: clamp(2.4rem, 1.85rem + 2.6vw, 4.2rem);

      /* ---- Ritmo ---- */
      --space-section: clamp(4rem, 3rem + 4.5vw, 8rem);
      --space-block: clamp(1.75rem, 1.4rem + 1.6vw, 3rem);
      --radius-sm: 4px;
      --radius-md: 10px;
      --radius-lg: 18px;

      /* ---- Movimiento ---- */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --duration-fast: 180ms;
      --duration-normal: 320ms;

      /* ---- Profundidad: sombras frias, acordes al azul ---- */
      --shadow-sm: 0 1px 2px rgba(43, 47, 56, 0.05), 0 2px 6px rgba(43, 47, 56, 0.04);
      --shadow-md: 0 4px 12px rgba(43, 47, 56, 0.07), 0 12px 28px rgba(43, 47, 56, 0.06);
      --shadow-lg: 0 10px 24px rgba(43, 47, 56, 0.09), 0 28px 60px rgba(43, 47, 56, 0.08);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--bg-base);
      color: var(--text-strong);
      line-height: 1.8;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.2;
      color: var(--text-strong);
      /* Evita titulares con una palabra huerfana en la ultima linea */
      text-wrap: balance;
    }

    h2 {
      font-size: var(--text-2xl);
      letter-spacing: -0.015em;
    }

    h3 {
      font-size: var(--text-xl);
      letter-spacing: -0.01em;
    }

    /* For Split Text Animation */
    .line {
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Buttons */
    /* Botones: la ciruela queda reservada para acciones, el azul niebla
       para estructura de marca. Asi el color significa algo, no decora. */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.95rem 2.1rem;
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 700;
      line-height: 1;
      text-decoration: none;
      border: 1.5px solid transparent;
      border-radius: var(--radius-sm);
      cursor: pointer;
      letter-spacing: 0.06em;
      transition:
        transform var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out),
        background-color var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out),
        border-color var(--duration-fast) var(--ease-out);
    }

    .btn-primary {
      background-color: var(--accent-plum-deep);
      border-color: var(--accent-plum-deep);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }

    .btn-primary:hover {
      background-color: #523143;
      border-color: #523143;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      background-color: transparent;
      border-color: var(--accent-primary);
      color: var(--accent-primary);
    }

    .btn-secondary:hover {
      background-color: var(--accent-primary);
      border-color: var(--accent-primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .btn:active {
      transform: translateY(0);
    }

    /* Foco visible: obligatorio para navegacion por teclado */
    .btn:focus-visible,
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-plum);
      outline-offset: 3px;
    }

    /* Navigation */
    nav {
      padding: 2rem 0;
      position: absolute;
      width: 100%;
      top: 0;
      z-index: 100;
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Above the beyond Script', 'Pinyon Script', 'Great Vibes', cursive;
      font-size: 3rem;
      font-weight: 400;
      letter-spacing: 0;
      color: var(--accent-primary);
      text-shadow: none;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: none;
      background: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
      text-align: center;
      margin-top: 0.5rem;
    }

    .logo .brightva-text {
      display: inline-block;
      transform: rotate(-15deg);
      /* Inclinación como en la referencia */
    }

    .logo span.studio-text {
      font-family: 'IBM Plex Serif Local', 'IBM Plex Serif', serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-primary);
      margin-top: 10px;
      align-self: flex-end;
      display: block;
      transform: rotate(0deg);
      /* Studio queda recto, alineado a la derecha debajo de VA */
    }

    .logo::before {
      display: none;
    }

    .logo:hover {
      transform: scale(1.02);
      color: #E8E8E8;
      /* Lighter on hover */
      text-shadow:
        0px -1px 0px rgba(0, 0, 0, 0.9),
        0px 2px 5px rgba(0, 0, 0, 0.3);
    }

    .logo .highlight {
      color: #7A4A63;
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      padding: 0.6rem 0.8rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .nav-links a {
      text-decoration: none;
      color: var(--accent-primary);
      font-weight: 500;
      font-size: 0.9rem;
      position: relative;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .nav-links a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .nav-links a:hover::before {
      opacity: 1;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-links a:active {
      transform: scale(0.96);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      /* La navegacion va en posicion absoluta encima del hero (~146px),
         asi que el contenido arranca por debajo para no chocar con el logo. */
      padding-top: clamp(9.5rem, 8rem + 6vw, 12rem);
      padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
      overflow: hidden;
      background:
        radial-gradient(120% 90% at 82% 18%, rgba(122, 74, 99, 0.09) 0%, transparent 55%),
        linear-gradient(135deg, #EFF1F3 0%, #E2E7EC 52%, #D3DAE1 100%);
      background-size: 100% 100%, 400% 400%;
      animation: gradientShift 18s ease infinite;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Animated Background Orbs Layer 1 */
    .hero::before {
      content: '';
      position: absolute;
      top: 10%;
      right: 5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(122, 74, 99, 0.3) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      animation: floatOrb1 25s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes floatOrb1 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(-50px, 50px) scale(1.1);
      }

      66% {
        transform: translate(40px, -40px) scale(0.9);
      }
    }

    /* Animated Background Orbs Layer 2 */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 10%;
      left: 5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(154, 164, 176, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(70px);
      animation: floatOrb2 20s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes floatOrb2 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(60px, -60px) scale(1.15);
      }
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      position: relative;
      z-index: 2;
    }

    /* Antetitulo del hero: de letra script rotada a etiqueta ejecutiva.
       La caligrafia se reserva para la firma real de Paula. */
    .script-highlight {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-plum);
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.5rem;
    }

    .script-highlight::after {
      content: "";
      flex: 1;
      max-width: 88px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent-plum), transparent);
    }

    .hero h1 {
      font-size: var(--text-3xl);
      margin-bottom: 1.5rem;
      line-height: 1.06;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .hero p {
      font-size: var(--text-lg);
      color: var(--text-muted);
      margin-bottom: 2.5rem;
      max-width: 52ch;
      line-height: 1.65;
    }

    .hero-btns {
      margin-bottom: 3rem;
    }

    .hero-image-wrapper {
      position: relative;
      z-index: 5;
      display: flex !important;
      align-items: center;
      justify-content: center;
      min-height: 650px;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .hero-image-wrapper picture,
    .hero-image-mobile picture {
      display: block;
      position: relative;
      z-index: 9999;
    }

    /* Rotating gradient border - now a real div */
    .image-rotating-border {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 630px;
      height: 630px;
      border-radius: 50%;
      background: conic-gradient(from 0deg,
          #7A4A63,
          #9AA4B0,
          #5E7089,
          #7A4A63);
      animation: rotateGradient 10s linear infinite;
      z-index: 1;
      filter: blur(3px);
    }

    @keyframes rotateGradient {
      from {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      to {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    /* Pulsing glow effect - now a real div */
    .image-glow-effect {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 680px;
      height: 680px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(122, 74, 99, 0.4) 0%, transparent 70%);
      animation: pulseGlow 3s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes pulseGlow {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.8;
      }
    }

    .hero-image {
      width: 600px !important;
      height: 600px !important;
      object-fit: cover;
      border-radius: 50%;
      position: relative !important;
      z-index: 9999 !important;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
      filter: brightness(1.05) contrast(1.05) saturate(1.1);
      border: 12px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      animation: imageFloat 6s ease-in-out infinite;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    @keyframes imageFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .blob-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(94, 112, 137, 0.12) 0%, transparent 70%);
      z-index: -1;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      opacity: 0.6;
      animation: morph 12s ease-in-out infinite;
      filter: blur(40px);
    }

    @keyframes morph {
      0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
      }

      50% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
        transform: translate(-50%, -50%) rotate(180deg);
      }

      100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    /* =========================================
       ABOUT - THE JOURNEY TIMELINE
       ========================================= */

    .about-journey {
      padding: var(--space-section) 0;
      background: linear-gradient(180deg, #E4E8EC 0%, #D3DAE1 50%, #C2CCD6 100%);
      position: relative;
      overflow: hidden;
    }

    /* Canvas para partículas flotantes sutiles */
    #about-particles-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.7;
    }

    .about-journey .container {
      text-align: center;
      position: relative;
      z-index: 2;
      margin-bottom: 3rem;
    }

    .journey-intro {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-style: italic;
      color: var(--text-muted);
      margin-top: 1rem;
    }

    /* Timeline Container */
    .timeline-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0;
    }

    /* Central Line */
    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-plum) 50%, var(--accent-plum-deep) 100%);
      transform: translateX(-50%);
      border-radius: 2px;
    }

    /* Timeline Items */
    .timeline-item {
      position: relative;
      width: 50%;
      padding: 1rem;
      box-sizing: border-box;
    }

    .timeline-item.left {
      left: 0;
      padding-right: 2.5rem;
      text-align: right;
    }

    .timeline-item.right {
      left: 50%;
      padding-left: 2.5rem;
      text-align: left;
    }

    /* Timeline Dot */
    .timeline-dot {
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--accent-primary);
      border: 4px solid var(--bg-base);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      transition: all 0.3s ease;
    }

    .timeline-item.left .timeline-dot {
      right: -10px;
    }

    .timeline-item.right .timeline-dot {
      left: -10px;
    }

    .timeline-item:hover .timeline-dot {
      background: var(--accent-plum);
      transform: translateY(-50%) scale(1.3);
      box-shadow: 0 0 20px rgba(122, 74, 99, 0.5);
    }

    /* Timeline Content Card */
    .timeline-content {
      background: linear-gradient(135deg, #D3DAE1 0%, #C2CCD6 100%);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      border: 1px solid rgba(94, 112, 137, 0.2);
    }

    .timeline-item:hover .timeline-content {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      border-color: var(--accent-plum);
    }

    /* Timeline Image */
    .timeline-content picture {
      display: block;
      width: 100%;
    }

    .timeline-img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .timeline-year {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-primary);
      opacity: 0.3;
      margin-bottom: 0.5rem;
    }

    .timeline-content h3 {
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
      color: var(--text-strong);
    }

    .timeline-content p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text-muted);
      margin: 0;
    }

    /* Central Photo */
    .timeline-photo {
      position: relative;
      width: 450px;
      height: 450px;
      margin: 0.5rem auto;
      z-index: 5;
    }

    .timeline-photo picture {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }

    .timeline-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 50%;
      border: 8px solid white;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    }

    /* Overlay verde oliva muy sutil sobre la foto */
    .timeline-photo::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 50%;
      background: rgba(94, 112, 137, 0.08);
      /* Verde oliva muy clarito - 8% opacity */
      pointer-events: none;
      z-index: 10;
    }

    .timeline-photo::before {
      content: '';
      position: absolute;
      top: -25px;
      left: -25px;
      right: -25px;
      bottom: -25px;
      border-radius: 50%;
      border: 4px dashed var(--accent-plum);
      animation: spinSlow 20s linear infinite;
      opacity: 0.8;
    }

    /* Timeline Photo Wrapper with Floating Icons */
    .timeline-photo-wrapper {
      position: relative;
      width: 530px;
      height: 530px;
      margin: 1rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .floating-icon {
      position: absolute;
      color: var(--accent-primary);
      opacity: 0.25;
      transition: opacity 0.3s ease;
      stroke: var(--accent-primary);
      stroke-width: 1.5;
      filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      padding: 4px;
    }

    /* Posiciones perfectamente equidistantes en círculo - 8 iconos a 45° cada uno */
    /* Radio desde el centro: ~420px (foto es 720px, entonces 360px de radio + 60px de separación) */

    .floating-icon.icon-1 {
      top: 0%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      animation: floatIcon1 8s ease-in-out infinite;
    }

    .floating-icon.icon-2 {
      top: 15%;
      right: 15%;
      transform: translate(50%, -50%);
      width: 70px;
      height: 70px;
      animation: floatIcon2 7s ease-in-out infinite;
    }

    .floating-icon.icon-3 {
      top: 50%;
      right: 0%;
      transform: translate(50%, -50%);
      width: 70px;
      height: 70px;
      animation: floatIcon3 9s ease-in-out infinite;
    }

    .floating-icon.icon-4 {
      bottom: 15%;
      right: 15%;
      transform: translate(50%, 50%);
      width: 70px;
      height: 70px;
      animation: floatIcon4 6s ease-in-out infinite;
    }

    .floating-icon.icon-5 {
      bottom: 0%;
      left: 50%;
      transform: translate(-50%, 50%);
      width: 70px;
      height: 70px;
      animation: floatIcon5 8.5s ease-in-out infinite;
    }

    .floating-icon.icon-6 {
      bottom: 15%;
      left: 15%;
      transform: translate(-50%, 50%);
      width: 70px;
      height: 70px;
      animation: floatIcon6 7.5s ease-in-out infinite;
    }

    .floating-icon.icon-7 {
      top: 50%;
      left: 0%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      animation: floatIcon7 9.5s ease-in-out infinite;
    }

    .floating-icon.icon-8 {
      top: 15%;
      left: 15%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      animation: floatIcon8 6.5s ease-in-out infinite;
    }

    /* Ocultar iconos 9 y 10 para mantener distribución perfecta */
    .floating-icon.icon-9,
    .floating-icon.icon-10 {
      display: none;
    }

    /* Animaciones flotantes para cada icono */
    @keyframes floatIcon1 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(15px, 20px) rotate(10deg);
      }
    }

    @keyframes floatIcon2 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-20px, 15px) rotate(-8deg);
      }
    }

    @keyframes floatIcon3 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(25px, -10px) rotate(12deg);
      }
    }

    @keyframes floatIcon4 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(18px, -25px) rotate(-10deg);
      }
    }

    @keyframes floatIcon5 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-12px, -18px) rotate(8deg);
      }
    }

    @keyframes floatIcon6 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(10px, 22px) rotate(-12deg);
      }
    }

    @keyframes floatIcon7 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-22px, 12px) rotate(15deg);
      }
    }

    @keyframes floatIcon8 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-15px, -20px) rotate(-8deg);
      }
    }

    @keyframes floatIcon9 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(20px, -15px) rotate(10deg);
      }
    }

    @keyframes floatIcon10 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(18px, 18px) rotate(-15deg);
      }
    }


    /* Quote Section */
    .journey-quote {
      text-align: center;
      max-width: 800px;
      margin: 2rem auto 0;
      padding: 2rem;
    }

    .journey-quote blockquote {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-style: italic;
      color: var(--text-strong);
      line-height: 1.6;
      margin: 0 0 1.5rem;
      position: relative;
    }

    .journey-quote blockquote::before {
      content: '"';
      position: absolute;
      top: -30px;
      left: -20px;
      font-size: 5rem;
      color: var(--accent-primary);
      opacity: 0.2;
      font-family: Georgia, serif;
    }

    .journey-quote .signature {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-style: italic;
      color: var(--accent-plum-deep);
      margin-bottom: 2rem;
    }

    /* Responsive Timeline */
    @media (max-width: 768px) {
      .timeline-line {
        left: 30px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 1.5rem !important;
        text-align: left !important;
      }

      .timeline-item.left,
      .timeline-item.right {
        left: 0;
      }

      .timeline-item.left .timeline-dot,
      .timeline-item.right .timeline-dot {
        left: 20px;
        right: auto;
      }

      .timeline-photo-wrapper {
        width: 100%;
        height: auto;
        padding: 2rem 0;
      }

      .timeline-photo {
        width: 200px;
        height: 200px;
      }

      .floating-icons {
        display: none;
        /* Hide cluttered icons on small mobile */
      }

      .journey-quote blockquote {
        font-size: 1.2rem;
      }
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .about-img-wrapper {
      position: relative;
      overflow: visible;
      border-radius: 8px;
    }

    .about-img-wrapper-tall {
      grid-row: span 2;
    }

    /* Animated glow effect behind each image - INTENSIFIED */
    .about-img-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% + 80px);
      height: calc(100% + 80px);
      border-radius: 12px;
      background: radial-gradient(ellipse,
          rgba(122, 74, 99, 0.7) 0%,
          rgba(154, 164, 176, 0.5) 30%,
          rgba(94, 112, 137, 0.3) 60%,
          transparent 80%);
      animation: aboutGlow 3s ease-in-out infinite;
      z-index: 0;
      filter: blur(20px);
    }

    @keyframes aboutGlow {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
      }
    }

    /* Rotating gradient border effect - MORE VIBRANT */
    .about-img-gradient {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% + 30px);
      height: calc(100% + 30px);
      border-radius: 12px;
      background: linear-gradient(135deg,
          #8E5A75,
          #5E7089,
          #9AA4B0,
          #7A4A63,
          #7A4A63,
          #8E5A75);
      background-size: 300% 300%;
      animation: gradientShift 5s ease infinite, gradientRotate 10s linear infinite;
      z-index: 0;
      filter: blur(1px);
      opacity: 0.9;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes gradientRotate {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    .about-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      position: relative;
      z-index: 1;
      box-shadow: 0 15px 50px rgba(94, 112, 137, 0.3), 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid rgba(255, 255, 255, 0.8);
    }

    .about-img:hover {
      transform: scale(1.05) rotate(1deg);
      box-shadow: 0 25px 70px rgba(94, 112, 137, 0.5), 0 10px 30px rgba(122, 74, 99, 0.4);
      border-color: rgba(122, 74, 99, 0.9);
    }

    .about-img.tall {
      grid-row: span 2;
      height: 620px;
    }

    .about-content h2 {
      font-size: 3rem;
      margin-bottom: 2rem;
    }

    .about-content p {
      margin-bottom: 1.5rem;
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .signature {
      font-family: var(--font-signature);
      font-size: 2.6rem;
      color: var(--accent-plum);
      margin-top: 2rem;
    }

    /* Services / Offerings */
    .offerings {
      padding: var(--space-section) 0;
      background: linear-gradient(180deg, #D3DAE1 0%, #C2CCD6 50%, #E4E8EC 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Floating particles for offerings section - Subtle Hero Style */
    .offerings-particle {
      position: absolute;
      background: rgba(122, 74, 99, 0.4);
      border-radius: 50%;
      animation: floatParticle 20s infinite linear;
      pointer-events: none;
      z-index: 1;
      filter: blur(1px);
    }

    /* Remove diamond shape, keep it simple round */
    .offerings-particle::before {
      display: none;
    }

    @keyframes floatParticle {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }

      20% {
        opacity: 0.6;
      }

      80% {
        opacity: 0.6;
      }

      100% {
        transform: translateY(-100vh) translateX(var(--float-x, 20px));
        opacity: 0;
      }
    }

    /* Enhanced Icons */
    .offering-icon {
      margin-bottom: 1rem;
      color: var(--accent-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: rgba(94, 112, 137, 0.1);
      border-radius: 50%;
      transition: all 0.4s ease;
      animation: iconFloat 6s ease-in-out infinite;
    }

    .offering-icon i,
    .offering-icon svg {
      width: 28px;
      height: 28px;
      transition: all 0.4s ease;
    }

    .offering-card:hover .offering-icon {
      background: var(--accent-primary);
      color: white;
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 10px 20px rgba(94, 112, 137, 0.3);
    }

    .offering-card:hover .offering-icon i,
    .offering-card:hover .offering-icon svg {
      transform: scale(1.2);
    }

    @keyframes iconFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    /* Offerings Canvas */
    #offerings-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    /* Ensure content is above particles */
    .offerings .container {
      position: relative;
      z-index: 2;
      /* Content above particles */
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 8vw, 2.8rem);
      margin-bottom: 1.5rem;
      color: var(--text-strong);
      font-weight: 400;
      font-style: italic;
      text-align: center;
    }

    /* Etiqueta de seccion: mismo sistema que el antetitulo del hero.
       Antes era caligrafia a 2.2rem; en mayusculas espaciadas ordena la
       jerarquia y deja que el titular serif lleve el peso visual. */
    .section-subtitle {
      font-family: var(--font-body);
      color: var(--accent-plum);
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: var(--text-xs);
      font-weight: 700;
      margin-bottom: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
    }

    .section-subtitle::before,
    .section-subtitle::after {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--accent-plum);
      opacity: 0.45;
    }

    .offerings-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      /* Force 4 columns for services */
      gap: 1.5rem;
      justify-content: center;
    }

    /* 3D Flip Card Styles (Click Triggered) */
    .offering-card {
      background: transparent;
      padding: 0;
      border: none;
      perspective: 1000px;
      height: 380px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .offering-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-style: preserve-3d;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* Flip Trigger Class */
    .offering-card.is-flipped .offering-card-inner {
      transform: rotateY(180deg);
    }

    .offering-card-front,
    .offering-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 10px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Front Side */
    .offering-card-front {
      background: white;
      color: var(--text-strong);
      z-index: 2;
    }

    /* Alternating Front Colors */
    .offering-card:nth-child(odd) .offering-card-front {
      background: rgba(154, 164, 176, 0.15);
      /* Light Olive */
    }

    .offering-card:nth-child(even) .offering-card-front {
      background: rgba(122, 74, 99, 0.15);
      /* Light Gold */
    }

    /* =========================================
       ZIG-ZAG SERVICES LAYOUT
       ========================================= */

    .services-zigzag {
      padding: var(--space-section) 0 0;
      background: linear-gradient(180deg, #D3DAE1 0%, #C2CCD6 50%, #E4E8EC 100%);
      position: relative;
      overflow: hidden;
    }

    .services-zigzag .container {
      text-align: center;
      position: relative;
      z-index: 2;
      margin-bottom: 5rem;
    }

    /* Category Header Bands */
    .category-header {
      background: linear-gradient(135deg, var(--accent-primary) 0%, #4C5B72 100%);
      padding: 0.75rem 2rem;
      margin: 4rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

    .category-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }

    .category-header .container {
      text-align: left;
      margin-bottom: 0;
    }

    .category-header .category-badge {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 6rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.2);
      margin-bottom: 0;
      line-height: 1;
    }

    .category-header .category-title {
      font-size: 2.2rem;
      color: white;
      margin-bottom: 0;
      margin-top: 0;
      font-weight: 400;
      text-align: left;
      line-height: 1.2;
    }

    .category-header .category-subtitle {
      color: rgba(255, 255, 255, 0.8);
      font-style: italic;
      font-size: 1.1rem;
      margin: 0;
    }

    /* Creative Category Style */
    .category-header.creative {
      background: linear-gradient(135deg, var(--accent-plum-deep) 0%, #5A5560 100%);
    }

    /* Lifestyle Category Style - Soft Sage/Gold */
    .category-header.lifestyle {
      background: linear-gradient(135deg, var(--accent-neutral) 0%, var(--accent-plum) 100%);
    }

    .category-header.lifestyle .category-badge {
      color: rgba(43, 47, 56, 0.25);
    }

    .category-header.lifestyle .category-title {
      color: var(--text-strong);
    }

    .category-header.lifestyle .category-subtitle {
      color: var(--text-muted);
    }

    /* Service Rows - Zig-Zag */
    .service-row {
      display: flex;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
      gap: 4rem;
      position: relative;
    }

    .service-row::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(94, 112, 137, 0.2), transparent);
    }

    .service-row:last-of-type::after {
      display: none;
    }

    .service-visual {
      flex: 0 0 200px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-circle {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: linear-gradient(135deg, #C2CCD6 0%, var(--accent-neutral) 50%, #9AA4B0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px rgba(94, 112, 137, 0.2);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }

    .icon-circle::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border-radius: 50%;
      border: 2px dashed rgba(94, 112, 137, 0.3);
      animation: spinSlow 20s linear infinite;
    }

    @keyframes spinSlow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .icon-circle i,
    .icon-circle svg {
      width: 50px;
      height: 50px;
      color: white;
      transition: all 0.4s ease;
    }

    .service-row:hover .icon-circle {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 25px 80px rgba(94, 112, 137, 0.35);
    }

    .service-row:hover .icon-circle i,
    .service-row:hover .icon-circle svg {
      transform: scale(1.1);
    }

    /* Creative Icon Circle */
    .icon-circle.creative {
      background: linear-gradient(135deg, var(--accent-plum) 0%, var(--accent-plum-deep) 100%);
    }

    .icon-circle.creative i,
    .icon-circle.creative svg {
      color: white;
    }

    .icon-circle.creative::before {
      border-color: rgba(122, 74, 99, 0.3);
    }

    /* Lifestyle Icon Circle - Soft Sage/Cream */
    .icon-circle.lifestyle {
      background: linear-gradient(135deg, #E4E8EC 0%, #D3DAE1 100%);
      border: 2px solid var(--accent-plum);
    }

    .icon-circle.lifestyle i,
    .icon-circle.lifestyle svg {
      color: var(--accent-plum-deep);
    }

    .icon-circle.lifestyle::before {
      border-color: rgba(122, 74, 99, 0.25);
    }

    /* Service Content */
    .service-content {
      flex: 1;
    }

    .service-row {
      display: flex;
      align-items: flex-start;
      gap: 3rem;
      padding: 4rem 2rem;
      border-bottom: 1px solid rgba(94, 112, 137, 0.1);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .service-row:hover {
      background: transparent;
    }

    .service-row.active {
      background: transparent;
      padding-bottom: 5rem;
    }

    /* Service Content */
    .service-content {
      flex: 1;
    }

    .service-content h3 {
      font-size: 2rem;
      margin-bottom: 0;
      color: var(--text-strong);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding-right: 1.5rem;
      transition: margin 0.3s ease;
      gap: 0.5rem;
    }

    .service-row.active .service-content h3 {
      margin-bottom: 1.5rem;
    }

    .service-chevron {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      color: var(--accent-primary);
      flex-shrink: 0;
    }

    .service-row.active .service-chevron {
      transform: rotate(180deg);
    }

    .service-content h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--accent-primary);
      border-radius: 2px;
      transition: width 0.4s ease;
    }

    .service-row.active .service-content h3::after {
      width: 100px;
    }

    .service-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-muted);
      /* En desktop: siempre visible */
      max-height: none;
      opacity: 1;
      margin-top: 1rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-row.active .service-content p {
      max-height: none;
      opacity: 1;
      margin-top: 1rem;
    }

    /* Reversed Row */
    .service-row.reverse {
      flex-direction: row-reverse;
    }

    .service-row.reverse .service-content {
      text-align: right;
    }

    .service-row.reverse .service-content h3::after {
      left: auto;
      right: 0;
    }

    /* CTA Section */
    .services-cta {
      text-align: center;
      padding: 3rem 2rem;
      margin-top: 0;
      background: linear-gradient(135deg, #B6C2CE 0%, #A7B4C1 50%, #B6C2CE 100%);
      border-radius: 0;
    }

    .services-cta p {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-style: italic;
      color: var(--text-strong);
      margin-bottom: 1.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .service-row {
        flex-direction: column !important;
        text-align: center;
        padding: 3rem 1.5rem;
        gap: 2rem;
      }

      .service-row.reverse .service-content {
        text-align: center;
      }

      .service-row.reverse .service-content h3::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
      }

      .service-content h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        /* Consistent width for centered mobile view */
      }

      .service-visual {
        flex: 0 0 auto;
        margin: 0 auto;
      }

      .icon-circle {
        width: 100px;
        height: 100px;
      }

      .icon-circle i,
      .icon-circle svg {
        width: 35px;
        height: 35px;
      }

      .service-content h3 {
        font-size: 1.6rem;
      }

      .service-content p {
        font-size: 1rem;
        /* En mobile: acordeón - oculto por defecto */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
      }

      .service-row.active .service-content p {
        /* En mobile: acordeón - visible cuando está activo */
        max-height: 500px;
        opacity: 1;
        margin-top: 1rem;
      }

      .category-header {
        padding: 0.5rem 1.5rem;
        margin: 2rem 0 1rem;
      }

      .category-header .category-title {
        font-size: 1.6rem;
      }

      .category-header .category-badge {
        font-size: 4rem;
      }
    }


    .offering-card-back {
      background: var(--accent-primary);
      /* Solid Olive */
      color: white;
      transform: rotateY(180deg);
      box-shadow: 0 20px 40px rgba(94, 112, 137, 0.3);
      z-index: 1;
    }

    /* Alternating Back Colors */
    .offering-card:nth-child(even) .offering-card-back {
      background: #7A4A63;
      /* Solid Gold */
      box-shadow: 0 20px 40px rgba(122, 74, 99, 0.3);
    }

    .offering-card-back h3 {
      color: #FFFFFF !important;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }

    .offering-card-back p {
      color: #FFFFFF !important;
      font-size: 0.85rem;
      line-height: 1.5;
      opacity: 0.95;
    }

    /* Buttons */
    .btn-flip,
    .btn-flip-back {
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.75rem;
      transition: all 0.3s ease;
      padding: 0.4rem 0.8rem;
      border-radius: 15px;
    }

    .btn-flip {
      color: var(--accent-primary);
      border: 1px solid var(--accent-primary);
    }

    .btn-flip:hover {
      background: var(--accent-primary);
      color: white;
    }

    .btn-flip-back {
      color: white !important;
      border: 1px solid white;
    }

    .btn-flip-back:hover {
      background: white;
      color: var(--accent-primary) !important;
    }

    /* Icon adjustments */
    .offering-card-front .offering-icon {
      margin-bottom: 1rem;
      transform: scale(1);
      color: var(--accent-plum);
    }

    /* Hover effect for card (lift only) */
    .offering-card:hover {
      transform: translateY(-10px);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .offerings-grid {
        grid-template-columns: 1fr;
      }
    }

    .offering-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .offering-card p {
      color: var(--text-muted);
      margin-bottom: 1rem;
      font-size: 0.85rem;
      line-height: 1.5;
    }

    .link-arrow {
      color: var(--accent-plum-deep);
      text-decoration: none;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Testimonials / Love Notes */
    .love-notes {
      padding: var(--space-section) 0;
      /* Subtle premium gradient */
      background: linear-gradient(135deg, rgba(232, 235, 224, 0.8) 0%, rgba(212, 217, 200, 0.8) 100%);
      text-align: center;
      position: relative;
    }

    /* Removed particles ::before */

    .love-notes .container {
      position: relative;
      z-index: 2;
      /* Asegurar que el contenido esté sobre el fondo */
    }

    .testimonial-card {
      display: none;
      /* Ocultar por defecto */
      transition: opacity 0.5s ease-in-out;
      max-width: 800px;
      margin: 0 auto;
    }

    .testimonial-card.active {
      display: block;
      /* Mostrar solo el activo */
      animation: fadeIn 1s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .note-slider {
      max-width: 800px;
      margin: 0 auto;
    }

    /* Testimonial Navigation Dots */
    .testimonial-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid var(--accent-primary);
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .testimonial-dot:hover {
      background: rgba(139, 153, 95, 0.3);
      transform: scale(1.2);
    }

    .testimonial-dot.active {
      background: var(--accent-primary);
      transform: scale(1.3);
    }

    .note-text {
      font-size: 1.8rem;
      font-family: var(--font-display);
      font-style: italic;
      color: var(--text-strong);
      margin-bottom: 2rem;
    }

    .note-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
    }

    .note-author h4 {
      font-size: 1rem;
      font-weight: 700;
    }

    /* Footer */
    footer {
      background: linear-gradient(180deg, #C2CCD6 0%, #9AA4B0 100%);
      padding: 2.5rem 0;
      text-align: center;
      color: var(--bg-surface);
    }

    /* Footer logo styles - ensure identical to header */
    footer .logo {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    footer .logo .studio-text {
      align-self: flex-end;
    }

    footer h4 {
      color: white;
    }

    footer p,
    footer a {
      color: rgba(255, 255, 255, 0.9);
    }

    .footer-socials {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
    }

    .footer-socials a {
      color: var(--text-strong);
      transition: color 0.3s;
    }

    .footer-socials a:hover {
      color: var(--accent-plum-deep);
    }

    .footer-links {
      margin-bottom: 1rem;
    }

    .footer-links a {
      margin: 0 1rem;
      text-decoration: none;
      color: var(--text-muted);
    }

    /* Contact & Scheduling Section */
    .contact-section {
      padding: 4rem 0 8rem;
      /* Mismo fondo que About */
      background: linear-gradient(135deg, #D3DAE1 0%, #E4E8EC 25%, #C2CCD6 50%, #E4E8EC 75%, #D3DAE1 100%);
      background-size: 400% 400%;
      animation: aboutGradientFlow 15s ease infinite;
      position: relative;
      overflow: hidden;
      border-top: none;
    }

    /* Copia de pseudo-elementos de About para Contact */
    .contact-section::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 5%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(94, 112, 137, 0.35) 0%, rgba(154, 164, 176, 0.15) 50%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
      animation: aboutOrb1 20s ease-in-out infinite;
      z-index: 0;
      pointer-events: none;
    }

    .contact-section::after {
      content: '';
      position: absolute;
      bottom: 10%;
      right: 5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(122, 74, 99, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      animation: aboutOrb1 25s ease-in-out infinite reverse;
      z-index: 0;
      pointer-events: none;
    }

    .contact-container {
      position: relative;
      z-index: 2;
      /* Asegurar que el contenido esté sobre el fondo */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .contact-info {
      position: relative;
      z-index: 2;
    }

    .contact-info h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      color: var(--text-strong);
      text-align: center;
    }

    .contact-info p {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .contact-details {
      margin-top: 3rem;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .contact-detail-item:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateX(10px);
      box-shadow: 0 5px 20px rgba(94, 112, 137, 0.15);
    }

    .contact-detail-item i {
      color: var(--accent-primary);
      flex-shrink: 0;
    }

    .contact-detail-item span {
      color: var(--text-strong);
      font-size: 1.1rem;
    }

    /* Scheduling Widget Container */
    .scheduling-widget {
      background: #F0F3F5;
      padding: 2.5rem;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
    }

    .scheduling-widget h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--text-strong);
      text-align: center;
    }

    .scheduling-widget p {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    /* Calendly embed container */
    .calendly-inline-widget {
      min-width: 320px;
      height: 700px;
      border-radius: 12px;
      overflow: hidden;
    }

    /* Alternative: Custom Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-weight: 600;
      color: var(--text-strong);
      font-size: 0.95rem;
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 1rem 1.25rem;
      border: 2px solid rgba(94, 112, 137, 0.2);
      border-radius: 8px;
      font-size: 1rem;
      font-family: var(--font-body);
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.8);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent-primary);
      background: white;
      box-shadow: 0 0 0 3px rgba(94, 112, 137, 0.1);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .submit-btn {
      background: var(--accent-primary);
      color: white;
      padding: 1.2rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(94, 112, 137, 0.3);
      letter-spacing: 0.05em;
    }

    .submit-btn:hover {
      background: #4C5B72;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(94, 112, 137, 0.4);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 968px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .contact-info h2 {
        font-size: 2.5rem;
      }
    }

    /* Imagen móvil - oculta por defecto en desktop */
    .hero-image-mobile {
      display: none;
    }

    /* Mobile */
    @media (max-width: 768px) {

      /* Mostrar imagen móvil y ocultar imagen desktop */
      .hero-image-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        min-height: 280px;
        margin: 1.5rem 0;
      }

      .hero-image-mobile .hero-image {
        width: 250px !important;
        height: 250px !important;
        margin: 0 auto;
      }

      .hero-image-mobile .image-rotating-border {
        width: 280px;
        height: 280px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .hero-image-mobile .image-glow-effect {
        width: 310px;
        height: 310px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      /* Contenedor base con más padding en móvil */
      .container {
        padding: 0 1.5rem;
      }

      /* El espacio superior del hero lo resuelve el clamp de la regla base,
         que ya reserva sitio para la navegacion absoluta. */

      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
      }

      .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Ocultar imagen desktop en móvil */
      .hero-image-wrapper {
        display: none !important;
      }

      /* El tamano lo resuelve la escala fluida (--text-3xl / --text-lg);
         aqui solo se ajusta el centrado en movil. */
      .hero p {
        margin: 0 auto 2rem;
      }

      .hero-image {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
        position: relative;
        left: auto;
        transform: none;
      }

      .image-rotating-border {
        width: 310px;
        height: 310px;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .image-glow-effect {
        width: 340px;
        height: 340px;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .blob-bg {
        display: none;
      }

      /* Navigation */
      .nav-links {
        display: none;
      }

      .logo {
        font-size: 2.2rem;
      }

      .logo span.studio-text {
        font-size: 0.7rem;
        margin-top: 6px;
      }

      /* About section */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .about-content h2 {
        font-size: 2rem;
      }

      .about-images {
        grid-template-columns: 1fr;
      }

      .about-img.tall {
        height: 300px;
      }

      .about-img {
        height: 200px;
      }

      /* Offerings */
      .offerings-grid {
        grid-template-columns: 1fr;
      }

      .offerings h2 {
        font-size: 2rem;
      }

      /* Story section */
      .story-content {
        padding: 0 1rem;
      }

      .story-content h2 {
        font-size: 2rem;
      }

      /* Contact section */
      .contact-container {
        padding: 0 1rem;
      }

      .contact-info h2 {
        font-size: 2rem;
      }

      /* Footer */
      footer {
        padding: 2rem 1rem;
      }

      footer .logo {
        font-size: 2.2rem;
      }

      footer .logo .studio-text {
        font-size: 0.7rem;
      }

      .footer-links a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
      }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
      .container {
        padding: 0 1rem;
      }

      .hero h1 {
        font-size: 1.8rem;
      }

      .hero-image {
        width: 250px !important;
        height: 250px !important;
      }

      .image-rotating-border {
        width: 280px;
        height: 280px;
      }

      .image-glow-effect {
        width: 310px;
        height: 310px;
      }

      .logo {
        font-size: 1.8rem;
      }

      .logo span.studio-text {
        font-size: 0.6rem;
        margin-top: 4px;
        margin-right: -10px;
        /* Compensate for italic slant on small screens */
      }

      .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }

      .about-content h2,
      .offerings h2,
      .story-content h2,
      .contact-info h2 {
        font-size: 1.6rem;
      }
    }

    /* Particles Canvas */
    #particles-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }



    /* Language Switcher */
    .language-switcher {
      display: flex;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.5);
      padding: 0.3rem;
      border-radius: 25px;
      backdrop-filter: blur(10px);
    }

    .lang-btn {
      padding: 0.4rem 0.8rem;
      border: none;
      background: transparent;
      color: var(--text-strong);
      font-weight: 600;
      font-size: 0.85rem;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .lang-btn:hover {
      background: rgba(94, 112, 137, 0.1);
    }

    .lang-btn.active {
      background: var(--accent-primary);
      color: white;
    }

    /* AOS Animation Fix - Hide hero image until animation triggers */
    .hero-image-wrapper[data-aos="fade-left"]:not(.aos-animate) {
      opacity: 0 !important;
      visibility: hidden !important;
    }

    .hero-image-wrapper[data-aos="fade-left"].aos-animate {
      opacity: 1 !important;
      visibility: visible !important;
    }

    /* Mobile Hamburger Menu */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--accent-primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: var(--bg-base);
      z-index: 1000;
      padding: 5rem 2rem 2rem;
      transition: right 0.3s ease;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .mobile-nav-links a {
      text-decoration: none;
      color: var(--text-strong);
      font-size: 1.2rem;
      font-weight: 500;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(94, 112, 137, 0.2);
    }

    .mobile-nav .language-switcher {
      margin-top: 2rem;
    }

    .mobile-nav .btn-primary {
      margin-top: 2rem;
      display: block;
      text-align: center;
    }


    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: flex;
      }

      nav .btn-primary,
      nav .language-switcher {
        display: none;
      }
    }

    /* General List Styles */
    ul {
      padding-left: 20px;
      margin-left: 1rem;
      list-style-position: outside;
    }

    /* Legal Pages Background */
    body.legal-page {
      background: linear-gradient(135deg, rgba(232, 235, 224, 1) 0%, rgba(212, 217, 200, 1) 100%);
      /* Increased opacity to 1 for solid background */
    }

    li {
      margin-bottom: 0.5rem;
    }

    /* Legal Pages & General Content Styles */
    .legal-page-container {
      padding-top: 10rem;
      min-height: 60vh;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .legal-page-container h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .legal-page-container h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    @media (max-width: 992px) {
      .legal-page-container {
        padding-top: 8rem;
        max-width: 90%;
      }
    }

    @media (max-width: 768px) {
      .legal-page-container {
        padding-top: 7rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .legal-page-container h1 {
        font-size: 2.2rem;
      }

      .legal-page-container h3 {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .legal-page-container {
        padding-top: 6rem;
      }

      .legal-page-container h1 {
        font-size: 1.8rem;
      }
    }
/* ==========================================================================
   Número de versión visible (esquina inferior derecha)
   Subir el valor en index.html en CADA deploy para descartar caché.
   ========================================================================== */
.site-version {
  position: fixed;
  right: 10px;
  bottom: 8px;
  z-index: 9999;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 7px;
  border-radius: 10px;
  pointer-events: none;
  user-select: none;
}

@media print {
  .site-version { display: none; }
}

/* ==========================================================================
   Preferencia de movimiento reducido
   Quien la activa suele hacerlo por mareo, vértigo o migrañas. Se anulan
   recorridos y parallax; el contenido queda en su estado final legible.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  /* El lienzo de partículas es puramente decorativo */
  #particles-canvas {
    display: none;
  }

  /* Garantizar que nada quede oculto esperando una animación */
  .hero p,
  .hero-btns,
  .hero-image-wrapper,
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Preguntas frecuentes
   Acordeón nativo con <details>: accesible por teclado y sin JavaScript.
   ========================================================================== */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--bg-surface);
}

.faq-list {
  max-width: 780px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-base);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--accent-neutral);
}

.faq-item[open] {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.25rem 1.15rem 1.35rem;
  position: relative;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.45;
}

/* Ocultar el triángulo por defecto en Safari y Chrome */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Signo propio: cruz que gira a menos al abrir */
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  background:
    linear-gradient(var(--accent-plum), var(--accent-plum)) center/13px 1.5px no-repeat,
    linear-gradient(var(--accent-plum), var(--accent-plum)) center/1.5px 13px no-repeat;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent-plum);
  outline-offset: -2px;
}

.faq-item p {
  margin: 0;
  padding: 0 3.25rem 1.35rem 1.35rem;
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 68ch;
}

/* ========================================================================
   ✨ MAGIA REAL 2029+ - Animaciones que FUNCIONAN ✨
   ======================================================================== */

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(80px) rotateX(20deg); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

@keyframes buttonPulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(122, 74, 99, 0.7); }
  50% { transform: scale(1); box-shadow: 0 0 30px 15px rgba(122, 74, 99, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(122, 74, 99, 0); }
}

@keyframes floatingSoft {
  0%, 100% { transform: translateY(0) rotateZ(0deg); }
  33% { transform: translateY(-20px) rotateZ(2deg); }
  66% { transform: translateY(-10px) rotateZ(-1deg); }
}

@keyframes textReveal {
  from { opacity: 0; transform: translateY(60px); clip-path: inset(0 0 100% 0); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}

@keyframes scaleAndFade {
  from { opacity: 0; transform: scale(0.85) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* HERO: Entrada IMPACTANTE */
.hero-text h1 {
  animation: heroSlideUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both !important;
  transform-origin: center bottom;
}

.hero-text p {
  animation: textReveal 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both !important;
}

/* BOTONES: Glow y hover dramático */
.btn {
  animation: buttonPulseGlow 2s ease-out 0.8s 1 !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 0 20px 50px rgba(122, 74, 99, 0.5) !important;
  letter-spacing: 1px;
}

.btn:active {
  transform: translateY(-4px) scale(1.05) !important;
}

/* CARDS: Flotación infinita */
.service-card {
  animation: scaleAndFade 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both,
            floatingSoft 4s ease-in-out 1.2s infinite !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:nth-child(1) { animation-delay: 0.2s, 1.2s !important; }
.service-card:nth-child(2) { animation-delay: 0.4s, 1.5s !important; }
.service-card:nth-child(3) { animation-delay: 0.6s, 1.8s !important; }

.service-card:hover {
  transform: translateY(-20px) scale(1.05) rotateZ(2deg) !important;
  box-shadow: 0 30px 60px rgba(94, 112, 137, 0.3) !important;
  border-color: var(--accent-plum) !important;
}

/* TESTIMONIOS: Flotación dramática */
.love-notes .note {
  animation: scaleAndFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both,
            floatingSoft 3.5s ease-in-out 0.5s infinite !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.love-notes .note:nth-child(1) { animation-delay: 0.3s, 0.5s !important; }
.love-notes .note:nth-child(2) { animation-delay: 0.5s, 0.8s !important; }
.love-notes .note:nth-child(3) { animation-delay: 0.7s, 1.1s !important; }

.love-notes .note:hover {
  transform: translateY(-15px) scale(1.06) !important;
  box-shadow: 0 25px 50px rgba(122, 74, 99, 0.3) !important;
}

/* FAQ: Expansión suave */
.faq-item {
  animation: scaleAndFade 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item[open] {
  background: linear-gradient(135deg, rgba(122,74,99,0.05) 0%, rgba(94,112,137,0.02) 100%) !important;
  border-color: var(--accent-plum) !important;
}

.faq-item summary:hover {
  color: var(--accent-plum) !important;
  transform: translateX(8px);
}

/* NAV: Efecto premium */
nav a {
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-bottom: 6px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-plum), var(--accent-primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left;
}

nav a:hover {
  color: var(--accent-plum) !important;
  transform: translateY(-4px);
}

/* LISTAS: Stagger épico */
li {
  animation: textReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.2s; }
li:nth-child(3) { animation-delay: 0.3s; }
li:nth-child(4) { animation-delay: 0.4s; }
li:nth-child(5) { animation-delay: 0.5s; }

li:hover {
  transform: translateX(16px) scale(1.08) !important;
  color: var(--accent-plum) !important;
  font-weight: 700;
}

/* SCROLL SUAVE */
html {
  scroll-behavior: smooth !important;
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ========================================================================
   ✨ MAGIA EXTREMA - IMPOSIBLE DE IGNORAR ✨
   ======================================================================== */

@keyframes megaSlideUp {
  0% { opacity: 0; transform: translateY(150px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes megaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes colorPulse {
  0%, 100% { color: inherit; }
  50% { color: var(--accent-plum); }
}

/* Elemento hero: ENORME entrada */
.hero-text h1 {
  animation: megaSlideUp 2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both !important;
  color: var(--text-strong);
}

.hero-text p {
  animation: megaSlideUp 2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both !important;
}

/* Botones: MEGA animación */
.btn {
  animation: megaSlideUp 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.btn:hover {
  transform: translateY(-15px) scale(1.15) !important;
  box-shadow: 0 40px 80px rgba(122, 74, 99, 0.6) !important;
  background-color: var(--accent-plum) !important;
  border-color: var(--accent-plum) !important;
  color: white !important;
}

/* Cards: FLOTACIÓN OBVIA */
.service-card {
  animation: megaSlideUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both,
            megaBounce 2.5s ease-in-out 1.2s infinite !important;
  border: 2px solid var(--line) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-30px) scale(1.08) !important;
  box-shadow: 0 50px 100px rgba(122, 74, 99, 0.4) !important;
  border-color: var(--accent-plum) !important;
  background: linear-gradient(135deg, rgba(122,74,99,0.05), rgba(94,112,137,0.02)) !important;
}

/* Testimonios: OBVIA FLOTACIÓN */
.love-notes .note {
  animation: megaSlideUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both,
            megaBounce 3s ease-in-out 0.8s infinite !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.love-notes .note:hover {
  transform: translateY(-25px) scale(1.1) !important;
  box-shadow: 0 40px 80px rgba(122, 74, 99, 0.4) !important;
  border-color: var(--accent-plum) !important;
}

/* FAQ: Cambio obvio */
.faq-item {
  animation: megaSlideUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item[open] {
  background: var(--accent-plum-light) !important;
  border-left: 5px solid var(--accent-plum) !important;
  padding-left: calc(1.35rem - 1px) !important;
}

.faq-item summary:hover {
  color: var(--accent-plum) !important;
  background: rgba(122,74,99,0.08) !important;
}

/* Listas: OBVIO MOVIMIENTO */
li {
  animation: megaSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

li:nth-child(1) { animation-delay: 0.1s; }
li:nth-child(2) { animation-delay: 0.25s; }
li:nth-child(3) { animation-delay: 0.4s; }
li:nth-child(4) { animation-delay: 0.55s; }
li:nth-child(5) { animation-delay: 0.7s; }

li:hover {
  transform: translateX(20px) scale(1.1) !important;
  color: var(--accent-plum) !important;
  font-weight: 800 !important;
  padding-left: 30px !important;
}

/* Scroll suave */
html { scroll-behavior: smooth !important; }

@media (max-width: 768px) {
  .btn:hover { transform: translateY(-10px) scale(1.1) !important; }
  .service-card:hover { transform: translateY(-20px) scale(1.05) !important; }
}

/* ========================================================================
   Fondos alternados para visibilidad de secciones
   ======================================================================== */

.hero { background: var(--bg-base) !important; }

.about-section { background: var(--bg-surface) !important; }

.services { background: var(--bg-sunken) !important; }

.love-notes { background: var(--bg-surface) !important; }

.faq-section { background: linear-gradient(135deg, var(--bg-base), var(--bg-sunken)) !important; }

.contact-section { background: var(--bg-surface) !important; }

section {
  transition: background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  padding: var(--space-section) 0 !important;
}

/* ========================================================================
   Sección "The Journey" - Fondo animado
   ======================================================================== */

@keyframes breathingGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-journey {
  background: linear-gradient(
    135deg,
    var(--bg-surface) 0%,
    rgba(122, 74, 99, 0.08) 25%,
    var(--bg-surface) 50%,
    rgba(94, 112, 137, 0.06) 75%,
    var(--bg-surface) 100%
  ) !important;
  background-size: 200% 200% !important;
  animation: breathingGradient 8s ease-in-out infinite !important;
  position: relative;
}

.about-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(122, 74, 99, 0.05) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 80%,
    rgba(94, 112, 137, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
  animation: breathingGradient 12s ease-in-out infinite reverse;
}

.about-journey > * {
  position: relative;
  z-index: 1;
}
