    /* ===== FONT-FACE ===== */
    @font-face {
      font-family: 'The Silver Editorial';
      src: url('../TheSilverEditorial-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'The Silver Editorial';
      src: url('../TheSilverEditorial-Italic.woff2') format('woff2');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'GT Walsheim Pro';
      src: url('../GTWalsheimPro-Light.woff2') format('woff2');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'GT Walsheim Pro';
      src: url('../GTWalsheimPro-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    /* ===== SILVER EDITORIAL: italic disabled (broken kerning in italic variant) ===== */
    .hero__text h1 em, .manifiesto__text em, .barras__title em,
    .cocteleria__title em, .configs__title em, .oficio__title em,
    .carta__title em, .mega__title em, .sub__title em, .pde__title em,
    .contacto__title em, .faq__title em, .requisitos__title em,
    .carta__section h4 em, .carta-marcas h4 em, .mundos__title em,
    .wp-banner__title em, .carta-cta-banner__title em,
    .nav__drawer-links a { font-style: normal; }

    /* ===== TOKENS ===== */
    :root {
      --deep: #06262d;
      --crema: #f1e4b2;
      --copper: #e47e3d;
      --lime: #8eb854;
      --celeste: #7badd0;
      --off-white: #fffdf5;
      --cream-bg: #f5f0e3;
      --serif: 'The Silver Editorial', Georgia, serif;
      --sans: 'GT Walsheim Pro', -apple-system, sans-serif;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
    }

    @view-transition { navigation: auto; }
    ::view-transition-old(root) { animation: fade-out 0.25s ease-in; }
    ::view-transition-new(root) { animation: fade-in 0.35s ease-out; }
    @keyframes fade-out { to { opacity: 0; } }
    @keyframes fade-in { from { opacity: 0; } }

    /* ===== RESET ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { -webkit-font-smoothing: antialiased; color-scheme: light; scroll-behavior: auto; }
    body { font-family: var(--sans); background: var(--off-white); color: var(--deep); overflow-x: hidden; }
    img, video { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ===== ACCESSIBILITY ===== */
    :focus-visible {
      outline: 2px solid var(--copper);
      outline-offset: 4px;
    }
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    .skip-nav {
      position: absolute; top: -100%; left: 16px;
      padding: 12px 24px; background: var(--copper); color: var(--deep);
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      font-weight: 500; z-index: 200; transition: top 0.3s;
    }
    .skip-nav:focus { top: 16px; }

    /* ===== GRAIN (static CSS-based) ===== */
    .grain {
      position: fixed;
      inset: -50%;
      width: 200%;
      height: 200%;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.040;
      mix-blend-mode: multiply;
      background-repeat: repeat;
      animation: grain-shift 0.5s steps(4) infinite;
      will-change: transform;
      contain: strict;
      backface-visibility: hidden;
    }
    @keyframes grain-shift {
      0%   { transform: translate(0, 0); }
      25%  { transform: translate(-5%, -5%); }
      50%  { transform: translate(5%, -10%); }
      75%  { transform: translate(-10%, 5%); }
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      padding: 28px 48px;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(6, 38, 45, 0.85);
      backdrop-filter: blur(12px);
      transition: background 0.6s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.6s var(--ease), transform 0.4s var(--ease);
    }
    /* Home page: gradient nav that blends into hero */
    body[data-page="home"] .nav:not(.scrolled) {
      background: linear-gradient(180deg, rgba(6,38,45,0.8) 0%, rgba(6,38,45,0.35) 75%, transparent 100%);
      backdrop-filter: none;
    }
    .nav.scrolled {
      background: rgba(6, 38, 45, 0.96);
      backdrop-filter: blur(16px);
      padding: 16px 48px;
    }
    .nav.nav--hidden { transform: translateY(-100%); }
    .nav__logo { display: flex; align-items: center; gap: 12px; }
    .nav__logo img { height: 48px; width: auto; }
    .nav__logo-text { font-family: var(--serif); font-size: 22px; color: var(--crema); letter-spacing: 0.02em; font-weight: 400; white-space: nowrap; }
    .nav__links { display: flex; gap: 36px; list-style: none; }
    .nav__links a {
      position: relative;
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--crema); opacity: 0.9; transition: opacity 0.3s; font-weight: 500;
    }
    .nav__links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 100%; height: 1px;
      background: var(--copper);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s var(--ease);
    }
    .nav__links a:hover, .nav__links a.active { opacity: 1; }
    .nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
    .nav__cta {
      position: relative; overflow: hidden; z-index: 1;
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--deep); background: var(--crema); padding: 10px 26px;
      font-weight: 500; transition: color 0.4s var(--ease); display: inline-block;
    }
    .nav__cta::before {
      content: ''; position: absolute; inset: 0;
      background: var(--copper);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.5s var(--ease); z-index: -1;
    }
    .nav__cta:hover { color: var(--crema); }
    .nav__cta:hover::before { transform: scaleX(1); }
    .nav__menu {
      display: none; background: none; border: none;
      width: 28px; height: 20px;
      flex-direction: column; justify-content: space-between;
      padding: 0;
    }
    .nav__menu span {
      display: block; width: 100%; height: 1px; background: var(--crema);
      transition: transform 0.4s var(--ease), opacity 0.3s;
      transform-origin: center;
    }
    .nav__menu.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    .nav__menu.active span:nth-child(2) { opacity: 0; }
    .nav__menu.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }
    .nav__progress {
      position: absolute; bottom: 0; left: 0;
      height: 1px; background: var(--copper); width: 0;
    }
    /* Nav dark state on pages with light backgrounds */
    body[data-page="barras"] .nav,
    body[data-page="bodas"] .nav,
    body[data-page="corporativos"] .nav {
      background: rgba(6, 38, 45, 0.96);
      backdrop-filter: blur(16px);
    }

    /* ===== MOBILE DRAWER ===== */
    .nav__drawer {
      position: fixed; inset: 0; z-index: 99;
      background: var(--deep);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: opacity 0.5s var(--ease), visibility 0.5s;
    }
    .nav__drawer.open { opacity: 1; visibility: visible; }
    .nav__drawer-links {
      list-style: none; text-align: center;
      display: flex; flex-direction: column; gap: 32px;
    }
    .nav__drawer-links a {
      font-family: var(--serif); font-style: normal;
      font-size: clamp(32px, 8vw, 48px);
      color: var(--crema); opacity: 0.85;
      transition: opacity 0.3s;
    }
    .nav__drawer-links a:hover, .nav__drawer-links a.active { opacity: 1; }
    .nav__drawer-links li { opacity: 0; transform: translateY(20px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
    .nav__drawer.open li { opacity: 1; transform: translateY(0); }
    .nav__drawer.open li:nth-child(1) { transition-delay: 0.05s; }
    .nav__drawer.open li:nth-child(2) { transition-delay: 0.1s; }
    .nav__drawer.open li:nth-child(3) { transition-delay: 0.15s; }
    .nav__drawer.open li:nth-child(4) { transition-delay: 0.2s; }
    .nav__drawer.open li:nth-child(5) { transition-delay: 0.25s; }
    .nav__drawer.open li:nth-child(6) { transition-delay: 0.3s; }
    .nav__drawer.open li:nth-child(7) { transition-delay: 0.35s; }
    .nav__drawer-cta {
      display: block; margin-top: 48px; text-align: center;
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--deep); background: var(--crema); padding: 14px 36px;
      font-weight: 500;
    }
    .nav__drawer-cta:hover, .nav__drawer-cta:focus-visible {
      background: var(--copper); color: var(--crema);
      transition: background 0.4s var(--ease), color 0.4s var(--ease);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative; width: 100%;
      min-height: 100vh; overflow: hidden;
      background: var(--deep);
    }
    .hero__split {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 60px; max-width: 1240px;
      margin: 0 auto; padding: 140px 48px 80px;
      min-height: 100vh; align-items: stretch;
    }
    .hero__col-text {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 20px 0 40px;
    }
    .hero__content {
      display: flex; gap: 32px;
    }
    .hero__filete {
      width: 3px; background: var(--copper); flex-shrink: 0;
      height: 0;
    }
    .hero__text h1 {
      font-family: var(--serif); font-size: clamp(36px, 4.5vw, 64px);
      color: var(--crema); line-height: 1.12; font-weight: 400;
      max-width: 520px; letter-spacing: -0.02em;
    }
    .hero__text h1 em { font-style: normal; }
    .hero__tagline {
      margin-top: 16px; font-family: var(--sans); font-style: normal;
      font-size: clamp(14px, 1.5vw, 18px); color: var(--crema);
      opacity: 0; font-weight: 300; letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .hero__proof {
      margin-top: 20px; font-family: var(--sans); font-style: normal;
      font-size: 13px; color: var(--crema); opacity: 0;
      font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase;
    }
    /* Word rotation */
    .hero__rotate-wrap {
      display: block;
      overflow: hidden;
      height: 1.2em;
      position: relative;
    }
    .hero__rotate {
      display: inline-block;
      color: var(--copper);
      white-space: nowrap;
    }
    /* Visual column */
    .hero__col-visual {
      position: relative; display: flex;
      align-items: center;
    }
    .hero__glow {
      position: absolute; width: 320px; height: 320px;
      border-radius: 50%; background: var(--copper);
      filter: blur(120px); opacity: 0.1;
      top: 15%; left: -80px;
      pointer-events: none; z-index: 0;
    }
    .hero__visual-frame {
      position: relative; z-index: 1; width: 100%;
    }
    .hero__img {
      width: 100%; aspect-ratio: 5/6;
      object-fit: cover; border-radius: 4px;
      position: relative; z-index: 1;
    }
    .hero__accent {
      position: absolute;
      bottom: -16px; right: -16px;
      width: 140px; height: 140px;
      border: 1px solid var(--copper);
      opacity: 0; border-radius: 2px;
      z-index: 0; pointer-events: none;
    }
    .hero__scroll {
      position: absolute; bottom: 28px; left: 50%;
      transform: translateX(-50%); z-index: 2;
      opacity: 0;
    }
    .hero__scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(180deg, transparent, var(--crema));
      opacity: 0.25; animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100% { opacity: 0.15; } 50% { opacity: 0.55; } }

    /* ===== SCROLL ANIMATIONS ===== */
    .anim { opacity: 0; transform: translateY(50px); }
    .clip-reveal { clip-path: inset(0 0 100% 0); }
    .scale-reveal { transform: scale(1.08); }
    .line-grow { width: 0; }
    [data-parallax] { }
    .split-line-wrap { overflow: hidden; display: block; }
    .split-line { display: block; }

    /* ===== MANIFIESTO ===== */
    .manifiesto {
      padding: 180px 48px; background: var(--deep);
      display: flex; justify-content: center; position: relative; overflow: hidden;
    }
    .manifiesto__inner { max-width: 720px; text-align: center; position: relative; z-index: 2; }
    .manifiesto__label {
      font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--copper); margin-bottom: 64px; font-weight: 500;
    }
    .manifiesto__text {
      font-family: var(--serif); font-size: clamp(26px, 3.5vw, 44px);
      color: var(--crema); line-height: 1.45; font-weight: 400;
      letter-spacing: 0.01em;
    }
    .manifiesto__text em { font-style: normal; color: var(--copper); }
    .manifiesto__line { display: block; opacity: 0.15; }
    .manifiesto__filete { width: 50px; height: 1px; background: var(--copper); margin: 64px auto 0; opacity: 0.55; }

    /* ===== MUNDOS (teaser grid) ===== */
    .mundos { background: var(--deep); padding-bottom: 0; }
    .mundos__header { padding: 100px 48px 72px; text-align: center; }
    .mundos__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; font-weight: 500; }
    .mundos__title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px); color: var(--crema); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }
    .mundos__title em { font-style: normal; }
    .mundos__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    .mundo { position: relative; overflow: hidden; min-height: 85vh; }
    .mundo__bg {
      position: absolute; inset: -10%;
      background-size: cover; background-position: center;
      transition: transform 0.8s var(--ease);
    }
    .mundo:hover .mundo__bg { transform: scale(1.03); }
    .mundo__dark {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(6,38,45,0.78) 0%, rgba(6,38,45,0.15) 55%, rgba(6,38,45,0.08) 100%);
    }
    .mundo__content { position: absolute; bottom: 52px; left: 40px; right: 40px; z-index: 2; }
    .mundo__num { font-size: 10px; letter-spacing: 3px; color: var(--copper); font-weight: 500; margin-bottom: 14px; }
    .mundo__filete { width: 28px; height: 2px; background: var(--copper); margin-bottom: 18px; transition: width 0.6s var(--ease); }
    .mundo:hover .mundo__filete { width: 56px; }
    .mundo__name { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 36px); color: var(--crema); font-weight: 400; line-height: 1.2; margin-bottom: 14px; letter-spacing: 0.01em; }
    .mundo__copy {
      font-size: 14px; color: var(--crema); line-height: 1.7; opacity: 0; max-width: 300px;
      transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); font-weight: 400;
    }
    .mundo:hover .mundo__copy { opacity: 0.65; transform: translateY(0); }

    /* ===== NUESTRAS BARRAS ===== */
    .barras { padding: 200px 48px 100px; background: var(--off-white); position: relative; }
    .barras__layout {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px;
      max-width: 1240px; margin: 0 auto; align-items: center;
    }
    .barras__visual { position: relative; overflow: hidden; }
    .barras__video-wrap {
      width: 100%; aspect-ratio: 4/5; background: var(--deep);
      overflow: hidden; position: relative;
    }
    .barras__video-wrap video { width: 100%; height: 100%; object-fit: cover; }
    .barras__video-ph {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      color: var(--crema); opacity: 0.12; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    }
    .barras__accent {
      position: absolute; bottom: -24px; right: -24px; width: 180px; height: 180px;
      border: 1px solid var(--copper); opacity: 0.15;
    }
    .barras--page { padding-top: 160px; }
    .barras__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .barras__title { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 48px); color: var(--deep); font-weight: 400; line-height: 1.2; margin-bottom: 28px; letter-spacing: -0.015em; }
    .barras__title em { font-style: normal; }
    .barras__text { font-size: 16px; line-height: 1.75; color: var(--deep); opacity: 0.75; margin-bottom: 48px; font-weight: 400; max-width: 440px; }
    .barras__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .barras__spec { padding: 28px 0; border-top: 1px solid rgba(6,38,45,0.08); }
    .barras__spec-name { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; color: var(--deep); margin-bottom: 5px; }
    .barras__spec-val { font-size: 14px; color: var(--deep); opacity: 0.65; font-weight: 400; line-height: 1.5; }

    /* ===== CÓMO LAS ARMAMOS ===== */
    .configs { max-width: 1240px; margin: 0 auto; padding: 120px 48px 180px; }
    .configs__header { margin-bottom: 56px; }
    .configs__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .configs__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--deep); font-weight: 400; letter-spacing: -0.01em; line-height: 1.2; }
    .configs__title em { font-style: normal; }
    .configs__bajada { font-size: 16px; line-height: 1.75; color: var(--deep); opacity: 0.75; margin-top: 20px; max-width: 520px; }
    .configs__list { display: flex; flex-direction: column; }
    .configs__item { padding: 32px 0; border-bottom: 1px solid rgba(6,38,45,0.08); display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: baseline; }
    .configs__item:first-child { border-top: 1px solid rgba(6,38,45,0.08); }
    .configs__item-name { font-family: var(--serif); font-size: 22px; color: var(--deep); font-weight: 400; }
    .configs__item-desc { font-size: 15px; line-height: 1.7; color: var(--deep); opacity: 0.65; font-weight: 400; }
    .configs__cierre { margin-top: 40px; font-size: 14px; color: var(--deep); opacity: 0.6; font-style: normal; }

    /* ===== CARTA CTA BANNER (barras.html) ===== */
    .carta-cta-banner { padding: 80px 48px; background: var(--cream-bg); text-align: center; }
    .carta-cta-banner__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; font-weight: 500; }
    .carta-cta-banner__title { font-family: var(--serif); font-size: clamp(24px, 2.5vw, 36px); color: var(--deep); font-weight: 400; margin-bottom: 16px; }
    .carta-cta-banner__title em { font-style: normal; color: var(--copper); }
    .carta-cta-banner__text { font-size: 15px; line-height: 1.75; color: var(--deep); opacity: 0.6; max-width: 480px; margin: 0 auto 32px; }

    /* ===== CARTA PAGE HERO ===== */
    .mega--carta { background: var(--cream-bg); color: var(--deep); }
    .mega--carta .mega__hero-overlay { background: linear-gradient(180deg, rgba(245,240,227,0.3) 0%, rgba(245,240,227,0.92) 70%, var(--cream-bg) 100%); }

    /* ===== NUESTRO OFICIO ===== */
    .oficio { padding: 200px 48px; background: var(--deep); position: relative; overflow: hidden; }
    .oficio__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; max-width: 1240px; margin: 0 auto; align-items: start; }
    .oficio__info { padding-top: 40px; }
    .oficio__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .oficio__title { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 48px); color: var(--crema); font-weight: 400; line-height: 1.2; margin-bottom: 28px; letter-spacing: -0.015em; }
    .oficio__title em { font-style: normal; }
    .oficio__text { font-size: 16px; line-height: 1.75; color: var(--crema); opacity: 0.75; font-weight: 400; max-width: 440px; }
    .oficio__visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr 1fr; gap: 12px; }
    .oficio__photo {
      background: rgba(241,228,178,0.04); overflow: hidden; position: relative;
    }
    .oficio__photo:first-child { grid-row: 1 / 3; }
    .oficio__photo img { width: 100%; height: 100%; object-fit: cover; }
    .oficio__photo span {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      color: var(--crema); opacity: 0.1; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    }

    /* ===== COCTELERÍA (merged oficio + carta on index) ===== */
    .cocteleria { padding: 200px 48px; background: var(--deep); position: relative; overflow: hidden; }
    .cocteleria__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; max-width: 1240px; margin: 0 auto; align-items: start; }
    .cocteleria__info { padding-top: 40px; }
    .cocteleria__title { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 48px); color: var(--crema); font-weight: 400; line-height: 1.2; margin-bottom: 28px; letter-spacing: -0.015em; }
    .cocteleria__title em { font-style: normal; }
    .cocteleria__text { font-size: 16px; line-height: 1.75; color: var(--crema); opacity: 0.75; font-weight: 400; max-width: 440px; }
    .cocteleria__visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr 1fr; gap: 12px; }
    .cocteleria__photo { overflow: hidden; position: relative; background: rgba(241,228,178,0.04); }
    .cocteleria__photo:first-child { grid-row: 1 / 3; }
    .cocteleria__photo img { width: 100%; height: 100%; object-fit: cover; }
    .cocteleria__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; }
    .cocteleria__col-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; font-weight: 500; }
    .cocteleria__typewriter {
      font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px);
      color: var(--crema); font-weight: 400; min-height: 44px;
      border-right: 1px solid rgba(241,228,178,0.5);
      display: inline-block; padding-right: 4px;
      white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis; max-width: 100%;
    }
    .cocteleria__typewriter.blink { animation: blink-caret 0.75s step-end infinite; }
    @keyframes blink-caret {
      0%, 100% { border-color: rgba(241,228,178,0.6); }
      50% { border-color: transparent; }
    }
    .cocteleria .wp-cta-secondary { color: var(--crema); border-bottom-color: var(--copper); }
    .cocteleria .wp-cta-secondary:hover { opacity: 0.7; }
    /* Mobile carousel for coctelería photos */
    .cocteleria__carousel { display: contents; }
    .cocteleria__dots { display: none; }

    /* ===== NUESTRA CARTA (barras.html detail page) ===== */
    .carta { padding: 200px 48px; background: var(--cream-bg); }
    .carta__inner { max-width: 900px; margin: 0 auto; }
    .carta__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .carta__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); color: var(--deep); font-weight: 400; line-height: 1.3; margin-bottom: 24px; letter-spacing: -0.01em; }
    .carta__title em { font-style: normal; }
    .carta__text { font-size: 16px; line-height: 1.75; color: var(--deep); opacity: 0.75; max-width: 600px; margin-bottom: 56px; }
    .carta__plus {
      font-size: 14px; letter-spacing: 2px; color: var(--deep); opacity: 0.65;
      text-align: center; margin-bottom: 56px;
    }
    .carta__section { margin-bottom: 40px; }
    .carta__section:last-child { margin-bottom: 0; }
    .carta__section h4 {
      font-family: var(--serif); font-size: 20px; color: var(--deep); font-weight: 400;
      margin-bottom: 16px;
    }
    .carta__section h4 em { font-style: normal; }
    .carta__section > p {
      font-size: 14px; line-height: 1.8; color: var(--deep); opacity: 0.6;
    }
    /* ===== MEGA-BLOCKS (shared) ===== */
    .mega { position: relative; }
    .mega--bodas { background: var(--cream-bg); color: var(--deep); --accent: var(--copper); }
    .mega--privados { background: var(--deep); color: var(--crema); --accent: var(--lime); }
    .mega--corpo { background: var(--cream-bg); color: var(--deep); --accent: var(--celeste); }

    .mega__header { padding: 200px 48px 56px; max-width: 800px; position: relative; z-index: 2; }
    .mega__hero-img {
      position: absolute; inset: 0; z-index: 0;
      background-size: cover; background-position: center;
    }
    .mega__hero-overlay {
      position: absolute; inset: 0; z-index: 1;
    }
    .mega--bodas .mega__hero-overlay { background: linear-gradient(180deg, rgba(245,240,227,0.3) 0%, rgba(245,240,227,0.92) 70%, var(--cream-bg) 100%); }
    .mega--privados .mega__hero-overlay { background: linear-gradient(180deg, rgba(6,38,45,0.2) 0%, rgba(6,38,45,0.88) 70%, var(--deep) 100%); }
    .mega--corpo .mega__hero-overlay { background: linear-gradient(180deg, rgba(245,240,227,0.3) 0%, rgba(245,240,227,0.92) 70%, var(--cream-bg) 100%); }
    .mega--has-img { overflow: hidden; min-height: 70vh; display: flex; align-items: flex-end; }
    /* Dark scrim at top of hero images for nav readability */
    .mega--has-img::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 160px;
      background: linear-gradient(180deg, rgba(6,38,45,0.6) 0%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }
    /* ===== SPLIT HERO (vertical video — editorial contained) ===== */
    .mega--has-video { overflow: hidden; }
    .mega__split {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 160px 48px 80px;
      align-items: center;
    }
    .mega__split-text .mega__header {
      padding: 0 0 0 28px;
      max-width: 520px;
      border-left: 3px solid var(--accent);
    }
    .mega__split-text .mega__filete {
      display: none;
    }
    .mega__split-video {
      position: relative;
      overflow: visible;
    }
    .mega__split-video video {
      width: 100%;
      aspect-ratio: 5/6;
      object-fit: cover;
      display: block;
      border-radius: 2px;
    }
    /* Editorial accent — offset border box */
    .mega__split-video::after {
      content: '';
      position: absolute;
      bottom: -20px; right: -20px;
      width: 160px; height: 160px;
      border: 1px solid var(--accent);
      opacity: 0.15;
      pointer-events: none;
    }

    .mega__filete { width: 3px; height: 48px; background: var(--accent); margin-bottom: 28px; }
    .mega__label {
      font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--accent); margin-bottom: 20px; font-weight: 500;
    }
    .mega__title {
      font-family: var(--serif); font-size: clamp(34px, 4vw, 52px);
      font-weight: 400; line-height: 1.15; margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    .mega__title em { font-style: normal; }
    .mega__bajada {
      font-size: 16px; line-height: 1.75; opacity: 0.75; font-weight: 400;
      max-width: 520px;
    }

    /* ===== SUB-BLOCKS ===== */
    .sub { padding: 80px 48px; max-width: 1240px; margin: 0 auto; }
    .sub__num {
      font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--accent); font-weight: 500; margin-bottom: 20px;
    }
    .sub__title {
      font-family: var(--serif); font-size: clamp(26px, 3vw, 38px);
      font-weight: 400; line-height: 1.2; margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .sub__title em { font-style: normal; }
    .sub__bajada {
      font-size: 15px; line-height: 1.75; opacity: 0.75; font-weight: 400;
      max-width: 520px; margin-bottom: 48px;
    }
    .sub__note {
      margin-top: 32px; font-size: 13px; opacity: 0.65; font-style: normal;
    }
    .sub__note em { font-style: normal; }
    .mega--bodas .sub__num { color: var(--copper); }
    .mega--privados .sub__num { color: var(--lime); }
    .mega--corpo .sub__num { color: var(--celeste); }

    /* ===== MOCKTAILS GRID ===== */
    .mocktails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .mocktail {
      padding: 28px 0; border: none; border-top: 1px solid rgba(6,38,45,0.06);
      background: none;
    }
    .mocktail:last-child { border-bottom: 1px solid rgba(6,38,45,0.06); }
    .mocktail strong { font-size: 15px; font-weight: 500; display: block; margin-bottom: 6px; }
    .mocktail p { font-size: 13px; opacity: 0.65; font-style: normal; }

    /* ===== BADGE ===== */
    .badge {
      display: inline-block;
      font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
      padding: 6px 16px; font-weight: 500; margin-bottom: 32px;
    }
    .badge--copper { background: var(--copper); color: var(--deep); }

    /* ===== WEDDING PLANNERS CARDS ===== */
    .wp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
    .wp-card {
      padding: 32px 0; border: none; border-top: 1px solid rgba(6,38,45,0.06);
      background: none;
    }
    .wp-card:last-child { border-bottom: 1px solid rgba(6,38,45,0.06); }
    .wp-card h4 { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--deep); }
    .wp-card p { font-size: 13px; line-height: 1.6; opacity: 0.65; color: var(--deep); }
    .wp-ctas { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
    .wp-cta-primary {
      display: inline-flex; align-items: center; gap: 10px;
      position: relative; overflow: hidden; z-index: 1;
      background: var(--copper); color: var(--crema);
      padding: 14px 32px; font-size: 12px; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 500;
      transition: opacity 0.3s;
    }
    .wp-cta-primary::before {
      content: ''; position: absolute; inset: 0;
      background: var(--deep);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.5s var(--ease); z-index: -1;
    }
    .wp-cta-primary:hover { opacity: 1; }
    .wp-cta-primary:hover::before { transform: scaleX(1); }
    .wp-cta-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--deep); font-weight: 500;
      padding: 14px 0; border-bottom: 1px solid var(--copper);
      transition: opacity 0.3s;
    }
    .wp-cta-secondary:hover { opacity: 0.7; }

    /* ===== CRISTALERÍA VOLF ===== */
    /* Uses sub-block pattern, no extra CSS needed */

    /* ===== CORPO HIGHLIGHT ===== */
    .corpo-highlight {
      margin-top: 48px; padding: 32px;
      border-left: 3px solid var(--celeste);
      font-size: 15px; line-height: 1.75; opacity: 0.75;
    }

    /* ===== REQUISITOS (standalone) ===== */
    .requisitos { padding: 140px 48px; background: var(--cream-bg); }
    .requisitos__inner { max-width: 1240px; margin: 0 auto; }
    .requisitos__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .requisitos__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--deep); font-weight: 400; margin-bottom: 40px; letter-spacing: -0.01em; line-height: 1.2; }
    .requisitos__title em { font-style: normal; }
    .requisitos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .requisitos__item { display: flex; gap: 16px; align-items: flex-start; }
    .requisitos__icon { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
    .requisitos__item h4 { font-size: 14px; font-weight: 500; color: var(--deep); margin-bottom: 4px; }
    .requisitos__item p { font-size: 13px; color: var(--deep); opacity: 0.65; font-weight: 400; line-height: 1.5; }
    .requisitos__note { margin-top: 32px; font-size: 13px; color: var(--deep); opacity: 0.65; font-style: normal; }

    /* ===== PUNTA DEL ESTE ===== */
    .pde {
      position: relative; min-height: 70vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; text-align: center;
    }
    .pde__bg {
      position: absolute; inset: -10%;
    }
    .pde__bg img { width: 100%; height: 100%; object-fit: cover; }
    .pde__overlay {
      position: absolute; inset: 0;
      background: rgba(6,38,45,0.72);
    }
    .pde__content {
      position: relative; z-index: 2;
      padding: 100px 48px; max-width: 680px;
    }
    .pde__rule {
      width: 60px; height: 1px; background: var(--celeste); opacity: 0.5;
      margin: 0 auto 32px;
    }
    .pde__badge {
      display: inline-block;
      font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--deep); background: var(--celeste);
      padding: 6px 16px; margin-bottom: 32px; font-weight: 500;
    }
    .pde__title {
      font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
      color: var(--crema); font-weight: 400; line-height: 1.15; margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    .pde__title em { font-style: normal; color: var(--celeste); }
    .pde__text {
      font-size: 16px; line-height: 1.75; color: var(--crema); opacity: 0.7;
      font-weight: 400; margin-bottom: 40px;
    }
    .pde__detail {
      font-size: 13px; color: var(--crema); opacity: 0.65;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
    }
    .pde__rule--bottom {
      width: 60px; height: 1px; background: var(--celeste); opacity: 0.5;
      margin: 40px auto 0;
    }

    /* ===== CIFRAS ===== */
    .cifras {
      padding: 120px 48px; background: var(--cream-bg); position: relative;
      border-top: 1px solid rgba(6,38,45,0.06);
      border-bottom: 1px solid rgba(6,38,45,0.06);
    }
    .cifras__grid { display: flex; justify-content: center; gap: 80px; max-width: 1100px; margin: 0 auto; }
    .cifra { text-align: center; position: relative; padding: 0 16px; }
    .cifra__filete { width: 24px; height: 2px; background: var(--copper); margin: 0 auto 24px; opacity: 0.6; }
    .cifra__val { font-family: var(--serif); font-size: clamp(44px, 5vw, 64px); color: var(--deep); font-weight: 400; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
    .cifra__name { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--deep); opacity: 0.65; margin-top: 12px; }
    .cifra + .cifra::before {
      content: ''; position: absolute; left: -40px; top: 20%;
      width: 1px; height: 60%; background: rgba(6,38,45,0.08);
    }

    /* ===== FAQ ===== */
    .faq { padding: 160px 48px; background: var(--off-white); border-top: 1px solid rgba(6,38,45,0.06); }
    .faq__inner { max-width: 760px; margin: 0 auto; }
    .faq__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 28px; font-weight: 500; }
    .faq__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); color: var(--deep); font-weight: 400; margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.2; }
    .faq__title em { font-style: normal; font-kerning: normal; text-rendering: optimizeLegibility; letter-spacing: -0.04em; }
    .faq__bajada { font-size: 15px; color: var(--deep); opacity: 0.65; margin-bottom: 56px; line-height: 1.65; }
    .faq__item { border-bottom: 1px solid rgba(6,38,45,0.08); }
    .faq__item:first-child { border-top: 1px solid rgba(6,38,45,0.08); }
    .faq__item summary {
      cursor: pointer; list-style: none;
      font-size: 16px; font-weight: 500; color: var(--deep);
      padding: 24px 40px 24px 0; position: relative;
    }
    .faq__item summary::-webkit-details-marker { display: none; }
    .faq__item summary::marker { display: none; }
    .faq__item summary::after {
      content: '+';
      position: absolute; right: 0; top: 24px;
      font-size: 20px; color: var(--copper); font-weight: 300;
      transition: transform 0.3s var(--ease);
    }
    .faq__item[open] summary::after { transform: rotate(45deg); }
    .faq__item p {
      padding: 0 0 24px;
      font-size: 15px; line-height: 1.75; color: var(--deep); opacity: 0.6;
      max-width: 640px;
    }

    /* ===== CONTACTO ===== */
    .contacto { padding: 180px 48px; background: var(--deep); text-align: center; position: relative; }
    .contacto__inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
    .contacto__filete { display: flex; gap: 24px; justify-content: center; margin-bottom: 56px; }
    .contacto__filete span { width: 100px; height: 1px; background: var(--copper); opacity: 0.55; }
    .contacto__title { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 54px); color: var(--crema); font-weight: 400; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.02em; }
    .contacto__title em { font-style: normal; color: var(--copper); }
    .contacto__text { font-size: 15px; line-height: 1.7; color: var(--crema); opacity: 0.75; margin-bottom: 52px; font-weight: 400; }
    .contacto__btn {
      display: inline-flex; align-items: center; gap: 14px;
      position: relative; overflow: hidden; z-index: 1;
      background: var(--crema); color: var(--deep);
      padding: 16px 44px; font-size: 12px; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 500;
      transition: color 0.4s var(--ease);
    }
    .contacto__btn::before {
      content: ''; position: absolute; inset: 0;
      background: var(--copper);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.5s var(--ease); z-index: -1;
    }
    .contacto__btn:hover { color: var(--crema); }
    .contacto__btn:hover::before { transform: scaleX(1); }
    .contacto__btn svg { width: 18px; height: 18px; }
    .contacto__tel {
      display: block; margin-top: 36px;
      font-size: 13px; color: var(--crema); opacity: 0.65;
      letter-spacing: 2px; transition: opacity 0.3s;
    }
    .contacto__tel:hover { opacity: 0.85; }

    /* ===== FOOTER ===== */
    .footer {
      padding: 64px 48px 48px; background: var(--deep);
      border-top: 1px solid rgba(241,228,178,0.05);
      display: flex; flex-direction: column; align-items: center; gap: 24px;
    }
    .footer__logo img { height: 64px; width: auto; opacity: 0.55; }
    .footer__address {
      font-size: 12px; color: var(--crema); opacity: 0.65; letter-spacing: 1px;
      text-align: center; font-style: normal; line-height: 1.6;
    }
    .footer__links { display: flex; gap: 28px; }
    .footer__links a {
      font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--crema); opacity: 0.65; transition: opacity 0.3s;
    }
    .footer__links a:hover { opacity: 0.85; }

    /* ===== EDITORIAL OPCIONALES (within mega-blocks) ===== */
    .opc-editorial {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px 60px; max-width: 900px;
    }
    .opc-editorial__item { padding: 0; }
    .opc-editorial__filete {
      width: 24px; height: 2px;
      background: var(--accent, var(--copper));
      margin-bottom: 20px;
    }
    .opc-editorial__name {
      font-family: var(--serif); font-size: 20px;
      font-weight: 400; margin-bottom: 8px;
    }
    .opc-editorial__desc {
      font-size: 14px; opacity: 0.65; line-height: 1.6;
    }

    /* ===== CARTA EDITORIAL (redesigned) ===== */
    .carta-clasicos {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px 40px; list-style: none; margin-bottom: 48px;
    }
    .carta-clasicos li {
      font-size: 15px; padding: 8px 0 8px 20px;
      position: relative; color: var(--deep);
    }
    .carta-clasicos li::before {
      content: ''; position: absolute; left: 0; top: 14px;
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--copper);
    }
    .carta-estacionales-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 40px; margin-bottom: 48px;
    }
    .estacional__num {
      font-family: var(--serif); font-size: 48px;
      opacity: 0.08; line-height: 1;
    }
    .estacional__name {
      font-size: 12px; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 500;
      margin-top: -20px; color: var(--deep);
    }
    .estacional__ingredients {
      font-size: 14px; opacity: 0.65; margin-top: 8px; line-height: 1.5;
    }
    .carta-marcas {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; margin-top: 48px;
    }
    .carta-marcas h4 {
      font-family: var(--serif); font-size: 20px;
      color: var(--deep); font-weight: 400; margin-bottom: 16px;
    }
    .carta-marcas h4 em { font-style: normal; }
    .carta-marcas p {
      font-size: 14px; line-height: 1.8; color: var(--deep); opacity: 0.6;
    }
    .carta__iconicos-editorial {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 8px 32px; margin-bottom: 40px;
    }
    .carta__iconico-ed {
      font-family: var(--serif); font-size: 22px;
      color: var(--deep); padding: 12px 0; font-weight: 400;
    }

    /* ===== CORPO COMPACT LIST ===== */
    .corpo-compact {
      font-size: 15px; line-height: 1.8; opacity: 0.65;
      margin-top: 24px; max-width: 520px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .mundos__grid { grid-template-columns: 1fr; }
      .mundo { min-height: 480px; }
      .mundo__copy { opacity: 0.65; transform: translateY(0); }
      .barras__layout, .oficio__layout, .cocteleria__layout { grid-template-columns: 1fr; gap: 64px; }
      .configs__item { grid-template-columns: 180px 1fr; }
      .carta__iconicos-editorial { grid-template-columns: repeat(2, 1fr); }
      .carta-estacionales-grid { grid-template-columns: repeat(2, 1fr); }
      .carta-marcas { grid-template-columns: 1fr; gap: 40px; }
      .mocktails { grid-template-columns: 1fr 1fr; }
      .wp-cards { grid-template-columns: 1fr 1fr; }
      .requisitos__grid { grid-template-columns: 1fr 1fr; }
      .oficio__visual { grid-template-rows: auto auto; height: auto; }
      .cifras__grid { flex-wrap: wrap; gap: 48px; }
      .cocteleria__visual { grid-template-rows: auto auto; height: auto; }
      .cocteleria__columns { grid-template-columns: 1fr 1fr; }
      .opc-editorial { gap: 40px 48px; }
      .mega__split { grid-template-columns: 1fr 1fr; gap: 60px; }
    }

    @media (max-width: 900px) and (min-width: 769px) {
      .mega__split { grid-template-columns: 1fr; gap: 48px; padding: 120px 36px 60px; }
      .mega__split-video { order: -1; }
      .mega__split-video video { aspect-ratio: 16/9; }
      .hero__split { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 120px 36px 60px; }
      .hero__col-visual { order: -1; }
      .hero__img { aspect-ratio: 16/9; }
      .hero__glow { display: none; }
      .hero__accent { display: none; }
    }

    @media (max-width: 768px) {
      .nav { padding: 20px 24px; }
      .nav.scrolled { padding: 14px 24px; }
      .nav__links, .nav__cta { display: none; }
      .nav__menu { display: flex; }
      .nav__logo img { height: 40px; }
      .nav__logo-text { font-size: 18px; }
      .hero__split {
        grid-template-columns: 1fr;
        padding: 110px 24px 60px;
        gap: 40px;
        min-height: auto;
      }
      .hero__col-visual { order: -1; }
      .hero__col-text { padding: 0; }
      .hero__glow { display: none; }
      .hero__img { aspect-ratio: 4/3; border-radius: 4px; }
      .hero__content { gap: 24px; }
      .hero__accent { display: none; }
      .hero__visual-frame { width: 100%; }
      .manifiesto { padding: 120px 24px; }
      .mundos__header { padding: 64px 24px 48px; }
      .mundo { min-height: 400px; }
      .mundo__content { bottom: 32px; left: 24px; right: 24px; }
      .barras { padding: 100px 24px 80px; }
      .barras__specs { grid-template-columns: 1fr; }
      .configs { padding: 80px 24px 100px; }
      .configs__item { grid-template-columns: 1fr; gap: 8px; }
      .oficio { padding: 100px 24px; }
      .oficio__visual { grid-template-columns: 1fr; }
      .oficio__photo:first-child { grid-row: auto; min-height: 280px; }
      .oficio__photo { min-height: 200px; }
      .cocteleria { padding: 100px 24px; }
      .cocteleria__visual { grid-template-columns: 1fr; }
      .cocteleria__visual { display: block; overflow: hidden; }
      .cocteleria__carousel {
        display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px;
      }
      .cocteleria__carousel::-webkit-scrollbar { display: none; }
      .cocteleria__photo { flex: 0 0 80%; scroll-snap-align: center; grid-row: auto; }
      .cocteleria__photo:first-child { grid-row: auto; }
      .cocteleria__photo img { height: auto; aspect-ratio: 3/4; object-position: center 30%; }
      .cocteleria__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
      .cocteleria__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--crema); opacity: 0.2; transition: opacity 0.3s; }
      .cocteleria__dot.active { opacity: 0.7; }
      .cocteleria__columns { grid-template-columns: 1fr 1fr; gap: 24px; }
      .carta { padding: 100px 24px; }
      .carta__iconicos-editorial { grid-template-columns: repeat(2, 1fr); }
      .carta-clasicos { grid-template-columns: 1fr; }
      .carta-estacionales-grid { grid-template-columns: 1fr 1fr; }
      .carta-marcas { grid-template-columns: 1fr; gap: 32px; }
      .mega__split {
        grid-template-columns: 1fr;
        padding: 100px 24px 48px;
        gap: 40px;
      }
      .mega__split-video {
        order: -1;
      }
      .mega__split-video video {
        aspect-ratio: 3/4;
      }
      .mega__split-video::after {
        display: none;
      }
      .mega__split-text {
        padding: 48px 24px 56px;
      }
      .mega__header { padding: 100px 24px 32px; }
      .sub { padding: 64px 24px; }
      .mocktails { grid-template-columns: 1fr; }
      .wp-cards { grid-template-columns: 1fr; }
      .wp-ctas { flex-direction: column; align-items: flex-start; }
      .requisitos { padding: 80px 24px; }
      .requisitos__grid { grid-template-columns: 1fr; }
      .pde__content { padding: 80px 24px; }
      .pde__overlay { background: rgba(6,38,45,0.85); }
      .cifras { padding: 72px 24px; }
      .cifras__grid { gap: 32px; }
      .cifra { flex: 0 0 40%; }
      .cifra + .cifra::before { display: none; }
      .opc-editorial { grid-template-columns: 1fr; gap: 32px; }
      .faq { padding: 80px 24px; }
      .contacto { padding: 120px 24px; }
      .footer { padding: 48px 24px 32px; gap: 18px; }
      .corpo-highlight { padding: 24px; }
    }

    @media (max-width: 374px) {
      .nav { padding: 16px 16px; }
      .hero__content { left: 16px; right: 16px; }
      .manifiesto, .oficio { padding-left: 16px; padding-right: 16px; }
      .barras { padding-left: 16px; padding-right: 16px; }
      .carta { padding-left: 16px; padding-right: 16px; }
      .mega__header { padding-left: 16px; padding-right: 16px; }
      .sub { padding-left: 16px; padding-right: 16px; }
      .requisitos { padding-left: 16px; padding-right: 16px; }
      .faq { padding-left: 16px; padding-right: 16px; }
      .cifras__grid { gap: 24px; }
      .carta__iconicos-editorial { grid-template-columns: 1fr; }
      .carta-estacionales-grid { grid-template-columns: 1fr; }
    }

    /* ===== WP BANNER (wedding planners) ===== */
    .wp-banner { padding: 100px 48px; background: var(--cream-bg); border-top: 1px solid rgba(6,38,45,0.06); }
    .wp-banner__inner { max-width: 760px; margin: 0 auto; text-align: center; }
    .wp-banner__label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; font-weight: 500; }
    .wp-banner__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); color: var(--deep); font-weight: 400; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.01em; }
    .wp-banner__title em { color: var(--copper); font-style: normal; }
    .wp-banner__text { font-size: 15px; line-height: 1.75; color: var(--deep); opacity: 0.65; max-width: 520px; margin: 0 auto; }
    .wp-banner .wp-ctas { justify-content: center; }
    @media (max-width: 768px) {
      .wp-banner { padding: 72px 24px; }
      .wp-banner .wp-ctas { flex-direction: column; align-items: center; }
      .carta-cta-banner { padding: 72px 24px; }
    }

    /* ===== OPCIONALES PHOTO GRID ===== */
    .opc-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; margin-top: 56px; }
    .opc-photo-card { overflow: hidden; position: relative; }
    .opc-photo-card__img-wrap {
      position: relative; overflow: hidden; border-radius: 6px;
      margin-bottom: 20px;
    }
    .opc-photo-card__img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
      transition: transform 0.7s var(--ease);
    }
    .opc-photo-card:hover .opc-photo-card__img { transform: scale(1.05); }
    /* Accent micro-filete between image and text */
    .opc-photo-card__text::before {
      content: '';
      display: block;
      width: 24px; height: 2px;
      background: var(--accent);
      margin-bottom: 14px;
    }
    .opc-photo-card__name {
      font-family: var(--serif); font-size: 18px; font-weight: 400;
      color: inherit; margin-bottom: 8px; line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .opc-photo-card__desc { font-size: 13px; opacity: 0.55; line-height: 1.65; color: inherit; }
    @media (max-width: 768px) {
      .opc-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
      .opc-photo-card__name { font-size: 16px; }
    }
    @media (max-width: 374px) {
      .opc-photo-grid { grid-template-columns: 1fr; }
    }

    /* ===== BRINDIS PHOTO ===== */
    .brindis-photo { margin-top: 48px; max-width: 600px; }
    .brindis-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

    /* ===== FLOATING WHATSAPP ===== */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 90;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25d366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }
    .wa-float svg { width: 28px; height: 28px; }
    @media (max-width: 768px) {
      .wa-float {
        bottom: 0; right: 0; left: 0;
        width: 100%; height: 54px; border-radius: 0;
        font-family: var(--sans); font-size: 14px;
        font-weight: 500; letter-spacing: 0.5px;
        gap: 10px;
      }
      .wa-float::after { content: 'Hablemos por WhatsApp'; }
      .wa-float svg { width: 20px; height: 20px; }
      .wa-float:hover { transform: none; }
      body { padding-bottom: 54px; }
    }

    /* ===== REDUCED MOTION ===== */
    @media (prefers-reduced-motion: reduce) {
      .anim { opacity: 1 !important; transform: none !important; }
      .clip-reveal { clip-path: none !important; }
      .scale-reveal { transform: none !important; }
      .line-grow { width: 60px !important; }
      .hero__text h1 { opacity: 1 !important; transform: none !important; }
      .hero__tagline { opacity: 0.7 !important; transform: none !important; }
      .hero__filete { height: 220px !important; }
      .hero__scroll { opacity: 1 !important; }
      .hero__scroll-line { animation: none !important; }
      .grain { animation: none !important; }
      .mundo { opacity: 1 !important; transform: none !important; }
      .mundo__copy { opacity: 0.65 !important; transform: none !important; }
      .nav__drawer { transition: none !important; }
      .manifiesto__line { opacity: 1 !important; transform: none !important; }
      .split-line { transform: none !important; }
      .hero__img { opacity: 1 !important; transform: none !important; }
      .hero__accent { opacity: 0.15 !important; transform: none !important; }
      .hero__rotate { transform: none !important; }
    }

    @media print {
      .grain, .nav, .nav__drawer, .wa-float, .hero__scroll,
      .nav__progress, .hero__glow, .hero__accent { display: none !important; }
      .hero { min-height: auto !important; }
      .hero__text h1 { opacity: 1 !important; transform: none !important; }
      .hero__tagline { opacity: 0.7 !important; }
      .hero__filete { height: 120px !important; }
      .hero__img { opacity: 1 !important; }
      body { background: #fff !important; }
      .contacto, .pde { break-inside: avoid; }
    }
