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

    :root {
      --ink:    #0D0D0D;
      --ivory:  #F0EBE1;
      --ivory2: #E8E0D2;
      --gold:   #C9A96E;
      --sepia:  #7A6A54;
      --carbon: #2C2C2C;
      --white:  #FAF8F5;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 60px;
      mix-blend-mode: normal;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(250,248,245,0.95);
      backdrop-filter: blur(8px);
      padding: 18px 60px;
      border-bottom: 1px solid var(--ivory2);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
      font-family: 'Cormorant SC', serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sepia);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-family: 'Cormorant SC', serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 8px 22px;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 90px;
  background: var(--white);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sepia);
}

.hero-sub {
  margin-top: 28px;
  font-size: 1rem;
  color: var(--sepia);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 470px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.05s forwards;
}

.hero-media {
  opacity: 0;
  animation: fadeUp 1s 0.95s forwards;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

    .btn-primary {
      font-family: 'Cormorant SC', serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--ivory);
      padding: 14px 38px;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }
    .btn-primary:hover { background: var(--carbon); }
    .btn-ghost {
      font-family: 'Cormorant SC', serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border: 1px solid var(--sepia);
      color: var(--sepia);
      padding: 14px 38px;
      text-decoration: none;
      transition: border-color 0.25s, color 0.25s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: fadeUp 1s 1.4s forwards;
    }
    .scroll-hint span {
      font-family: 'Cormorant SC', serif;
      font-size: 0.6rem; letter-spacing: 0.28em; color: var(--sepia);
    }
    .scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(to bottom, var(--sepia), transparent);
      animation: scrollPulse 2s 2s infinite;
    }

    /* ── DIVIDER ── */
    .divider {
      display: flex; align-items: center; gap: 20px;
      padding: 0 60px; margin: 0 auto; max-width: 1100px;
    }
    .divider-line { flex: 1; height: 1px; background: var(--ivory2); }
    .divider-ornament {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold); font-size: 1rem; line-height: 1;
      letter-spacing: 0.1em;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 110px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-eyebrow {
      font-family: 'Cormorant SC', serif;
      font-size: 0.66rem; letter-spacing: 0.3em;
      color: var(--gold); text-transform: uppercase;
      display: block; margin-bottom: 22px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300; line-height: 1.15;
      color: var(--ink); margin-bottom: 24px;
    }
    .section-title em { font-style: italic; color: var(--sepia); }
    .section-body {
      font-size: 0.92rem; color: var(--sepia);
      max-width: 520px; line-height: 1.85;
    }

    /* ── SERVICES ── */
    #servicios { background: var(--ivory); padding: 110px 60px; max-width: none; }
    #servicios .inner { max-width: 1200px; margin: 0 auto; }
    .services-header { text-align: center; margin-bottom: 80px; }
    .services-header .section-body { max-width: 480px; margin: 0 auto; }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }
    .service-card {
      background: var(--white);
      padding: 64px 56px;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 2px; height: 0;
      background: var(--gold);
      transition: height 0.4s ease;
    }
    .service-card:hover::before { height: 100%; }
    .service-card:hover { background: var(--ivory); }
    .service-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300;
      color: var(--ivory2);
      line-height: 1;
      margin-bottom: 28px;
      transition: color 0.35s;
    }
    .service-card:hover .service-number { color: var(--ivory2); }
    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 400;
      color: var(--ink); margin-bottom: 16px;
      line-height: 1.2;
    }
    .service-name em { font-style: italic; color: var(--sepia); }
    .service-desc {
      font-size: 0.87rem; color: var(--sepia);
      line-height: 1.85; max-width: 380px;
    }
    .service-tag {
      margin-top: 32px;
      font-family: 'Cormorant SC', serif;
      font-size: 0.62rem; letter-spacing: 0.22em;
      color: var(--gold); text-transform: uppercase;
    }

    /* ── PROCESO ── */
    #proceso { background: var(--white); }
    .proceso-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }
    .proceso-intro .section-body { max-width: 400px; margin-top: 0; }
    .proceso-steps { padding-top: 12px; }
    .step {
      display: flex; gap: 32px;
      padding: 32px 0;
      border-bottom: 1px solid var(--ivory2);
    }
    .step:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300;
      color: var(--ivory2); line-height: 1.3;
      min-width: 36px; padding-top: 2px;
    }
    .step-content {}
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 500;
      color: var(--ink); margin-bottom: 6px;
    }
    .step-body { font-size: 0.85rem; color: var(--sepia); line-height: 1.8; }

    /* ── QUOTE ── */
    #cita {
      background: var(--ink);
      padding: 120px 60px;
      max-width: none;
      text-align: center;
    }
    #cita .inner { max-width: 800px; margin: 0 auto; }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; line-height: 0.4;
      color: var(--gold); opacity: 0.4;
      display: block; margin-bottom: 20px;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 300; font-style: italic;
      color: var(--ivory);
      line-height: 1.5; letter-spacing: 0.01em;
    }
    .quote-source {
      margin-top: 36px;
      font-family: 'Cormorant SC', serif;
      font-size: 0.65rem; letter-spacing: 0.28em;
      color: var(--gold); text-transform: uppercase;
    }

    /* ── OCASIONES ── */
    #ocasiones { background: var(--white); }
    .ocasiones-intro { text-align: center; margin-bottom: 72px; }
    .ocasiones-intro .section-body { max-width: 480px; margin: 0 auto; }
    .ocasiones-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--ivory2);
    }
    .ocasion-item {
      background: var(--white);
      padding: 52px 40px;
      text-align: center;
      transition: background 0.3s;
    }
    .ocasion-item:hover { background: var(--ivory); }
    .ocasion-icon {
      width: 46px;
      height: 46px;
      margin: 0 auto 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ocasion-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 400;
      color: var(--ink); margin-bottom: 10px;
    }
    .ocasion-note {
      font-size: 0.8rem; color: var(--sepia);
      line-height: 1.7;
    }

    /* ── MATERIALES ── */
    #materiales { background: var(--ivory); padding: 110px 60px; max-width: none; }
    #materiales .inner { max-width: 1200px; margin: 0 auto; }
    .materiales-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px; align-items: center;
    }
    .materiales-visual {
      position: relative; height: 420px;
    }
    .mat-card {
      position: absolute;
      background: var(--white);
      border: 1px solid var(--ivory2);
      padding: 28px 36px;
    }
    .mat-card-1 {
      width: 280px; top: 0; left: 0;
      box-shadow: 8px 8px 0 var(--ivory2);
    }
    .mat-card-2 {
      width: 260px; bottom: 0; right: 0;
      box-shadow: 8px 8px 0 var(--ivory2);
    }
    .mat-card-3 {
      width: 200px; top: 140px; left: 120px;
      background: var(--ink); border-color: var(--ink);
    }
    .mat-label {
      font-family: 'Cormorant SC', serif;
      font-size: 0.6rem; letter-spacing: 0.25em;
      color: var(--gold); margin-bottom: 10px; display: block;
    }
    .mat-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 400; line-height: 1.3;
    }
    .mat-card-3 .mat-name { color: var(--ivory); }
    .mat-card-3 .mat-desc { color: var(--sepia); font-size: 0.78rem; margin-top: 8px; }
    .mat-list { list-style: none; margin-top: 32px; }
    .mat-list li {
      padding: 14px 0;
      border-bottom: 1px solid var(--ivory2);
      font-size: 0.88rem; color: var(--sepia);
      display: flex; justify-content: space-between; align-items: center;
    }
    .mat-list li:last-child { border-bottom: none; }
    .mat-list strong {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400; font-size: 1rem; color: var(--ink);
    }
    .mat-pill {
      font-family: 'Cormorant SC', serif;
      font-size: 0.58rem; letter-spacing: 0.18em;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 3px 10px;
    }

    /* ── DIGITAL ── */
    #digital { background: var(--white); }
    .digital-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .digital-features { margin-top: 40px; }
    .feature {
      display: flex; gap: 20px;
      padding: 20px 0;
      border-top: 1px solid var(--ivory2);
    }
    .feature:last-child { border-bottom: 1px solid var(--ivory2); }
    .feature-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      margin-top: 9px; flex-shrink: 0;
    }
    .feature-text {}
    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 500; color: var(--ink);
      margin-bottom: 4px;
    }
    .feature-body { font-size: 0.82rem; color: var(--sepia); line-height: 1.75; }
    .digital-mockup {
      background: var(--ink);
      aspect-ratio: 9/16;
      max-height: 560px;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .mockup-bg-circle {
      position: absolute; width: 300px; height: 300px;
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
    }
    .mockup-bg-circle-2 {
      width: 450px; height: 450px;
      opacity: 0.5;
    }
    .mockup-eyebrow {
      font-family: 'Cormorant SC', serif;
      font-size: 0.6rem; letter-spacing: 0.28em;
      color: var(--gold); margin-bottom: 20px;
    }
    .mockup-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 300; font-style: italic;
      color: var(--ivory); line-height: 1.2; margin-bottom: 16px;
    }
    .mockup-date {
      font-family: 'Cormorant SC', serif;
      font-size: 0.65rem; letter-spacing: 0.22em;
      color: var(--sepia);
    }
    .mockup-divider {
      width: 40px; height: 1px;
      background: var(--gold); margin: 24px auto;
    }
    .mockup-cta {
      font-family: 'Cormorant SC', serif;
      font-size: 0.62rem; letter-spacing: 0.2em;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 10px 28px;
      margin-top: 12px;
    }

    /* ── TESTIMONIALS ── */
    #testimonios { background: var(--ivory); padding: 110px 60px; max-width: none; }
    #testimonios .inner { max-width: 1200px; margin: 0 auto; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 72px;
    }
    .testi-card {
      background: var(--white);
      padding: 48px 40px;
    }
    .testi-stars {
      color: var(--gold); font-size: 0.75rem;
      letter-spacing: 0.1em; margin-bottom: 24px;
    }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; font-weight: 300; font-style: italic;
      color: var(--ink); line-height: 1.75;
      margin-bottom: 28px;
    }
    .testi-author {
      font-family: 'Cormorant SC', serif;
      font-size: 0.65rem; letter-spacing: 0.2em;
      color: var(--sepia);
    }
    .testi-occasion {
      display: block; margin-top: 4px;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem; color: var(--gold);
    }

    /* ── CTA FINAL ── */
    #contacto { background: var(--white); text-align: center; }
    .cta-inner { max-width: 640px; margin: 0 auto; }
    .cta-inner .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
    .cta-inner .section-body { max-width: none; text-align: center; margin-top: 20px; }
    .cta-form {
      margin-top: 52px;
      display: flex; flex-direction: column; gap: 16px;
      max-width: 440px; margin-left: auto; margin-right: auto;
    }
    .cta-form input, .cta-form select, .cta-form textarea {
      background: transparent;
      border: none; border-bottom: 1px solid var(--ivory2);
      padding: 14px 4px;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem; color: var(--ink);
      font-weight: 300;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .cta-form input::placeholder,
    .cta-form textarea::placeholder { color: var(--sepia); }
    .cta-form input:focus,
    .cta-form select:focus,
    .cta-form textarea:focus { border-color: var(--gold); }
    .cta-form textarea { resize: none; height: 90px; }
    .cta-form select { cursor: pointer; color: var(--sepia); appearance: none; }
    .cta-form select option { color: var(--ink); }
    .cta-submit {
      margin-top: 12px;
      font-family: 'Cormorant SC', serif;
      font-size: 0.72rem; letter-spacing: 0.22em;
      text-transform: uppercase;
      background: var(--ink); color: var(--ivory);
      border: none; padding: 16px 48px;
      cursor: pointer;
      transition: background 0.25s;
      align-self: center;
    }
    .cta-submit:hover { background: var(--carbon); }
    .cta-note {
      margin-top: 20px;
      font-size: 0.75rem; color: var(--sepia);
      font-family: 'Cormorant SC', serif;
      letter-spacing: 0.1em;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 72px 60px 40px;
    }
    
    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(0.7); }
    }

    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.22s; }
    .reveal-delay-3 { transition-delay: 0.34s; }
    .reveal-delay-4 { transition-delay: 0.46s; }
    .reveal-delay-5 { transition-delay: 0.58s; }
    .reveal-delay-6 { transition-delay: 0.70s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 22px 28px; }
      nav.scrolled { padding: 14px 28px; }
      .nav-links, .nav-cta { display: none; }
      section { padding: 80px 28px; }
      .services-grid { grid-template-columns: 1fr; }
      .proceso-layout { grid-template-columns: 1fr; gap: 40px; }
      .materiales-layout { grid-template-columns: 1fr; gap: 48px; }
      .materiales-visual { height: 280px; }
      .digital-layout { grid-template-columns: 1fr; }
      .digital-mockup { max-height: 380px; }
      .testi-grid { grid-template-columns: 1fr; }
      .ocasiones-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { flex-direction: column; gap: 40px; }
      .footer-links { flex-wrap: wrap; gap: 32px; }
      .divider { padding: 0 28px; }
      #cita, #testimonios, #materiales { padding: 80px 28px; }
      .hero-title { font-size: clamp(2.6rem, 8vw, 4rem); }
    }
#hero {
  padding: 120px 28px 70px;
  min-height: auto;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 38px;
}

.hero-copy {
  text-align: center;
}

.hero-title {
  max-width: none;
}

.hero-sub {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
  

/* ÍCONOS ELEGANTES DE OCASIONES */
.ocasion-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

/* BOTÓN WHATSAPP FINAL */
.cta-whatsapp {
  margin-top: 44px;
  text-align: center;
}
.whatsapp-btn {
  display: inline-block;
}

/* ── FOOTER SIMPLE ── */

.footer-simple {
  background: var(--ink);
  padding: 26px 24px;
  text-align: center;
}

.footer-simple p {
  margin: 0;
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--sepia);
}
