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

  :root {
    --cream: #f5f0e8;
    --cream-dark: #ede6d6;
    --ink: #1a1610;
    --ink-light: #3d3529;
    --gold: #b89a5a;
    --gold-light: #d4b87a;
    --muted: #8a7d6a;
    --white: #fdfaf5;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.6;
  }

  /* ── FLOATING CONTACT ── */
  .floating-contact {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 120;
    display: grid;
    gap: 0.75rem;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(17, 15, 10, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  }

  .floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(17, 15, 10, 0.32);
  }

  .floating-btn svg {
    width: 30px;
    height: 30px;
  }

  .floating-wa { background: #25D366; }
  .floating-fb { background: #1877F2; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 154, 90, 0.2);
    transition: padding 0.3s;
  }

  nav.scrolled { padding: 0.75rem 3rem; }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 154, 90, 0.35);
    border-radius: 50%;
    object-fit: cover;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 1px solid rgba(184, 154, 90, 0.9);
    padding: 0.68rem 1.45rem;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(184, 154, 90, 0.28);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s !important;
  }

  .nav-cta:hover {
    color: var(--ink) !important;
    filter: brightness(1.04);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(184, 154, 90, 0.36);
  }

  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(184, 154, 90, 0.35);
    border-radius: 999px;
    background: rgba(253, 250, 245, 0.55);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

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

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 38ch;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--cream);
    padding: 0.9rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--gold);
    transform: translateY(-1px);
  }

  .btn-order {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(184, 154, 90, 0.28);
    padding: 1.05rem 2.65rem;
    position: relative;
  }

  .btn-order::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(184, 154, 90, 0.45);
    border-radius: 4px;
    pointer-events: none;
  }

  .btn-order:hover {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 22px 42px rgba(26, 22, 16, 0.22);
  }

  .btn-ghost {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--ink); }

  .btn-ghost::after {
    content: '→';
    transition: transform 0.2s;
  }

  .btn-ghost:hover::after { transform: translateX(3px); }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s 0.5s forwards;
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
  }

  /* ── DIVIDER ── */
  .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 5rem;
    margin: 4rem 0;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  }

  .divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  /* ── SECTION HEADER ── */
  .section-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  /* ── PRODUCTOS ── */
  .productos {
    padding: 5rem 5rem;
  }

  .productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
    border: 1px solid rgba(184,154,90,0.15);
  }

  .producto-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--cream-dark);
  }

  .producto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
  }

  .producto-card:hover img { transform: scale(1.06); }

  .producto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,22,16,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
  }

  .producto-card:hover .producto-overlay { opacity: 1; }

  .producto-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.3rem;
  }

  .producto-sub {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  /* ── CATÁLOGO DE AROMAS ── */
  .catalogo {
    background: var(--ink);
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .catalogo::before {
    content: 'AROMAS';
    position: absolute;
    font-family: var(--serif);
    font-size: 20vw;
    font-weight: 600;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .catalogo .section-eyebrow { color: var(--gold-light); }
  .catalogo .section-title { color: var(--white); }

  .aromas-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
  }

  .aroma-tab {
    padding: 0.55rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }

  .aroma-tab:hover { color: var(--cream); border-color: rgba(255,255,255,0.3); }

  .aroma-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
  }

  .aromas-panel { display: none; }
  .aromas-panel.active { display: block; }

  .aromas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .aroma-pill {
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(184,154,90,0.3);
    border-radius: 999px;
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--cream-dark);
    background: rgba(184,154,90,0.06);
    transition: all 0.2s;
  }

  .aroma-pill:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(184,154,90,0.12);
  }

  .aroma-desc {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
  }

  .catalogo-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 4rem auto 0;
    max-width: 760px;
    position: relative;
  }

  .catalogo-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(184,154,90,0.25);
    background: rgba(255,255,255,0.04);
    cursor: zoom-in;
  }

  .catalogo-card[hidden] { display: none; }

  .catalogo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
    transition: transform 0.45s, opacity 0.45s;
  }

  .catalogo-card:hover img {
    transform: scale(1.05);
    opacity: 1;
  }

  .catalogo-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 1.5rem 1rem 0.85rem;
    background: linear-gradient(to top, rgba(17,15,10,0.92), transparent);
  }

  .catalogo-card span {
    display: block;
    color: var(--gold-light);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .catalogo-card strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 300;
  }

  .catalogo-modal {
    width: min(92vw, 980px);
    padding: 0;
    border: 1px solid rgba(184,154,90,0.45);
    background: #110f0a;
  }

  .catalogo-modal::backdrop { background: rgba(17,15,10,0.78); }

  .catalogo-modal img {
    width: 100%;
    height: auto;
    display: block;
  }

  .modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    background: rgba(17,15,10,0.7);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
  }

  /* ── ESPECIALES ── */
  .especiales {
    padding: 6rem 5rem;
    background: var(--white);
  }

  .especiales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
  }

  .especial-card {
    border: 1px solid rgba(184,154,90,0.2);
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s;
  }

  .especial-card:hover { border-color: var(--gold); }

  .especial-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  .especial-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }

  .especial-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .especial-corner {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 24px;
    height: 24px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
  }

  .especiales-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(184,154,90,0.2);
  }

  /* ── ARREGLO / HIGHLIGHT ── */
  .highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
  }

  .highlight-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .highlight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s;
  }

  .highlight-img-wrap:hover img { transform: scale(1.04); }

  .highlight-content {
    background: var(--cream-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
  }

  .highlight-content .section-eyebrow { text-align: left; }

  .highlight-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
  }

  .highlight-body {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 2.5rem;
  }

  /* ── CONTACTO ── */
  .contacto {
    background: var(--ink);
    padding: 6rem 5rem;
    text-align: center;
  }

  .contacto .section-eyebrow { color: var(--gold-light); }
  .contacto .section-title { color: var(--white); }

  .contacto-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    margin: 1.5rem auto 3rem;
    max-width: 44ch;
  }

  .contacto-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-wa {
    background: #25D366;
    color: #fff;
    padding: 0.9rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.2s, transform 0.2s;
  }

  .btn-wa:hover { opacity: 0.88; transform: translateY(-1px); }

  .btn-wa svg,
  .btn-fb svg {
    width: 27px;
    height: 27px;
  }

  .btn-fb {
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2.25rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: border-color 0.2s, transform 0.2s;
  }

  .btn-fb:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: #110f0a;
    padding: 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(184,154,90,0.15);
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

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

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .floating-contact {
      right: 1rem;
      bottom: 1rem;
      gap: 0.55rem;
    }

    .floating-btn {
      width: 46px;
      height: 46px;
    }

    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav-logo { font-size: 0.92rem; letter-spacing: 0.18em; }
    .nav-logo-mark { width: 30px; height: 30px; }
    .nav-toggle { display: block; }
    .nav-links {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      right: 0;
      display: grid;
      gap: 0;
      padding: 0.75rem 1.5rem 1.25rem;
      background: rgba(245, 240, 232, 0.97);
      border-bottom: 1px solid rgba(184,154,90,0.18);
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
    }
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links a {
      display: block;
      padding: 0.85rem 0;
    }
    .nav-cta {
      display: inline-block !important;
      margin-top: 0.5rem;
      text-align: center;
    }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 6rem 1.5rem 3rem; }
    .hero-right { height: 55vw; }

    .divider { padding: 0 1.5rem; }

    .productos { padding: 4rem 1.5rem; }
    .productos-grid { grid-template-columns: 1fr 1fr; }

    .catalogo { padding: 4rem 1.5rem; }
    .catalogo-gallery { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .especiales { padding: 4rem 1.5rem; }
    .especiales-grid { grid-template-columns: 1fr; }

    .highlight { grid-template-columns: 1fr; }
    .highlight-img-wrap { height: 60vw; }
    .highlight-content { padding: 3rem 1.5rem; }

    .contacto { padding: 4rem 1.5rem; }
    footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  @media (max-width: 520px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .productos-grid,
    .catalogo-gallery { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
