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

    :root {
      --cream:    #fdf6ec;
      --warm:     #f5e8d0;
      --gold:     #b8872a;
      --gold-lt:  #d4a843;
      --earth:    #7a5c3a;
      --dark:     #2a1f14;
      --mid:      #5a4535;
      --rose:     #c9917a;
      --text:     #3a2d22;
      --serif:    'Cormorant Garamond', Georgia, serif;
      --sans:     'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      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: 18px 5vw;
      background: rgba(253,246,236,0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184,135,42,0.18);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(42,31,20,0.08); }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .nav-logo img {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
    }
    .nav-logo-text {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--dark);
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .nav-logo-text span {
      display: block;
      font-size: 0.65rem;
      font-family: var(--sans);
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: #fff !important;
      padding: 9px 20px;
      border-radius: 2px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--earth) !important; color: #fff; }
    .nav-links a.nav-active { color: var(--gold); }

    /* ─── SHIPPING BANNER ─── */
    .shipping-banner {
      margin-top: 82px;
      background: linear-gradient(90deg, var(--dark) 0%, var(--earth) 50%, var(--dark) 100%);
      color: rgba(253,246,236,0.9);
      text-align: center;
      padding: 11px 5vw;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      border-bottom: 1px solid rgba(184,135,42,0.25);
    }
    .shipping-banner strong { color: var(--gold-lt); font-weight: 500; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 0;
      position: relative;
      overflow: hidden;
    }

    .hero > * {
      min-height: 0;
      min-width: 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,135,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,145,122,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 5vw 60px 8vw;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      font-size: 0.72rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-tag::before {
      content: '';
      width: 30px; height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 5vw, 5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--dark);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--mid);
      max-width: 440px;
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--dark);
      color: var(--cream);
      text-decoration: none;
      padding: 14px 32px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--earth); transform: translateY(-2px); }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      padding: 14px 28px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
    .btn-wa svg, .btn-primary svg { flex-shrink: 0; }

    .hero-visual {
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 1.2s 0.5s forwards;
      min-height: 0;
    }

    .hero-mosaic {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-template-areas:
        "main top"
        "main bottom";
      gap: 4px;
      min-height: 0;
      min-width: 0;
    }

    .hero-mosaic img {
      width: 100%;
      height: 100%;
      min-height: 0;
      min-width: 0;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s ease;
    }
    .hero-mosaic img:hover { transform: scale(1.04); }
    .hero-mosaic-main { grid-area: main; }
    .hero-mosaic-top { grid-area: top; }
    .hero-mosaic-bottom { grid-area: bottom; }

    .hero-badge {
      position: absolute;
      bottom: 40px; left: -20px;
      background: var(--cream);
      border: 1px solid var(--gold);
      padding: 16px 20px;
      border-radius: 4px;
      box-shadow: 0 8px 32px rgba(42,31,20,0.12);
      z-index: 10;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .hero-badge strong {
      display: block;
      font-family: var(--serif);
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
    }
    .hero-badge span {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
    }

    /* ─── DIVIDER ─── */
    .divider {
      text-align: center;
      padding: 16px;
      overflow: hidden;
    }
    .divider-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--gold);
      font-size: 1.1rem;
    }
    .divider-line::before, .divider-line::after {
      content: '';
      flex: 1;
      max-width: 120px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }
    .divider-line::after {
      background: linear-gradient(to left, transparent, var(--gold));
    }

    /* ─── FEATURES ─── */
    .features {
      background: var(--dark);
      padding: 64px 8vw;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .feature {
      background: var(--dark);
      padding: 40px 36px;
      text-align: center;
      position: relative;
      border: 1px solid rgba(184,135,42,0.12);
      transition: border-color 0.3s;
    }
    .feature:hover { border-color: rgba(184,135,42,0.4); }

    .feature-icon {
      width: 48px; height: 48px;
      margin: 0 auto 18px;
      color: var(--gold-lt);
    }

    .feature h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 10px;
    }
    .feature p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(253,246,236,0.55);
    }

    /* ─── SECTION HEADER ─── */
    .section-header {
      text-align: center;
      padding: 80px 8vw 48px;
    }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.15;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-sub {
      margin-top: 14px;
      font-size: 0.95rem;
      color: var(--mid);
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* ─── GALLERY ─── */
    .gallery {
      padding: 0 4vw 80px;
      columns: 3;
      column-gap: 12px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      cursor: pointer;
      aspect-ratio: 4 / 5;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .gallery-item:hover img { transform: scale(1.06); }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(42,31,20,0.7) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.35s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-family: var(--serif);
      font-style: italic;
      color: var(--cream);
      font-size: 1rem;
    }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(42,31,20,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lightbox img {
      max-width: 88vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 3px;
    }
    .lightbox-close {
      position: absolute;
      top: 24px; right: 28px;
      color: var(--cream);
      font-size: 2.2rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; }

    /* ─── CATEGORIES ─── */
    .categories {
      background: var(--warm);
      padding: 80px 8vw;
    }
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .cat-card {
      background: var(--cream);
      border: 1px solid rgba(184,135,42,0.2);
      border-radius: 4px;
      padding: 36px 28px;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .cat-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(184,135,42,0.12);
    }
    .cat-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
    }
    .cat-card h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .cat-card p {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.7;
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: linear-gradient(135deg, var(--dark) 0%, var(--earth) 100%);
      padding: 80px 8vw;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '✦';
      position: absolute;
      font-size: 18rem;
      color: rgba(184,135,42,0.06);
      top: -60px; right: 120px;
      line-height: 1;
    }

    .cta-band h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.2;
    }
    .cta-band h2 em { font-style: italic; color: var(--gold-lt); }
    .cta-band p {
      color: rgba(253,246,236,0.6);
      margin-top: 12px;
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .cta-band-actions {
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(253,246,236,0.35);
      color: var(--cream);
      text-decoration: none;
      padding: 13px 28px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: border-color 0.25s, background 0.25s;
      white-space: nowrap;
    }
    .btn-outline:hover { border-color: var(--gold-lt); background: rgba(184,135,42,0.12); }

    /* ─── SOCIAL ─── */
    .social-section {
      padding: 80px 8vw;
      text-align: center;
    }
    .social-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .social-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px 32px;
      border: 1px solid rgba(184,135,42,0.25);
      border-radius: 4px;
      text-decoration: none;
      color: var(--dark);
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      background: var(--cream);
    }
    .social-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(184,135,42,0.1);
    }
    .social-card-icon {
      width: 48px; height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: transparent;
    }
    .social-card-icon img {
      width: 48px; height: 48px;
      object-fit: contain;
      display: block;
    }
    .social-card-text strong {
      display: block;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .social-card-text span {
      font-size: 0.78rem;
      color: var(--mid);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 48px 8vw 32px;
      color: rgba(253,246,236,0.45);
      text-align: center;
    }
    footer .foot-logo {
      font-family: var(--serif);
      font-size: 1.6rem;
      color: var(--cream);
      margin-bottom: 6px;
    }
    footer .foot-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    footer p { font-size: 0.8rem; line-height: 1.8; }
    footer a { color: var(--gold-lt); text-decoration: none; }
    footer a:hover { text-decoration: underline; }
    .foot-divider {
      border: none;
      border-top: 1px solid rgba(253,246,236,0.08);
      margin: 24px 0;
    }
    .foot-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    /* ─── WA FLOAT ─── */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 200;
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      padding: 14px 22px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      transition: transform 0.25s, box-shadow 0.25s;
      animation: pulseWa 3s infinite;
    }
    .wa-float:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes pulseWa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-visual {
        position: relative;
        display: grid;
        height: auto;
        aspect-ratio: 1;
        max-height: min(92vw, 420px);
        margin: 0 6vw;
        border-radius: 4px;
        overflow: hidden;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
          "main top"
          "badge bottom";
        gap: 4px;
      }
      .hero-mosaic {
        display: contents;
      }
      .hero-mosaic-main { grid-area: main; }
      .hero-mosaic-top { grid-area: top; }
      .hero-mosaic-bottom { grid-area: bottom; }
      .hero-badge {
        position: static;
        grid-area: badge;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 12px;
        box-shadow: none;
        border-radius: 0;
      }
      .hero-badge strong { font-size: 1.6rem; }
      .features { grid-template-columns: 1fr; gap: 2px; }
      .cat-grid { grid-template-columns: 1fr; }
      .cta-band { grid-template-columns: 1fr; text-align: center; }
      .cta-band-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
      .gallery { columns: 2; }
      nav .nav-links { display: none; }
      .hero-content { padding: 40px 6vw; }
    }

    @media (max-width: 520px) {
      .gallery { columns: 1; }
      .hero-title { font-size: 2.4rem; }
      .wa-float span { display: none; }
      .wa-float { padding: 14px 16px; }
      .shipping-banner { font-size: 0.72rem; letter-spacing: 0.04em; }
    }

    /* ─── SUBPAGES ─── */
    .page-hero {
      padding: 56px 8vw 40px;
      text-align: center;
      background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 60%);
    }
    .page-hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero .page-intro {
      max-width: 640px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.75;
      color: var(--mid);
    }
    .page-hero .price-tag {
      display: inline-block;
      margin-top: 18px;
      padding: 8px 18px;
      border: 1px solid rgba(184,135,42,0.35);
      border-radius: 2px;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      color: var(--earth);
    }

    .page-section {
      padding: 0 8vw 64px;
      max-width: 960px;
      margin: 0 auto;
    }
    .page-section.wide { max-width: none; padding: 0 4vw 80px; }

    .text-block {
      font-size: 0.98rem;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 20px;
    }
    .text-block a { color: var(--gold); }

    .inline-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 36px 0 12px;
    }

    .cat-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .cat-card .card-link-text {
      display: inline-block;
      margin-top: 14px;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── FAQ ─── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: var(--cream);
      border: 1px solid rgba(184,135,42,0.22);
      border-radius: 4px;
      padding: 24px 28px;
      transition: border-color 0.25s;
    }
    .faq-item:hover { border-color: rgba(184,135,42,0.45); }
    .faq-item h2 {
      font-family: var(--serif);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.35;
    }
    .faq-item p, .faq-item ul {
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--mid);
    }
    .faq-item ul { margin: 8px 0 0 18px; }
    .faq-item li { margin-bottom: 4px; }

    /* ─── STEPS (Cómo pedir) ─── */
    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 8px;
    }
    .step-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px 20px;
      align-items: start;
      padding: 28px;
      background: var(--cream);
      border: 1px solid rgba(184,135,42,0.2);
      border-radius: 4px;
    }
    .step-image {
      grid-column: 1 / -1;
      max-width: 300px;
      margin-top: 4px;
    }
    .step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--dark);
      color: var(--gold-lt);
      font-family: var(--serif);
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-content h2 {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .step-content p {
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--mid);
    }
    .step-image {
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 4 / 5;
    }
    .step-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .foot-links a.foot-page-link { color: var(--gold-lt); }

    @media (max-width: 700px) {
      .step-card { grid-template-columns: 48px 1fr; }
      .step-image { max-width: none; }
    }
