:root {
      --gold: #CA8F47;
      --amber: #E9A041;
      --coral: #F59F84;
      --yellow: #F8C841;
      --ink: #1a1a1a;
      --ink-m: #555;
      --bg: #FFFDF9;
      --cream: #FFF7EC;
      --white: #ffffff;
      --f-display: 'Instrument Serif', serif;
      --f-body: 'Space Grotesk', sans-serif;
      --f-hand: 'Covered By Your Grace', cursive
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: var(--f-body);
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased
    }

    img {
      display: block;
      max-width: 100%
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button,
    a,
    input,
    select,
    textarea {
      min-height: 44px
    }

    .splash {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      aspect-ratio: 1;
      animation: splashIn .8s cubic-bezier(.34, 1.56, .64, 1) forwards
    }

    .splash svg {
      width: 100%;
      height: 100%;
      display: block;
      opacity: 0.6
    }

    @keyframes splashIn {
      0% {
        opacity: 0;
        transform: scale(.5) rotate(-10deg)
      }

      60% {
        opacity: 0.7;
        transform: scale(1.03) rotate(2deg)
      }

      100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg)
      }
    }

    .splash-1 {
      width: clamp(260px, 34vw, 500px);
      top: 8%;
      right: 15%;
      animation-delay: .3s
    }

    .splash-2 {
      width: clamp(210px, 27vw, 400px);
      bottom: 8%;
      left: 2%;
      animation-delay: .6s
    }

    .splash-3 {
      width: clamp(140px, 19vw, 260px);
      top: 50%;
      right: 12%;
      animation-delay: .9s
    }

    .splash-4 {
      width: clamp(140px, 19vw, 270px);
      top: 15%;
      left: 5%;
      animation-delay: 1.1s
    }

    .splash-5 {
      width: clamp(120px, 16vw, 230px);
      bottom: 25%;
      right: 42%;
      animation-delay: 1.3s
    }

    .splash-icon {
      position: absolute;
      font-size: clamp(1.4rem, 4vw, 3.8rem);
      animation: iconFloat 6s ease-in-out infinite;
      z-index: 0;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .15));
      opacity: 0.6;
      pointer-events: none
    }

    @keyframes iconFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg)
      }

      33% {
        transform: translateY(-5px) rotate(3deg)
      }

      66% {
        transform: translateY(3px) rotate(-2deg)
      }
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.25rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 253, 249, .88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(202, 143, 71, .08);
      transition: all .4s ease
    }

    .nav.scrolled {
      padding: .85rem 2.5rem;
      box-shadow: 0 4px 30px rgba(202, 143, 71, .08);
      border-bottom-color: rgba(202, 143, 71, .15)
    }

    .nav-logo {
      font-family: var(--f-display);
      font-size: 1.4rem;
      color: var(--gold)
    }

    .nav-logo span {
      color: var(--ink);
      font-family: var(--f-body);
      font-weight: 300;
      font-size: .75rem;
      margin-left: .5rem;
      letter-spacing: .12em;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      height: 100%
    }

    .nav-links a {
      color: var(--ink-m);
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .03em;
      transition: color .2s;
      display: flex;
      align-items: center
    }

    .nav-links a:hover {
      color: var(--gold)
    }

    .nav-cta {
      background: var(--gold) !important;
      color: #fff !important;
      padding: .6rem 1.5rem;
      border-radius: 100px;
      font-weight: 700 !important;
      font-size: .8rem !important;
      letter-spacing: .04em !important;
      transition: all .3s cubic-bezier(.22, 1, .36, 1) !important;
      box-shadow: 0 4px 20px rgba(202, 143, 71, .25)
    }

    .nav-cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 30px rgba(202, 143, 71, .35) !important
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      min-height: 44px;
      min-width: 44px
    }

    .ham-lines {
      width: 24px;
      height: 18px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between
    }

    .ham-lines span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--ink);
      transition: all .35s cubic-bezier(.76, 0, .24, 1);
      transform-origin: center
    }

    .hamburger.open .ham-lines span:first-child {
      transform: translateY(8px) rotate(45deg)
    }

    .hamburger.open .ham-lines span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open .ham-lines span:last-child {
      transform: translateY(-8px) rotate(-45deg)
    }

    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: var(--bg);
      flex-direction: column;
      overflow: hidden
    }

    .mobile-nav.open {
      display: flex
    }

    /* Blob decorativo de fondo */
    .mobile-nav::before {
      content: '';
      position: absolute;
      width: 420px;
      height: 420px;
      top: -120px;
      right: -100px;
      border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
      background: linear-gradient(135deg, rgba(248, 200, 65, .18), rgba(233, 160, 65, .12));
      pointer-events: none;
      z-index: 0
    }

    .mobile-nav::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      bottom: -80px;
      left: -80px;
      border-radius: 50% 40% 60% 50% / 40% 55% 45% 60%;
      background: linear-gradient(135deg, rgba(245, 159, 132, .15), rgba(202, 143, 71, .08));
      pointer-events: none;
      z-index: 0
    }

    .mobile-nav-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 2rem 2.5rem 3rem
    }

    /* Header del menú */
    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: .25rem;
      margin-bottom: 3rem
    }

    .mobile-nav-logo {
      font-family: var(--f-display);
      font-size: 1.4rem;
      color: var(--gold)
    }

    .mobile-nav-logo span {
      color: var(--ink);
      font-family: var(--f-body);
      font-weight: 300;
      font-size: .7rem;
      margin-left: .4rem;
      letter-spacing: .12em;
      text-transform: uppercase
    }

    .mobile-nav-close {
      background: none;
      border: none;
      cursor: pointer;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(202, 143, 71, .08);
      color: var(--ink);
      font-size: 1.2rem;
      transition: background .2s
    }

    .mobile-nav-close:hover {
      background: rgba(202, 143, 71, .15)
    }

    /* Links del menú */
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: .25rem;
      flex: 1
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 0;
      border-bottom: 1px solid rgba(202, 143, 71, .08);
      color: var(--ink);
      font-family: var(--f-display);
      font-size: 2.2rem;
      font-weight: 400;
      letter-spacing: -.02em;
      transition: all .25s ease;
      position: relative;
      overflow: hidden
    }

    .mobile-nav-link::before {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--gold), var(--amber));
      border-radius: 0 2px 2px 0;
      transition: left .25s ease
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
      color: var(--gold);
      padding-left: 1rem
    }

    .mobile-nav-link:hover::before,
    .mobile-nav-link:active::before {
      left: 0
    }

    .mobile-nav-link-num {
      font-family: var(--f-body);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--gold);
      opacity: .6;
      align-self: flex-start;
      margin-top: .6rem
    }

    .mobile-nav-arrow {
      font-size: 1rem;
      opacity: .3;
      transition: all .25s ease
    }

    .mobile-nav-link:hover .mobile-nav-arrow {
      opacity: 1;
      transform: translateX(4px)
    }

    /* CTA inferior */
    .mobile-nav-footer {
      padding-top: 2rem
    }

    .mobile-nav-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      width: 100%;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      color: #fff;
      padding: 1.1rem 2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 8px 30px rgba(202, 143, 71, .3);
      transition: all .3s ease;
      min-height: 54px
    }

    .mobile-nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(202, 143, 71, .4)
    }

    .mobile-nav-tag {
      font-family: var(--f-hand);
      font-size: .95rem;
      color: var(--coral);
      text-align: center;
      margin-top: 1rem;
      display: block;
      opacity: .8
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 8rem 2.5rem 5rem;
      position: relative;
      overflow: hidden;
      background: var(--bg)
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 15% 80%, rgba(245, 159, 132, .2) 0%, transparent 50%), radial-gradient(ellipse at 85% 20%, rgba(248, 200, 65, .15) 0%, transparent 45%), radial-gradient(ellipse at 50% 50%, rgba(233, 160, 65, .08) 0%, transparent 60%);
      pointer-events: none
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 2
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--gold);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      padding: .45rem 1.25rem;
      border-radius: 100px;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      box-shadow: 0 4px 15px rgba(202, 143, 71, .3)
    }

    .hero-title {
      font-family: var(--f-display);
      font-size: clamp(3.25rem, 6vw, 5.5rem);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 1.5rem
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
      position: relative
    }

    .hero-title em::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: -5%;
      right: -5%;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 8C40 2,80 12,120 5S180 10,198 4' stroke='%23F8C841' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
      background-size: 100% 100%
    }

    .hero-sub {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--ink-m);
      max-width: 460px;
      margin-bottom: 2.5rem;
      font-weight: 300
    }

    .hero-hand {
      font-family: var(--f-hand);
      font-size: 1.3rem;
      color: var(--coral);
      transform: rotate(-2deg);
      display: inline-block;
      margin-bottom: 1.5rem
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      color: #fff;
      padding: 1rem 2.25rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: .95rem;
      transition: all .3s cubic-bezier(.22, 1, .36, 1);
      box-shadow: 0 8px 30px rgba(202, 143, 71, .3)
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(202, 143, 71, .4)
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: var(--ink);
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: .95rem;
      border: 1.5px solid var(--ink);
      transition: all .3s ease;
      background: transparent
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    .hero-visual {
      position: relative
    }

    .hero-img-wrap {
      border-radius: 2rem;
      overflow: hidden;
      position: relative;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .08);
      transition: transform .6s cubic-bezier(.22, 1, .36, 1)
    }

    .hero-img-wrap:hover {
      transform: scale(1.02) rotate(-1deg)
    }

    .hero-img-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover
    }

    .hero-img-wrap::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 2.5rem;
      z-index: -1;
      background: linear-gradient(135deg, var(--gold), var(--coral), var(--yellow), var(--amber));
      animation: paintFrame 8s ease-in-out infinite
    }

    @keyframes paintFrame {

      0%,
      100% {
        opacity: .6;
        filter: blur(8px)
      }

      50% {
        opacity: 1;
        filter: blur(12px)
      }
    }

    .float-card {
      position: absolute;
      border-radius: 1rem;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
      animation: floatY 4s ease-in-out infinite;
      z-index: 3
    }

    .float-1 {
      bottom: -1.5rem;
      left: -2rem;
      background: linear-gradient(135deg, var(--coral), var(--amber));
      color: #fff
    }

    .float-1 .big {
      font-family: var(--f-display);
      font-size: 2.5rem;
      line-height: 1
    }

    .float-1 .small {
      font-size: .75rem;
      opacity: .85;
      margin-top: .2rem;
      font-weight: 300
    }

    .float-2 {
      display: none
    }

    .float-2 .icon {
      font-size: 1.1rem;
      margin-bottom: .15rem
    }

    .float-2 .label {
      font-size: .68rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3
    }

    /* Specialist badge - positioned in hero left content */
    .specialist-badge {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      background: linear-gradient(135deg, rgba(202, 143, 71, .08), rgba(233, 160, 65, .05));
      border: 1.5px solid rgba(202, 143, 71, .2);
      border-radius: 1rem;
      padding: .85rem 1.25rem;
      margin-bottom: 1.5rem;
      transition: all .3s ease
    }

    .specialist-badge:hover {
      border-color: rgba(202, 143, 71, .4);
      background: linear-gradient(135deg, rgba(202, 143, 71, .12), rgba(233, 160, 65, .08));
      transform: translateX(4px)
    }

    .specialist-badge-icon {
      font-size: 1.5rem;
      line-height: 1;
      flex-shrink: 0
    }

    .specialist-badge-text {
      display: flex;
      flex-direction: column;
      gap: .15rem
    }

    .specialist-badge-label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      line-height: 1
    }

    .specialist-badge-title {
      font-size: .9rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .marquee-section {
      background: linear-gradient(135deg, var(--gold), var(--amber), var(--coral));
      padding: .85rem 0;
      overflow: hidden;
      position: relative;
      z-index: 2
    }

    .marquee-section::after {
      content: '';
      position: absolute;
      bottom: -18px;
      left: 0;
      right: 0;
      height: 20px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0 0h1200v4c-50 0-60 16-80 16s-30-12-60-12-40 14-70 14-25-10-55-10-35 12-65 12-30-8-50-8-45 16-75 16-20-14-55-14-40 10-60 10-35-14-65-14-30 12-55 12-25-8-50-8-40 16-70 16-35-14-60-14-30 10-50 10-45-12-70-12-25 8-55 8-40-14-65-14V0z' fill='%23E9A041'/%3E%3C/svg%3E") repeat-x;
      background-size: 1200px 20px;
      pointer-events: none
    }

    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 25s linear infinite;
      width: max-content
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .marquee-item {
      white-space: nowrap;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .92);
      display: flex;
      align-items: center;
      gap: 1rem
    }

    .m-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .5)
    }

    .services-section {
      padding: 7rem 2.5rem;
      position: relative;
      overflow: hidden;
      background: var(--cream)
    }

    .services-section::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      top: -100px;
      right: -80px;
      border-radius: 60% 40% 50% 50%/50% 60% 40% 50%;
      background: linear-gradient(135deg, rgba(245, 159, 132, .15), rgba(248, 200, 65, .1));
      transform: rotate(20deg);
      pointer-events: none
    }

    .services-section::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      bottom: -60px;
      left: -60px;
      border-radius: 50% 60% 40% 50%/40% 50% 60% 50%;
      background: linear-gradient(135deg, rgba(233, 160, 65, .12), rgba(202, 143, 71, .08));
      transform: rotate(-15deg);
      pointer-events: none
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem
    }

    .section-tag::before {
      content: '';
      width: 30px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--yellow));
      border-radius: 2px
    }

    .section-title {
      font-family: var(--f-display);
      font-size: clamp(2.25rem, 4.5vw, 3.5rem);
      font-weight: 400;
      letter-spacing: -.02em;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: 1rem
    }

    .section-subtitle {
      color: var(--ink-m);
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 3.5rem
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem
    }

    .svc-card {
      background: var(--white);
      border: 1px solid rgba(202, 143, 71, .08);
      border-radius: 1.5rem;
      padding: 2.5rem 2rem;
      transition: all .4s cubic-bezier(.22, 1, .36, 1);
      position: relative;
      overflow: hidden
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 1.5rem 1.5rem 0 0;
      transition: height .4s ease
    }

    .svc-card:nth-child(1)::before {
      background: linear-gradient(90deg, var(--gold), var(--amber))
    }

    .svc-card:nth-child(2)::before {
      background: linear-gradient(90deg, var(--amber), var(--yellow))
    }

    .svc-card:nth-child(3)::before {
      background: linear-gradient(90deg, var(--coral), var(--gold))
    }

    .svc-card:nth-child(4)::before {
      background: linear-gradient(90deg, var(--yellow), var(--coral))
    }

    .svc-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(202, 143, 71, .12);
      border-color: rgba(202, 143, 71, .2)
    }

    .svc-card:hover::before {
      height: 6px
    }

    .svc-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
      transition: all .4s
    }

    .svc-card:nth-child(1) .svc-icon {
      background: rgba(202, 143, 71, .1)
    }

    .svc-card:nth-child(2) .svc-icon {
      background: rgba(233, 160, 65, .1)
    }

    .svc-card:nth-child(3) .svc-icon {
      background: rgba(245, 159, 132, .12)
    }

    .svc-card:nth-child(4) .svc-icon {
      background: rgba(248, 200, 65, .12)
    }

    .svc-card:nth-child(1):hover .svc-icon {
      background: var(--gold);
      transform: scale(1.1) rotate(-5deg)
    }

    .svc-card:nth-child(2):hover .svc-icon {
      background: var(--amber);
      transform: scale(1.1) rotate(5deg)
    }

    .svc-card:nth-child(3):hover .svc-icon {
      background: var(--coral);
      transform: scale(1.1) rotate(-5deg)
    }

    .svc-card:nth-child(4):hover .svc-icon {
      background: var(--yellow);
      transform: scale(1.1) rotate(5deg)
    }

    .svc-card h3 {
      font-family: var(--f-display);
      font-size: 1.2rem;
      margin-bottom: .75rem;
      color: var(--ink)
    }

    .svc-card p {
      color: var(--ink-m);
      font-size: .9rem;
      line-height: 1.65;
      font-weight: 300
    }

    .process-section {
      padding: 7rem 2.5rem;
      background: var(--bg);
      position: relative;
      overflow: hidden
    }

    .process-section::before {
      content: '01 02 03 04';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--f-display);
      font-size: clamp(8rem, 20vw, 18rem);
      color: rgba(202, 143, 71, .04);
      white-space: nowrap;
      letter-spacing: .1em;
      pointer-events: none
    }

    .process-steps {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      position: relative
    }

    .process-steps::before {
      content: '';
      position: absolute;
      left: 2rem;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--gold), var(--amber), var(--coral), var(--yellow));
      border-radius: 2px
    }

    .process-step {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      padding: 2.5rem 0;
      position: relative
    }

    .step-num {
      flex-shrink: 0;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 1.25rem;
      color: #fff;
      position: relative;
      z-index: 1;
      transition: transform .3s ease
    }

    .process-step:nth-child(1) .step-num {
      background: var(--gold);
      box-shadow: 0 8px 25px rgba(202, 143, 71, .35)
    }

    .process-step:nth-child(2) .step-num {
      background: var(--amber);
      box-shadow: 0 8px 25px rgba(233, 160, 65, .35)
    }

    .process-step:nth-child(3) .step-num {
      background: var(--coral);
      box-shadow: 0 8px 25px rgba(245, 159, 132, .35)
    }

    .process-step:nth-child(4) .step-num {
      background: var(--yellow);
      box-shadow: 0 8px 25px rgba(248, 200, 65, .35);
      color: var(--ink)
    }

    .process-step:hover .step-num {
      transform: scale(1.15)
    }

    .step-body {
      padding-top: .5rem
    }

    .step-body h4 {
      font-family: var(--f-display);
      font-size: 1.25rem;
      color: var(--ink);
      margin-bottom: .5rem
    }

    .step-body p {
      color: var(--ink-m);
      line-height: 1.7;
      font-size: .95rem;
      font-weight: 300
    }

    .why-section {
      padding: 7rem 2.5rem;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%)
    }

    .why-section::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50% 40% 60% 50%/50% 60% 40% 50%;
      background: radial-gradient(circle, rgba(248, 200, 65, .08) 0%, rgba(245, 159, 132, .05) 40%, transparent 70%);
      pointer-events: none
    }

    .why-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1
    }

    .why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: var(--white);
      border-radius: 1rem;
      border: 1px solid rgba(202, 143, 71, .06);
      transition: all .3s ease
    }

    .why-item:hover {
      border-color: rgba(202, 143, 71, .25);
      box-shadow: 0 8px 30px rgba(202, 143, 71, .08);
      transform: translateX(6px)
    }

    .why-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: .625rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .why-item:nth-child(1) .why-icon {
      background: rgba(202, 143, 71, .12)
    }

    .why-item:nth-child(2) .why-icon {
      background: rgba(233, 160, 65, .12)
    }

    .why-item:nth-child(3) .why-icon {
      background: rgba(245, 159, 132, .15)
    }

    .why-item:nth-child(4) .why-icon {
      background: rgba(248, 200, 65, .15)
    }

    .why-item:nth-child(5) .why-icon {
      background: rgba(202, 143, 71, .12)
    }

    .why-text strong {
      display: block;
      font-weight: 600;
      font-size: .95rem;
      color: var(--ink);
      margin-bottom: .15rem
    }

    .why-text span {
      color: var(--ink-m);
      font-size: .85rem;
      font-weight: 300
    }

    .why-quote {
      border-left: 4px solid var(--coral);
      padding-left: 1.75rem;
      margin-top: 2.5rem
    }

    .why-quote p {
      font-family: var(--f-display);
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.45;
      color: var(--ink);
      margin-bottom: .75rem
    }

    .why-quote cite {
      color: var(--ink-m);
      font-size: .85rem;
      font-style: normal;
      font-weight: 300
    }

    .contact-section {
      padding: 7rem 2.5rem;
      position: relative;
      overflow: hidden;
      background: var(--bg)
    }

    .contact-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      bottom: -100px;
      right: -80px;
      border-radius: 50% 40% 60% 50%;
      background: linear-gradient(135deg, rgba(245, 159, 132, .1), rgba(248, 200, 65, .06));
      transform: rotate(25deg);
      pointer-events: none
    }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      position: relative;
      z-index: 1
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2.5rem
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      background: var(--cream);
      border: 1px solid rgba(202, 143, 71, .06);
      border-radius: 1rem;
      transition: all .3s ease;
      color: var(--ink)
    }

    .contact-item:hover {
      border-color: rgba(202, 143, 71, .25);
      transform: translateX(6px);
      box-shadow: 0 8px 25px rgba(202, 143, 71, .06)
    }

    .c-icon {
      width: 2.75rem;
      height: 2.75rem;
      flex-shrink: 0;
      border-radius: .75rem;
      background: linear-gradient(135deg, rgba(202, 143, 71, .12), rgba(248, 200, 65, .08));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem
    }

    .contact-item strong {
      display: block;
      font-weight: 600;
      font-size: .95rem
    }

    .contact-item span {
      color: var(--ink-m);
      font-size: .8rem;
      font-weight: 300
    }

    .form-card {
      background: var(--white);
      border: 1px solid rgba(202, 143, 71, .1);
      border-radius: 2rem;
      padding: 2.5rem;
      position: relative;
      overflow: hidden
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--amber), var(--coral), var(--yellow))
    }

    .form-group {
      margin-bottom: 1.25rem
    }

    .form-label {
      display: block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-m);
      margin-bottom: .5rem
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid rgba(202, 143, 71, .12);
      border-radius: .75rem;
      padding: .9rem 1.25rem;
      color: var(--ink);
      font-family: var(--f-body);
      font-size: .95rem;
      font-weight: 400;
      transition: border-color .2s, box-shadow .2s;
      outline: none
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #bbb
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(202, 143, 71, .1)
    }

    .form-select {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .form-textarea {
      resize: vertical;
      min-height: 100px
    }

    .form-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      color: #fff;
      border: none;
      padding: 1rem 2rem;
      border-radius: 100px;
      font-family: var(--f-body);
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: .5rem;
      transition: all .3s cubic-bezier(.22, 1, .36, 1);
      box-shadow: 0 8px 30px rgba(202, 143, 71, .25)
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(202, 143, 71, .35)
    }

    .footer {
      background: var(--ink);
      padding: 4rem 2.5rem 2rem
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem
    }

    .footer-brand-name {
      font-family: var(--f-display);
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: .75rem
    }

    .footer-brand-desc {
      color: rgba(255, 255, 255, .4);
      font-size: .875rem;
      line-height: 1.7
    }

    .footer-col-title {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 1.25rem
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, .5);
      font-size: .875rem;
      margin-bottom: .6rem;
      transition: color .2s
    }

    .footer-col a:hover {
      color: var(--gold)
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 1.5rem;
      text-align: center;
      color: rgba(255, 255, 255, .25);
      font-size: .8rem
    }

    .fab-wa {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      width: 3.5rem;
      height: 3.5rem;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
      transition: transform .3s, box-shadow .3s
    }

    .fab-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(37, 211, 102, .5)
    }

    .fab-wa svg {
      width: 1.5rem;
      height: 1.5rem;
      fill: white
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* Mobile charms — fixed floating icons across entire page */
    .mobile-charms {
      display: none
    }

    .mobile-charm {
      position: fixed;
      font-size: 1.2rem;
      z-index: 0;
      pointer-events: none;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .08));
      transition: transform .1s ease-out;
      will-change: transform;
      -webkit-user-select: none;
      user-select: none;
      opacity: 0.35
    }

    .mobile-charm:active {
      cursor: default;
      transform: scale(1) !important
    }

    .mobile-charm.bouncing {
      animation: charmDrift var(--dur, 10s) ease-in-out infinite alternate
    }

    @keyframes charmDrift {
      0% {
        transform: translate(0, 0) rotate(0deg)
      }

      25% {
        transform: translate(var(--dx1, 8px), var(--dy1, -10px)) rotate(var(--r1, 3deg))
      }

      50% {
        transform: translate(var(--dx2, -5px), var(--dy2, 12px)) rotate(var(--r2, -2deg))
      }

      75% {
        transform: translate(var(--dx3, 10px), var(--dy3, 5px)) rotate(var(--r3, 4deg))
      }

      100% {
        transform: translate(var(--dx4, -8px), var(--dy4, -8px)) rotate(var(--r4, -3deg))
      }
    }

    /* Paint blob behind mobile hero image */
    .hero-mobile-img {
      display: none;
      position: relative;
      margin-bottom: 1.5rem
    }

    .hero-mobile-img img {
      width: 85%;
      max-width: 320px;
      margin: 0 auto;
      border-radius: 1.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
      position: relative;
      z-index: 1
    }

    .hero-mobile-img::before {
      display: none
    }

    .hero-mobile-stats {
      display: none
    }

    .hero-mid-float {
      display: flex;
      position: absolute;
      top: 2rem;
      right: 3rem;
      background: linear-gradient(135deg, var(--coral), var(--amber));
      color: #fff;
      border-radius: 1.25rem;
      padding: .85rem 1.25rem;
      box-shadow: 0 12px 32px rgba(0,0,0,.12);
      animation: floatY 5s ease-in-out infinite;
      align-items: center;
      gap: .75rem;
      z-index: 3
    }

    .hero-mid-float-icon {
      font-size: 1.8rem;
      line-height: 1
    }

    .hero-mid-float-big {
      font-family: var(--f-display);
      font-size: 1.5rem;
      line-height: 1
    }

    .hero-mid-float-small {
      font-size: .65rem;
      opacity: .88;
      font-weight: 300;
      margin-top: .15rem
    }

    .hero-mobile-float {
      position: absolute;
      z-index: 2;
      background: linear-gradient(135deg, var(--coral), var(--amber));
      color: #fff;
      border-radius: .75rem;
      padding: .6rem 1rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
      animation: floatY 4s ease-in-out infinite;
    }

    .hero-mobile-float.left {
      bottom: -10px;
      left: 2%
    }

    .hero-mobile-float.right {
      top: 10px;
      right: 2%;
      animation-delay: 1.5s
    }

    .hero-mobile-float .big {
      font-family: var(--f-display);
      font-size: 1.6rem;
      line-height: 1
    }

    .hero-mobile-float .small {
      font-size: .65rem;
      opacity: .85;
      font-weight: 300
    }

    .hero-mobile-float .label {
      font-size: .7rem;
      font-weight: 600;
      line-height: 1.2
    }

    @media(max-width:768px) {
      .nav {
        padding: 1rem 1.5rem
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex;
        align-items: center;
        justify-content: center
      }

      .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .hero-visual {
        display: none
      }

      .hero-mobile-img {
        display: block
      }

      .hero-mobile-stats {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem
      }

      .hero-mobile-stat {
        flex: 1;
        background: linear-gradient(135deg, var(--coral), var(--amber));
        color: #fff;
        border-radius: 1rem;
        padding: .9rem 1rem;
        text-align: center
      }

      .hero-mobile-stat .big {
        font-family: var(--f-display);
        font-size: 1.8rem;
        line-height: 1
      }

      .hero-mobile-stat .small {
        font-size: .65rem;
        opacity: .9;
        margin-top: .25rem;
        font-weight: 300;
        line-height: 1.3
      }

      .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.25rem)
      }

      .hero-mid-float {
        display: none
      }

      .specialist-badge {
        padding: .75rem 1rem;
        margin-bottom: 1.25rem
      }

      .specialist-badge-icon {
        font-size: 1.3rem
      }

      .specialist-badge-label {
        font-size: .6rem
      }

      .specialist-badge-title {
        font-size: .85rem
      }

      .splash-1 {
        display: none
      }

      .splash-2 {
        display: none
      }

      .splash-3 {
        display: none
      }

      .splash-4 {
        display: none
      }

      .splash-5 {
        display: none
      }

      .splash-icon-pants {
        display: none
      }

      .splash-icon-mobile-only {
        display: block
      }

      .splash-icon-shirt {
        display: block !important
      }

      .splash-icon-dress {
        display: block !important
      }

      .mobile-charms {
        display: block
      }

      .services-section,
      .process-section,
      .why-section,
      .contact-section {
        padding: 4rem 1.5rem
      }

      .services-grid {
        grid-template-columns: 1fr
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .process-steps::before {
        left: 1.5rem
      }

      .step-num {
        width: 3rem;
        height: 3rem;
        font-size: 1rem
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
      }
    }

    @media(min-width:769px) {
      .hamburger {
        display: none
      }
    }

    @media(min-width:1201px) and (max-width:1400px) {
      .hero {
        padding: 7rem 2rem 4rem
      }

      .hero-inner {
        gap: 3rem
      }

      .hero-img-wrap img {
        height: 440px
      }

      /* Burbujas: reducir opacidad en lugar de ocultar */
      .splash {
        opacity: 0.5
      }

      .splash-icon {
        opacity: 0.4
      }

      .splash-1 .splash-icon-shirt {
        font-size: clamp(1.4rem, 3.5vw, 2.5rem) !important
      }

      .splash-1 .splash-icon-dress {
        font-size: clamp(1.5rem, 3.8vw, 2.7rem) !important
      }
    }

    /* Laptops medianos: reducir saturación visual */
    @media(min-width:769px) and (max-width:1200px) {

      /* Hero layout: una columna para no amontonar */
      .hero {
        padding: 6rem 2rem 3rem
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center
      }

      .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 1rem
      }

      .hero-img-wrap {
        max-width: 340px;
        width: 100%
      }

      .hero-img-wrap img {
        height: 320px
      }

      .hero-img-wrap::before {
        inset: -4px
      }

      /* Float-cards dentro del contenedor */
      .float-1 {
        bottom: .75rem;
        left: .5rem
      }

      .float-2 {
        display: none
      }

      .specialist-badge {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto
      }

      /* Tipografía más contenida */
      .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem)
      }

      .hero-sub {
        font-size: .95rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto
      }

      /* CTAs centrados */
      .hero-ctas {
        justify-content: center
      }

      /* Secciones: padding reducido */
      .services-section,
      .process-section,
      .why-section,
      .contact-section {
        padding: 5rem 2rem
      }

      /* Why grid: una columna */
      .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      /* Contacto: una columna */
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .form-row {
        grid-template-columns: 1fr
      }

      /* Footer: 2 columnas */
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
      }

      /* Steps */
      .step-num {
        width: 3rem;
        height: 3rem;
        font-size: .9rem
      }

      /* Burbujas: reducir opacidad y tamaño en lugar de ocultar */
      .splash {
        opacity: 0.4;
        transform: scale(0.8)
      }

      .splash-icon {
        opacity: 0.35;
        font-size: clamp(1rem, 3vw, 2rem)
      }

      .splash-1 .splash-icon-shirt {
        font-size: clamp(1.2rem, 3.5vw, 2.2rem) !important
      }

      .splash-1 .splash-icon-dress {
        font-size: clamp(1.3rem, 3.8vw, 2.4rem) !important
      }

      .hero-mid-float {
        display: none
      }
    }
