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

  :root {
    --purple-deep: #1a0a24;
    --purple-dark: #2a1040;
    --purple-mid: #3d1a5c;
    --purple-light: #5a2d82;
    --gold: #c8a84e;
    --gold-light: #e2c87a;
    --gold-bright: #f0d890;
    --gold-dim: #9a7a30;
    --cream: #f5f0e8;
    --cream-dark: #e8dfd0;
    --text-dark: #1a1018;
    --text-light: #f0ead8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text-dark);
    background: var(--purple-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── ORNAMENT DIVIDER ─── */
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px auto;
    max-width: 400px;
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .ornament svg { width: 28px; height: 28px; fill: var(--gold); flex-shrink: 0; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(26, 10, 36, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
    transition: box-shadow 0.4s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
  .nav-inner {
    max-width: 1200px; margin: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
  }
  .nav-logo { height: 48px; border-radius: 4px; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold-light); text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-cta {
    font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--purple-deep); background: var(--gold);
    padding: 10px 24px; border-radius: 2px; text-decoration: none; font-weight: 600;
    transition: background 0.3s, transform 0.3s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  .hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    margin: 5px 0; transition: 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 120px 24px 80px;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(90, 45, 130, 0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 80%, rgba(60, 30, 100, 0.2) 0%, transparent 60%),
      var(--purple-deep);
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='none' stroke='%23c8a84e' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.5;
  }

  .hero-content { position: relative; z-index: 2; max-width: 800px; }
  .hero-logo {
    width: 220px; margin: 0 auto 32px; border-radius: 8px;
    animation: fadeUp 1s ease-out;
    filter: drop-shadow(0 8px 32px rgba(200, 168, 78, 0.3));
  }
  .hero-slogan {
    font-family: 'Cinzel', serif; font-size: clamp(0.85rem, 1.5vw, 1rem);
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px; animation: fadeUp 1s 0.2s ease-out both;
  }
  .hero h1 {
    font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600; color: var(--cream);
    line-height: 1.2; margin-bottom: 28px;
    animation: fadeUp 1s 0.4s ease-out both;
  }
  .hero h1 em {
    font-style: italic; font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light); font-weight: 500;
  }
  .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(240, 234, 216, 0.75); line-height: 1.8;
    max-width: 620px; margin: 0 auto 44px;
    animation: fadeUp 1s 0.6s ease-out both;
  }
  .hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1s 0.8s ease-out both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--purple-deep); background: var(--gold);
    padding: 16px 36px; border-radius: 2px; text-decoration: none;
    transition: all 0.35s; border: 2px solid var(--gold);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,78,0.3); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); background: transparent;
    padding: 16px 36px; border-radius: 2px; text-decoration: none;
    border: 2px solid var(--gold-dim);
    transition: all 0.35s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

  .scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
  }
  .scroll-hint svg { width: 24px; height: 24px; stroke: var(--gold-dim); }

  /* ─── SECTIONS ─── */
  section { padding: 100px 24px; }

  .section-light {
    background:
      linear-gradient(180deg, var(--cream) 0%, #faf7f0 100%);
    position: relative;
  }
  .section-dark {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(60,26,92,0.5) 0%, transparent 70%),
      var(--purple-deep);
    color: var(--text-light);
  }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-header {
    text-align: center; margin-bottom: 64px;
  }
  .section-label {
    font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .section-dark .section-label { color: var(--gold-light); }
  .section-title {
    font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600; line-height: 1.3; margin-bottom: 20px;
  }
  .section-dark .section-title { color: var(--cream); }
  .section-subtitle {
    font-size: 1.15rem; color: #665a50; max-width: 600px;
    margin: 0 auto; line-height: 1.7;
  }
  .section-dark .section-subtitle { color: rgba(240,234,216,0.65); }

  /* ─── INTRO ─── */
  .intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .intro-text p {
    font-size: 1.12rem; line-height: 1.85; color: #4a3f38; margin-bottom: 20px;
  }
  .intro-text p:first-of-type::first-letter {
    font-family: 'Cinzel', serif; font-size: 3.2rem; float: left;
    line-height: 1; margin-right: 10px; color: var(--purple-mid); font-weight: 700;
  }
  .intro-img-wrap {
    position: relative; border-radius: 4px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }
  .intro-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(200,168,78,0.2); border-radius: 4px;
    pointer-events: none;
  }
  .intro-img-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; }

  /* ─── POR QUÉ ELEGIR ─── */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,168,78,0.12);
    border-radius: 4px; padding: 40px 28px; text-align: center;
    transition: all 0.4s;
  }
  .feature-card:hover {
    border-color: rgba(200,168,78,0.35);
    background: rgba(200,168,78,0.06);
    transform: translateY(-4px);
  }
  .feature-icon {
    width: 52px; height: 52px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold-dim); border-radius: 50%;
  }
  .feature-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .feature-card h3 {
    font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600;
    color: var(--gold-light); margin-bottom: 14px; letter-spacing: 0.03em;
  }
  .feature-card p {
    font-size: 1rem; line-height: 1.7; color: rgba(240,234,216,0.6);
  }

  /* ─── PRODUCTOS ─── */
  .productos-list {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    max-width: 800px; margin: 0 auto;
  }
  .producto-tag {
    font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.08em;
    padding: 10px 22px; border: 1px solid rgba(200,168,78,0.25);
    border-radius: 2px; color: var(--gold-light);
    transition: all 0.3s;
  }
  .producto-tag:hover {
    background: rgba(200,168,78,0.1); border-color: var(--gold);
  }

  /* ─── GALERÍA ─── */
  .gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
  .gallery-item {
    position: relative; overflow: hidden; border-radius: 4px;
    aspect-ratio: 4/5; cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,10,36,0.6) 0%, transparent 50%);
    pointer-events: none;
  }
  .gallery-caption {
    position: absolute; bottom: 20px; left: 20px; z-index: 2;
    font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold-light);
    letter-spacing: 0.1em;
  }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10, 4, 16, 0.95); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    padding: 40px; cursor: pointer;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
    border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    cursor: default;
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 32px;
    background: none; border: none; cursor: pointer;
    font-size: 2rem; color: var(--gold); font-family: 'Cinzel', serif;
  }

  /* ─── MATERIALES ─── */
  .materiales-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  }
  .material-card {
    padding: 48px 36px; border-radius: 4px;
    border: 1px solid rgba(200,168,78,0.15);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s;
  }
  .material-card:hover {
    border-color: rgba(200,168,78,0.35);
    background: rgba(200,168,78,0.04);
  }
  .material-card h3 {
    font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--gold);
    margin-bottom: 8px;
  }
  .material-card .subtitle {
    font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-dim); margin-bottom: 18px;
  }
  .material-card p { font-size: 1.05rem; line-height: 1.75; color: rgba(240,234,216,0.6); }

  /* ─── SOBRE NOSOTROS ─── */
  .about-text {
    max-width: 750px; margin: 0 auto; text-align: center;
  }
  .about-text p {
    font-size: 1.15rem; line-height: 1.85; color: #4a3f38; margin-bottom: 24px;
  }
  .about-quote {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.4rem; color: var(--purple-mid); line-height: 1.7;
    border-left: 3px solid var(--gold); padding-left: 24px;
    margin: 40px auto; max-width: 600px; text-align: left;
  }

  /* ─── CTA FINAL ─── */
  .cta-section {
    text-align: center; padding: 100px 24px;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(90,45,130,0.4) 0%, transparent 70%),
      var(--purple-deep);
  }
  .cta-section h2 {
    font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--cream); margin-bottom: 20px;
  }
  .cta-section p {
    font-size: 1.15rem; color: rgba(240,234,216,0.6);
    max-width: 550px; margin: 0 auto 40px; line-height: 1.7;
  }
  .whatsapp-btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; background: #25D366;
    padding: 18px 40px; border-radius: 4px; text-decoration: none;
    transition: all 0.35s; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  }
  .whatsapp-btn:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  .whatsapp-btn svg { width: 22px; height: 22px; fill: #fff; }

  /* ─── FOOTER ─── */
  footer {
    background: #0d0514; padding: 48px 24px 32px; text-align: center;
    border-top: 1px solid rgba(200,168,78,0.1);
  }
  footer img { height: 40px; margin-bottom: 16px; border-radius: 4px; }
  footer p {
    font-family: 'Cinzel', serif; font-size: 0.75rem;
    letter-spacing: 0.15em; color: rgba(200,168,78,0.4);
  }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s; text-decoration: none;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  .whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta-desktop { display: none; }
    .hamburger { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute;
      top: 100%; left: 0; right: 0; background: rgba(26,10,36,0.97);
      padding: 24px; gap: 20px; border-bottom: 1px solid rgba(200,168,78,0.15);
    }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-img-wrap { order: -1; }
    .intro-img-wrap img { height: 350px; }
    .features-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .materiales-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    section { padding: 70px 16px; }
    .hero { padding: 100px 16px 60px; }
    .hero-logo { width: 160px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  }