/* =====================================================================
   Mastro 50th Anniversary — landing page styles
   Standalone WordPress page template (page-50-years.php / page-50-ans.php)
   Theme path: themes/mastro/assets/css/mastro-50.css
   Self-contained: no framework, no build step. Fonts via Adobe Typekit + Google. Blue Door Agency
   ===================================================================== */

:root{
    /* Brand colors per Brand Manual */
    --mastro-blue: #00244d;          /* 50th anniversary navy (client) */
    --mastro-blue-deep: #00244d;
    --mastro-blue-pkg: #00244d;       /* packaging blue (brand manual) */
    --mastro-green: #18aa50;
    --mastro-red: #ec3128;
    --mastro-bronze: #a39161;       /* anniversary gold */
    --gold-deep: #8a7544;
    --gold-warm: #c9a96a;
    --slate: #626468;
    --cream: #f5efe1;
    --cream-soft: #faf6ec;
    --paper: #f3ecdb;
    --ink: #1a1a1a;
    --ink-soft: #2c2a26;

    --bg: var(--cream-soft);
    --fg: var(--ink-soft);
    --accent: var(--mastro-bronze);

    --maxw: 1320px;

    --font-display: "niveau-grotesk", system-ui, sans-serif;
    --font-serif: "niveau-grotesk", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
    --font-sc: "niveau-grotesk-small-caps", "niveau-grotesk", sans-serif;
  }

  *, *::before, *::after{ box-sizing: border-box; }
  html, body{ margin: 0; padding: 0; }
  body{
    font-family: var(--font-display);
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  /* =================== TYPE ====================== */
  .h-display{ font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.15; }
  .h-serif  { font-family: var(--font-serif); font-weight: 500; font-style: italic; line-height: 1.05; letter-spacing: -0.01em; }
  .eyebrow{
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 12px;
    color: var(--accent);
  }
  .mono{
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--slate);
  }
  p{ font-weight: 400; line-height: 1.55; }

  /* =================== UTIL ====================== */
  .wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 56px; }
  @media (max-width: 880px){ .wrap{ padding: 0 24px; } }

  /* =================== BUTTONS ====================== */
  .btn{
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px; border-radius: 999px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn-primary{ background: var(--mastro-blue); color: #fff; }
  .btn-primary:hover{ background: var(--mastro-blue-deep); }
  .btn-ghost{ background: transparent; color: currentColor; border-color: currentColor; opacity: 0.85; }
  .btn-ghost:hover{ opacity: 1; }
  .btn .arrow{ width: 14px; height: 10px; flex: 0 0 14px; }

  /* =================== TOP BAR ====================== */
  .topbar{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: color-mix(in oklab, var(--bg) 60%, transparent);
    border-bottom: 1px solid color-mix(in oklab, var(--fg) 8%, transparent);
    transition: background .35s ease, border-color .35s ease, color .35s ease;
  }
  .topbar--dark{
    background: linear-gradient(180deg, rgba(8,8,8,0.55), rgba(8,8,8,0.0));
    backdrop-filter: blur(2px);
    border-bottom: none;
    color: #f1e6cc;
  }
  .topbar-inner{
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    padding: 14px 40px;
    max-width: 1640px;
    margin: 0 auto;
  }
  @media (max-width: 880px){ .topbar-inner{ padding: 12px 20px; } }
  .topbar-logo{ display: inline-flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; }
  .topbar-logo img{ height: 52px; width: auto; display: block; }
  .topbar-logo .tag{
    font-family: var(--font-serif); font-style: italic;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.02em;
    padding-left: 14px;
    border-left: 1px solid color-mix(in oklab, currentColor 22%, transparent);
  }
  .topbar--dark .topbar-logo .tag{ color: var(--gold-warm); }
  @media (max-width: 720px){ .topbar-logo .tag{ display: none; } }
  .lang-toggle{
    display: inline-flex;
    border: 1px solid color-mix(in oklab, currentColor 30%, transparent);
    border-radius: 999px;
    padding: 4px;
    background: color-mix(in oklab, var(--bg) 35%, transparent);
  }
  .topbar--dark .lang-toggle{
    background: rgba(0,0,0,0.25);
    border-color: rgba(241,230,204,0.35);
  }
  .lang-toggle button, .lang-toggle a{
    border: none; background: transparent; color: inherit;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
    padding: 6px 12px; border-radius: 999px; cursor: pointer; opacity: 0.65;
  }
  .lang-toggle button.active, .lang-toggle a.active{
    background: var(--mastro-blue);
    color: #fff;
    opacity: 1;
  }
  .topbar--dark .lang-toggle button.active, .lang-toggle a.active{
    background: var(--gold-warm);
    color: #0b0805;
  }

  /* =================== VIDEO STAGE (poster + video) ====================== */
  .video-stage{ position: relative; width: 100%; height: 100%; overflow: hidden; background: #0a0a0a; }
  .video-stage-vid{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .video-stage-poster{
    position: absolute; inset: 0;
    transition: opacity .6s ease;
    opacity: 0;
    pointer-events: none;
  }
  .video-stage-poster.is-shown{ opacity: 1; }
  .vs-poster-bg{ position: absolute; inset: 0; }
  .video-stage--warm .vs-poster-bg{
    background:
      radial-gradient(ellipse at 30% 30%, rgba(201,169,106,0.42) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 80%, rgba(236,49,40,0.18) 0%, transparent 55%),
      linear-gradient(180deg, #1a120c 0%, #2b1d10 50%, #0b0805 100%);
  }
  .video-stage--navy .vs-poster-bg{
    background:
      radial-gradient(ellipse at 30% 30%, rgba(201,169,106,0.32) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 80%, rgba(0,36,77,0.45) 0%, transparent 55%),
      linear-gradient(180deg, #00244d 0%, #00244d 50%, #001833 100%);
  }
  .video-stage--noir .vs-poster-bg{
    background:
      radial-gradient(ellipse at 50% 50%, rgba(201,169,106,0.22) 0%, transparent 60%),
      linear-gradient(180deg, #0a0a0a 0%, #15110b 100%);
  }
  .vs-poster-grain{
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg, rgba(201,169,106,0.08) 0 1px, transparent 1px 18px),
      repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
  }
  .vs-poster-content{
    position: absolute; left: 28px; bottom: 26px;
    color: #f1e6cc;
    max-width: 60%;
  }
  .vs-label{
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-warm);
  }
  .vs-title{
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.1;
    margin-top: 6px;
  }
  .vs-stamp{
    position: absolute;
    top: 18px; left: 22px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(241,230,204,0.7);
    padding: 5px 9px;
    border: 1px solid rgba(241,230,204,0.18);
    border-radius: 2px;
  }
  .vs-stamp::before{
    content: "●";
    color: #ec3128;
    margin-right: 8px;
    font-size: 9px;
    vertical-align: 2px;
  }

  /* =================== HERO COMMON ====================== */
  .hero{ position: relative; overflow: hidden; }
  .hv-video-wrap{
    position: relative;
    width: 100%; height: 100%;
    background: #050505;
  }
  .hv-video{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hv-unmute{
    position: absolute;
    bottom: 24px; right: 24px;
    z-index: 4;
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: #f1e6cc;
    border: 1px solid rgba(241,230,204,0.3);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .hv-unmute:hover{ background: rgba(0,0,0,0.7); border-color: var(--gold-warm); transform: translateY(-1px); }
  .hv-unmute-icon{ width: 18px; height: 18px; display: inline-flex; }
  .hv-unmute-icon svg{ width: 100%; height: 100%; color: var(--gold-warm); }
  .hv-caption{
    position: absolute;
    bottom: 24px; left: 28px;
    z-index: 3;
    color: rgba(241,230,204,0.7);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  /* =================== HERO: FULL-BLEED ====================== */
  .hero-fullbleed{
    height: 100vh;
    min-height: 640px;
    background: #050505;
  }
  .hero-fullbleed .hv-video-wrap{ position: absolute; inset: 0; }
  /* Poster fallback styling for missing video */
  .hero-fullbleed .hv-video-wrap::after{
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse at 30% 30%, rgba(201,169,106,0.32) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 80%, rgba(236,49,40,0.16) 0%, transparent 55%),
      linear-gradient(180deg, #1a120c 0%, #2b1d10 50%, #0b0805 100%);
  }
  .hero-fullbleed .hv-video{ z-index: 1; }
  .hero-fullbleed .hv-video-wrap::before{
    content: "";
    position: absolute; inset: 0; z-index: 2;
    background:
      repeating-linear-gradient(45deg, rgba(201,169,106,0.08) 0 1px, transparent 1px 22px);
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .hv-gradient{
    position: absolute; inset: 0; z-index: 2;
    background:
      linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.25) 30%, rgba(8,8,8,0.1) 50%, rgba(8,8,8,0.7) 100%);
    pointer-events: none;
    transition: opacity .55s ease;
  }
  .hv-overlay{
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    color: #f7f1e3;
    padding: 80px 32px;
    gap: 32px;
    transition: opacity .5s ease;
  }
  /* Hover-to-engage: clear all text so the film plays fully */
  .hero-fullbleed.is-engaged .hv-overlay{ opacity: 0; pointer-events: none; }
  .hero-fullbleed.is-engaged .hv-gradient{ opacity: 0; }
  .hv-eyebrow{
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--gold-warm);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 12px;
  }
  .hv-eyebrow .dot{ width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
  .hv-headline{
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: #fbf4e1;
    font-size: clamp(44px, 6.2vw, 96px);
    line-height: 1;
    letter-spacing: -0.015em;
    max-width: 16ch;
  }
  .hv-headline em{ color: var(--gold-warm); font-style: italic; font-weight: 600; }
  .hv-scroll-cta{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #f7f1e3;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.32em;
    margin-top: 24px;
    cursor: pointer;
    transition: color .25s ease;
  }
  .hv-scroll-cta:hover{ color: var(--gold-warm); }
  .hv-scroll-stem{
    width: 1px; height: 40px;
    background: currentColor;
    opacity: 0.55;
    transform-origin: top;
    animation: stem 2.4s ease-in-out infinite;
  }
  @keyframes stem{
    0%, 100%{ transform: scaleY(0.4); opacity: 0.2; }
    50%     { transform: scaleY(1);   opacity: 0.7; }
  }

  /* =================== HERO: LETTERBOX ====================== */
  .hero-letterbox{
    padding: 130px 0 96px;
    background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
    color: var(--ink-soft);
    position: relative;
  }
  .hl-bg{
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 12% 80%, rgba(163,145,97,0.10) 0, transparent 30%),
      radial-gradient(circle at 88% 18%, rgba(0,36,77,0.06) 0, transparent 35%);
    pointer-events: none;
  }
  .hl-stack{
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
  }
  @media (max-width: 880px){ .hl-stack{ padding: 0 24px; gap: 24px; } }
  .hl-top{ display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .hl-mark{ height: 110px; width: auto; filter: drop-shadow(0 18px 40px rgba(138,117,68,0.18)); }
  .hl-meta .eyebrow{ font-size: 12px; }
  .hl-headline{
    margin: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    max-width: 18ch;
  }
  .hl-headline em{ color: var(--accent); font-style: italic; font-weight: 600; }
  /* Letterbox video frame */
  .hero-letterbox .hv-video-wrap{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #050505;
    box-shadow:
      0 0 0 1px rgba(201,169,106,0.45),
      0 0 0 10px rgba(0,0,0,0.6),
      0 0 0 11px rgba(201,169,106,0.25),
      0 50px 100px -40px rgba(138,117,68,0.35);
  }
  .hero-letterbox .hv-video-wrap::after{
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(201,169,106,0.22) 0%, transparent 60%),
      linear-gradient(180deg, #15110b 0%, #1f1810 50%, #0b0805 100%);
  }
  .hl-foot{ display: flex; justify-content: center; }
  .hl-scroll{
    display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
    text-decoration: none;
    color: var(--slate);
    font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase;
    font-size: 12px; letter-spacing: 0.32em;
    cursor: pointer;
  }
  .hl-scroll:hover{ color: var(--accent); }
  .hl-scroll-stem{
    width: 1px; height: 30px; background: currentColor;
    opacity: 0.55;
    transform-origin: top;
    animation: stem 2.4s ease-in-out infinite;
  }

  /* =================== HERO: SPLIT ====================== */
  .hero-split{
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--cream-soft);
    color: var(--ink-soft);
  }
  @media (max-width: 980px){
    .hero-split{ grid-template-columns: 1fr; min-height: 0; }
  }
  .hs-left{
    padding: 130px 64px 80px;
    display: flex; flex-direction: column; justify-content: center;
    gap: 28px;
  }
  @media (max-width: 980px){ .hs-left{ padding: 110px 28px 40px; } }
  .hs-mark{ display: flex; align-items: center; gap: 18px; }
  .hs-mark .yr{
    font-family: var(--font-serif); font-style: italic;
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 0.02em;
  }
  .hs-mark .pipe{
    width: 1px; height: 28px;
    background: color-mix(in oklab, var(--fg) 20%, transparent);
  }
  .hs-headline{
    margin: 0;
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    color: var(--ink);
    font-size: clamp(46px, 6vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.015em;
  }
  .hs-headline .stack{ display: block; }
  .hs-headline .stack.gold{ color: var(--accent); }
  .hs-sub{
    max-width: 480px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--slate);
  }
  .hs-scroll{
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none;
    color: var(--slate);
    font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase;
    font-size: 12px; letter-spacing: 0.32em;
    width: fit-content;
  }
  .hs-scroll:hover{ color: var(--accent); }
  .hs-scroll-stem{
    width: 32px; height: 1px; background: currentColor;
    opacity: 0.55;
    transform-origin: left;
    animation: stem-h 2.4s ease-in-out infinite;
  }
  @keyframes stem-h{
    0%, 100%{ transform: scaleX(0.4); opacity: 0.2; }
    50%     { transform: scaleX(1);   opacity: 0.7; }
  }
  .hs-right{
    position: relative;
    background: #050505;
    min-height: 70vh;
  }
  @media (max-width: 980px){ .hs-right{ min-height: 60vh; } }
  .hs-right .hv-video-wrap{ position: absolute; inset: 0; }
  .hs-right .hv-video-wrap::after{
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(201,169,106,0.22) 0%, transparent 60%),
      linear-gradient(180deg, #15110b 0%, #1f1810 50%, #0b0805 100%);
  }

  /* =================== STORY ====================== */
  .story{
    padding: 140px 0 110px;
    background: var(--bg);
    position: relative;
  }
  .story-grid{
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 90px;
    align-items: center;
  }
  @media (max-width: 980px){
    .story-grid{ grid-template-columns: 1fr; gap: 48px; }
    .story{ padding: 80px 0; }
  }
  .story-text .eyebrow{ display: block; margin-bottom: 24px; }
  .story-text h2{
    margin: 0 0 28px;
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .story-text h2 em{ color: var(--accent); font-style: italic; }
  .story-text p{
    margin: 0 0 18px;
    font-size: 17px; line-height: 1.65;
    color: var(--slate);
    max-width: 52ch;
  }
  .signature{
    margin-top: 32px;
    font-family: var(--font-serif); font-style: italic;
    font-size: 20px; color: var(--accent);
  }
  .signature .name{
    display: block;
    font-family: var(--font-display); font-style: normal;
    font-weight: 600; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.22em;
    color: var(--slate);
    margin-top: 6px;
  }
  .story-frame{
    position: relative;
    aspect-ratio: 4/5;
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
  }
  .story-frame::before{
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(163,145,97,0.20) 0 1px, transparent 1px 16px);
  }
  .story-frame .caption{ position: absolute; left: 24px; bottom: 22px; z-index: 1; color: var(--ink); }
  .story-frame .caption .num{
    font-family: var(--font-serif); font-style: italic;
    font-size: 56px; line-height: 1; color: var(--accent);
  }
  .story-frame .caption .place{
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink);
    margin-top: 8px;
  }
  .story-frame .placeholder-label{
    position: absolute; top: 22px; right: 22px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 6px 10px;
    background: rgba(255,255,255,0.6);
    color: var(--slate);
    border: 1px solid rgba(163,145,97,0.3);
    border-radius: 2px;
  }
  .story-frame .frame-meta{
    position: absolute; inset: 16px;
    border: 1px solid rgba(163,145,97,0.35);
    pointer-events: none;
  }

  /* =================== TIMELINE ====================== */
  .timeline{
    padding: 110px 0 130px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
    position: relative;
  }
  .timeline-head{
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 48px;
    margin-bottom: 72px;
  }
  @media (max-width: 880px){
    .timeline-head{ flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  }
  .timeline-head h2{
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1;
    color: var(--ink);
    margin: 0;
    max-width: 14ch;
  }
  .timeline-head h2 em{ color: var(--accent); font-style: italic; }
  .timeline-head .lede{
    max-width: 380px; font-size: 16px; color: var(--slate); line-height: 1.6;
  }
  /* Tall decade columns (restored per client preference) — image-free */
  .timeline-cols{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid color-mix(in oklab, var(--fg) 15%, transparent);
    border-bottom: 1px solid color-mix(in oklab, var(--fg) 15%, transparent);
  }
  @media (max-width: 1100px){ .timeline-cols{ grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 760px){ .timeline-cols{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px){ .timeline-cols{ grid-template-columns: 1fr; } }
  .decade{
    border-right: 1px solid color-mix(in oklab, var(--fg) 12%, transparent);
    padding: 28px 18px 36px;
    min-height: 440px;
    display: flex; flex-direction: column; gap: 14px;
    cursor: pointer;
    transition: background .35s ease;
  }
  .decade:last-child{ border-right: none; }
  @media (max-width: 1100px){
    .decade:nth-child(4n){ border-right: none; }
    .decade{ min-height: 360px; }
  }
  @media (max-width: 760px){
    .decade:nth-child(4n){ border-right: 1px solid color-mix(in oklab, var(--fg) 12%, transparent); }
    .decade:nth-child(2n){ border-right: none; }
  }
  @media (max-width: 460px){
    .decade{ border-right: none; min-height: 0; padding-bottom: 26px; }
  }
  .decade:hover, .decade.is-active{
    background: color-mix(in oklab, var(--accent) 8%, transparent);
  }
  .decade .yr{
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -0.015em;
    min-height: calc(1.45em + 6px); /* reserve room for optional date span so titles align across columns */
  }
  .decade .yr .span{
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--slate);
    margin-top: 6px;
  }
  .decade.is-active .yr{ color: var(--accent); }
  .decade .moment-tag{
    font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--accent);
    margin-top: 16px;
    min-height: 14px; /* reserve slot even when empty so milestone headers top-align */
  }
  .decade .moment-tag.is-empty{ visibility: hidden; }
  .decade .moment-title{
    font-family: var(--font-display);
    font-weight: 600; font-size: 17px;
    line-height: 1.3;
    color: var(--ink);
  }
  .decade .moment-body{
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
    margin-top: 4px;
  }

  /* =================== SPOTS SECTION ====================== */
  .spots{
    padding: 130px 0 130px;
    background: #060403;
    color: #f1e6cc;
    position: relative;
    overflow: hidden;
  }
  .spots::before{
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(163,145,97,0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 100%, rgba(0,36,77,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .spots-head{
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .spots-head .eyebrow{ color: var(--gold-warm); }
  .spots-headline{
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    margin: 0;
    color: #fbf4e1;
    max-width: 18ch;
  }
  .spots-headline em{ color: var(--gold-warm); font-style: italic; }
  .spots-lede{
    max-width: 56ch; color: rgba(241,230,204,0.75);
    font-size: 16px; line-height: 1.6; margin: 0;
  }
  .spots-note{
    text-align: center;
    margin-top: 48px;
    color: rgba(241,230,204,0.55);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }

  /* --- Layout: side-by-side --- */
  .spots-grid--side{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1320px;
    margin: 0 auto;
  }
  @media (max-width: 880px){ .spots-grid--side{ grid-template-columns: 1fr; gap: 24px; } }
  .spot-card{
    display: flex; flex-direction: column;
    gap: 24px;
  }
  .spot-frame{
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow:
      0 0 0 1px rgba(201,169,106,0.35),
      0 0 0 8px rgba(0,0,0,0.6),
      0 0 0 9px rgba(201,169,106,0.18);
  }
  .spot-play{
    position: absolute;
    inset: 0; margin: auto;
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(201,169,106,0.95);
    color: #00244d;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s ease, background .3s ease;
    z-index: 3;
  }
  .spot-play:hover{ background: var(--gold-warm); transform: scale(1.06); }
  .spot-play svg{ width: 26px; height: 26px; transform: translateX(2px); }
  .spot-play--lg{ width: 110px; height: 110px; }
  .spot-play--lg svg{ width: 32px; height: 32px; }
  .spot-runtime{
    position: absolute; bottom: 16px; right: 18px;
    color: rgba(241,230,204,0.85);
    letter-spacing: 0.22em;
    z-index: 3;
  }
  .spot-body{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 4px 6px;
  }
  .spot-number{
    font-family: var(--font-serif); font-style: italic;
    font-size: 44px; line-height: 1;
    color: var(--gold-warm);
  }
  .spot-number.lg{ font-size: clamp(72px, 8vw, 140px); }
  .spot-number.xl{ font-size: clamp(96px, 10vw, 180px); }
  .spot-chip{
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold-warm);
  }
  .spot-title{
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: 28px; line-height: 1.1;
    margin: 8px 0 10px;
    color: #fbf4e1;
  }
  .spot-copy{
    font-size: 15px; line-height: 1.6;
    color: rgba(241,230,204,0.78);
    max-width: 44ch;
    margin: 0;
  }

  /* --- Layout: stacked --- */
  .spots-grid--stacked{
    display: flex; flex-direction: column; gap: 72px;
    max-width: 1320px; margin: 0 auto;
  }
  .spot-row{
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .spot-row.is-flip{ grid-template-columns: 1fr 1.4fr; direction: rtl; }
  .spot-row.is-flip > *{ direction: ltr; }
  @media (max-width: 880px){
    .spot-row, .spot-row.is-flip{ grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  }
  .spot-row-frame{
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow:
      0 0 0 1px rgba(201,169,106,0.35),
      0 0 0 10px rgba(0,0,0,0.6),
      0 0 0 11px rgba(201,169,106,0.2),
      0 40px 80px -30px rgba(138,117,68,0.28);
  }
  .spot-row-body{
    display: flex; flex-direction: column; gap: 16px;
  }
  .spot-row-title{
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.05;
    margin: 0;
    color: #fbf4e1;
  }

  /* --- Layout: featured --- */
  .spots-featured{
    max-width: 1320px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .spot-featured{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (max-width: 880px){ .spot-featured{ grid-template-columns: 1fr; gap: 24px; } }
  .spot-featured-frame{
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow:
      0 0 0 1px rgba(201,169,106,0.4),
      0 0 0 12px rgba(0,0,0,0.6),
      0 0 0 13px rgba(201,169,106,0.25),
      0 60px 120px -40px rgba(201,169,106,0.25);
  }
  .spot-featured-body{ display: flex; flex-direction: column; gap: 12px; }
  .spot-thumbs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(201,169,106,0.18);
    padding-top: 32px;
  }
  .spot-thumb{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,106,0.18);
    border-radius: 4px;
    cursor: pointer;
    color: inherit;
    text-align: left;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
  }
  .spot-thumb:hover{ background: rgba(255,255,255,0.06); border-color: rgba(201,169,106,0.4); transform: translateY(-1px); }
  .spot-thumb.is-active{ background: rgba(201,169,106,0.12); border-color: var(--gold-warm); }
  .spot-thumb-num{
    font-family: var(--font-serif); font-style: italic;
    font-size: 32px; line-height: 1;
    color: var(--gold-warm);
  }
  .spot-thumb-title{
    font-family: var(--font-display); font-weight: 600;
    color: #fbf4e1;
    font-size: 15px;
  }
  .spot-thumb-chip{
    color: rgba(241,230,204,0.6);
    letter-spacing: 0.18em;
    font-size: 12px;
  }

  /* =================== CLOSING CTA ====================== */
  .closing{
    background: var(--mastro-blue);
    color: #fff;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .closing::before{
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(201,169,106,0.18), transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(24,170,80,0.12), transparent 55%);
    pointer-events: none;
  }
  .closing-inner{
    position: relative;
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .closing .eyebrow{ color: var(--gold-warm); }
  .closing h2{
    margin: 0;
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 1;
    max-width: 16ch;
    color: #fff;
  }
  .closing h2 em{
    color: var(--gold-warm); font-style: italic; font-weight: 600;
  }
  .closing p{
    max-width: 50ch;
    color: rgba(247,241,227,0.85);
    font-size: 17px;
  }
  .closing-actions{
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  }
  .closing-actions .btn-primary{
    background: var(--gold-warm);
    color: var(--mastro-blue-deep);
  }
  .closing-actions .btn-primary:hover{ background: #d8bb7c; }
  .closing-actions .btn-ghost{
    color: #fff;
    border-color: rgba(255,255,255,0.6);
  }
  .closing-bottom{
    position: relative;
    margin-top: 90px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    font-size: 12px;
    color: rgba(247,241,227,0.7);
    letter-spacing: 0.04em;
  }
  .closing-bottom .marks{ display: flex; align-items: center; gap: 18px; }
  .closing-bottom .marks img{ height: 28px; width: auto; opacity: 0.95; }

  /* =================== REVEAL ====================== */
  .reveal{ will-change: opacity, transform; }
  .motion-off .reveal{ transition: none !important; opacity: 1 !important; transform: none !important; }


  /* =================== TRANSLATION SPOT BAND ====================== */
  .spot-band{
    position: relative;
    height: 92vh;
    min-height: 600px;
    background: #050505;
    overflow: hidden;
    cursor: pointer;
  }
  .spot-band .hv-video-wrap{ position: absolute; inset: 0; }
  /* poster fallback behind a missing video */
  .spot-band .hv-video-wrap::after{
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse at 35% 30%, rgba(201,169,106,0.30) 0%, transparent 55%),
      radial-gradient(ellipse at 78% 78%, rgba(0,36,77,0.30) 0%, transparent 55%),
      linear-gradient(180deg, #14110b 0%, #1c1610 50%, #0b0805 100%);
  }
  .spot-band .hv-video{ z-index: 1; }
  .spot-band .hv-gradient{
    background:
      linear-gradient(180deg, rgba(6,4,3,0.55) 0%, rgba(6,4,3,0.2) 35%, rgba(6,4,3,0.35) 70%, rgba(6,4,3,0.8) 100%);
  }
  .spot-band-overlay{
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    gap: 26px;
    padding: 80px 32px;
    color: #f7f1e3;
    transition: opacity .5s ease;
  }
  .spot-band.is-engaged .spot-band-overlay{ opacity: 0; pointer-events: none; }
  .spot-band.is-engaged .hv-gradient{ opacity: 0; }
  .spot-band.is-engaged .spot-band-sub{ opacity: 0; }
  .spot-band.is-engaged .spot-band-hint{ opacity: 0; }

  /* dictionary-entry payoff: the word Mastro = master */
  .dict{ display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .dict-word{
    font-family: var(--font-serif);
    font-style: normal; font-weight: 500;
    font-size: clamp(80px, 11vw, 188px);
    line-height: 0.88;
    color: #fbf4e1;
    letter-spacing: -0.02em;
  }
  .dict-meta{
    font-family: var(--font-mono);
    font-size: 13.5px; letter-spacing: 0.26em; text-transform: uppercase;
    color: rgba(241,230,204,0.72);
  }
  .dict-trans{
    display: inline-flex; align-items: center; justify-content: center; gap: 18px;
    font-family: var(--font-serif);
    font-style: normal; font-weight: 400;
    font-size: clamp(40px, 5.2vw, 74px);
    line-height: 1;
    color: #f7f1e3;
    margin-top: 4px;
  }
  .dict-arrow{ color: var(--gold-warm); font-style: normal; font-size: 0.7em; }
  .dict-en{ color: var(--gold-warm); }
  .spot-band-line{
    margin: 12px 0 0;
    max-width: 34ch;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(17px, 1.8vw, 22px);
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: rgba(247,241,227,0.86);
  }
  .spot-band-line em{ color: var(--gold-warm); font-style: normal; }

  /* ambient lower-third lesson captions */
  .spot-band-sub{
    position: absolute;
    left: 40px; bottom: 32px;
    z-index: 4;
    transition: opacity .5s ease;
  }
  @media (max-width: 880px){ .spot-band-sub{ left: 22px; bottom: 26px; } }
  .cyc-sub{
    display: inline-flex; align-items: baseline; gap: 14px;
    opacity: 1;
  }
  @keyframes cyc-in{
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: none; }
  }
  .cyc-it{
    font-family: var(--font-serif); font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px);
    color: #f7f1e3;
    line-height: 1;
  }
  .cyc-arrow{ color: var(--gold-warm); font-family: var(--font-mono); font-size: 14px; }
  .cyc-en{
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold-warm);
  }
  .cyc-sub.is-word .cyc-it{ color: var(--gold-warm); }
  .motion-off .cyc-sub{ animation: none; }

  .spot-band-hint{
    position: absolute;
    left: 50%; bottom: 28px; transform: translateX(-50%);
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(241,230,204,0.55);
    display: inline-flex; align-items: center; gap: 10px;
    transition: opacity .4s ease;
  }
  .spot-band-hint::before,
  .spot-band-hint::after{
    content: ""; width: 24px; height: 1px;
    background: currentColor; opacity: 0.5;
  }
  @media (max-width: 880px){ .spot-band-hint{ display: none; } }

  /* ============================================================
     CLIENT FEEDBACK 2026-06 · Niveau Grotesk hero font + Navy-led palette
     ============================================================ */

  /* Niveau as hero font: big display headlines render light/roman, with the
     accent word italic + bronze. (These rules sit after the originals, so for
     equal specificity they win — no !important needed.) */
  .hv-headline, .hl-headline, .hs-headline,
  .story-text h2, .timeline-head h2,
  .spots-headline, .spot-row-title, .closing h2,
  .ph-headline{
    font-style: normal;
    font-weight: 300;
    letter-spacing: -0.02em;
  }
  .hv-headline em, .hl-headline em, .hs-headline .stack.gold,
  .story-text h2 em, .timeline-head h2 em,
  .spots-headline em, .closing h2 em, .ph-headline em{
    font-style: italic;
    font-weight: 400;
  }

  /* Legibility — client flagged sub-copy/first lines as too small */
  .eyebrow, .hv-eyebrow, .hl-meta .eyebrow{ font-size: 12.5px; }
  .hs-sub{ font-size: 19px; line-height: 1.65; max-width: 520px; }
  .story-text p{ font-size: 18px; line-height: 1.7; }
  .closing p{ font-size: 18px; line-height: 1.6; }
  .spots-lede{ font-size: 17px; }

  /* Story module → navy ground, white text, bronze anchor (slide 3) */
  .story{ background: var(--mastro-blue); color: #f3eedf; }
  .story::after{
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
      radial-gradient(ellipse at 12% 16%, rgba(201,169,106,0.14), transparent 46%),
      radial-gradient(ellipse at 92% 92%, rgba(201,169,106,0.08), transparent 52%);
  }
  .story .wrap{ position: relative; z-index: 1; }
  .story-text h2{ color: #ffffff; }
  .story-text p{ color: rgba(243,238,223,0.82); }
  .story .signature{ color: var(--gold-warm); }
  .story .signature .name{ color: rgba(243,238,223,0.6); }
  .story-frame{ background: var(--mastro-blue-deep); }
  .story-frame::before{ background: repeating-linear-gradient(135deg, rgba(201,169,106,0.20) 0 1px, transparent 1px 16px); }
  .story-frame .caption .num{ color: var(--gold-warm); }
  .story-frame .caption .place{ color: #f3eedf; }
  .story-frame .placeholder-label{ background: rgba(255,255,255,0.08); color: rgba(243,238,223,0.82); border-color: rgba(201,169,106,0.35); }
  .story-frame .frame-meta{ border-color: rgba(201,169,106,0.4); }

  /* Story box now holds the 1998-era anniversary film (spot-old) — 16:9 to match the source */
  .story-frame--video{ aspect-ratio: 16 / 9; }
  .story-frame--video::before{ display: none; }
  .story-video{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .story-frame-grad{
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(24,35,77,0.10) 0%, rgba(24,35,77,0) 35%, rgba(24,35,77,0.66) 100%);
    pointer-events: none;
  }
  .story-frame--video .caption{ z-index: 2; }
  .story-frame--video .caption .num{ color: #fff; }
  .story-frame--video .caption .place{ color: rgba(255,255,255,0.86); }
  .story-frame--video .frame-meta{ z-index: 2; }
  .story-unmute{ bottom: 16px; right: 16px; z-index: 3; }
  .story-frame--video .caption{ z-index: 3; }

  /* Translation spot — "For moments just like this" on its own line (slide 5) */
  .spot-band-line em{ display: block; margin-top: 4px; }

  /* Closing — navy + bronze (drop green glow per slide 6/7) */
  .closing::before{
    background:
      radial-gradient(ellipse at 20% 18%, rgba(201,169,106,0.16), transparent 50%),
      radial-gradient(ellipse at 82% 86%, rgba(201,169,106,0.08), transparent 55%);
  }

  /* ============================================================
     PRODUCT HIGHLIGHT — Red Wine Genoa (50th release) + Gran Piatto (slide 7)
     ============================================================ */
  .product{
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
    position: relative;
  }
  .product-head{
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    margin-bottom: 60px;
  }
  .ph-headline{
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05; color: var(--ink); margin: 0; max-width: 22ch;
  }
  .ph-lede{ max-width: 56ch; font-size: 18px; line-height: 1.6; color: var(--slate); margin: 0; }
  .product-grid{
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    max-width: 1080px; margin: 0 auto;
  }
  @media (max-width: 820px){ .product-grid{ grid-template-columns: 1fr; gap: 24px; } }
  .product-card{
    background: #fff;
    border: 1px solid rgba(37,52,112,0.12);
    border-radius: 6px;
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 30px 60px -42px rgba(37,52,112,0.45);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .product-card:hover{ transform: translateY(-3px); box-shadow: 0 44px 84px -42px rgba(37,52,112,0.55); }
  .product-shot{ position: relative; aspect-ratio: 4/3; background: var(--paper); }
  .product-shot--img{ background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 100%); }
  .product-shot--img::before, .product-shot--img::after{ display: none; }
  .product-shot img{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain; padding: 22px;
  }
  .product-shot::before{
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(37,52,112,0.10) 0 1px, transparent 1px 12px);
  }
  .product-shot::after{
    content: attr(data-label);
    position: absolute; left: 14px; bottom: 12px;
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--slate); background: rgba(255,255,255,0.7); padding: 3px 7px; border-radius: 2px;
  }
  .product-flag{
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; font-size: 12px; color: #fff;
    background: var(--mastro-blue); padding: 7px 13px; border-radius: 999px;
    white-space: nowrap;
  }
  .product-info{ padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .product-kicker{
    font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; font-size: 12px; color: var(--accent);
  }
  .product-name{
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; color: var(--ink); margin: 0;
  }
  .product-meta{
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--slate);
  }
  .product-desc{ font-size: 16.5px; line-height: 1.62; color: var(--slate); margin: 0; flex: 1; }
  .product-link{
    align-self: flex-start; margin-top: 10px;
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; font-size: 12px; color: var(--mastro-blue);
    text-decoration: none;
  }
  .product-link:hover{ color: var(--mastro-blue-deep); }
  .product-link .arrow{ width: 14px; height: 10px; }

  /* --- WordPress handoff additions --- */
  .lang-toggle a{ text-decoration: none; line-height: 1; }
  /* Respect OS-level reduced-motion: never leave content hidden */
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
    .cyc-sub{ animation: none !important; }
  }
