
@font-face {
  font-family: "Helvetica Neue LT GEO";
  src: url("assets/HELVETICANEUELTGEO-55ROMAN.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue LT GEO";
  src: url("assets/HELVETICANEUELTGEO-75BOLD.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto Local";
  src: url("assets/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto Local";
  src: url("assets/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
}

:root{
  --bg-dark:#000;
  --bg-light:#f2f2f2;
  --text-dark:#0c0c0c;
  --text-light:#f3f3f3;
  --text-muted:#5a5a5a;
  --accent:#e92729;
  --border:#b9b9b9;

  --container:min(100% - 48px, 1360px);
  --hero-h:clamp(540px, 72vh, 860px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg-dark);
  color:var(--text-dark);
  font-family:"Helvetica Neue LT GEO", Arial, sans-serif;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input{font:inherit}

.container{
  width:var(--container);
  margin:0 auto;
  position:relative;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#000;
}
.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-logo{width:clamp(92px, 7vw, 120px)}
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;
  color:#fff;
}
.lang-switch{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1;
}
.lang-btn{
  border:0;
  background:none;
  color:#fff;
  padding:0;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:10px;
  cursor:pointer;
}
.icon-btn{
  width:22px;
  height:22px;
  border:0;
  background:none;
  color:#fff;
  padding:0;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-btn svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
}
.menu-btn{
  border:0;
  background:none;
  color:#fff;
  padding:0;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}
.menu-icon{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.menu-icon i{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease;
}
.menu-label{
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:12px;
  font-weight:700;
}
body.nav-open .menu-icon i:nth-child(1){transform:translateY(6px) rotate(45deg)}
body.nav-open .menu-icon i:nth-child(2){opacity:0}
body.nav-open .menu-icon i:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-nav{
  display:none;
  background:#0b0b0b;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-nav-links{
  width:var(--container);
  margin:0 auto;
  padding:12px 0 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-nav-links a{
  color:#fff;
  font-size:14px;
}

.hero{
  position:relative;
  min-height:var(--hero-h);
  overflow:hidden;
  background:#180203;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.06), rgba(0,0,0,.02) 46%, rgba(0,0,0,.14));
}
.hero-inner{
  min-height:var(--hero-h);
  display:grid;
  grid-template-columns:minmax(0, 1fr) 250px;
  gap:48px;
  position:relative;
  z-index:1;
}
.hero-copy{
  padding-top:clamp(48px, 8vh, 96px);
  color:#fff;
}
.hero-copy h1{
  margin:0;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(42px, 5vw, 72px);
  line-height:1.03;
  letter-spacing:-0.04em;
  font-weight:400;
  max-width:620px;
}
.hero-copy h1 strong{font-weight:900}
.hero-link,
.hero-signup{
  position:absolute;
  left:0;
  bottom:clamp(28px, 5vh, 48px);
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(14px, 1.4vw, 18px);
  font-weight:900;
}
.hero-signup svg{
  width:clamp(18px, 1.6vw, 24px);
  height:clamp(18px, 1.6vw, 24px);
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.desktop-menu{
  align-self:start;
  margin-top:88px;
  display:grid;
  grid-template-columns:1px 1fr;
  gap:18px;
}
.desktop-menu-line{
  background:rgba(255,255,255,.92);
  min-height:250px;
}
.desktop-menu-links{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.desktop-menu-links a{
  color:#fff;
  font-size:14px;
  line-height:1.45;
}

.section.light,
.section-light{
  background:var(--bg-light);
}
.section-head{
  display:flex;
  align-items:flex-start;
}
.section-head h2,
.section-head h3{
  margin:0;
  font-weight:700;
  line-height:1.02;
  letter-spacing:-0.04em;
}
.section-head h2{
  font-size:clamp(28px, 2.4vw, 38px);
}
.section-head h3{
  font-size:clamp(28px, 2.2vw, 34px);
}
.split{
  justify-content:space-between;
  border-bottom:1px solid var(--border);
  padding-bottom:16px;
  margin-top: 60px;
}
.accent{color:var(--accent)}
.ghost-arrow{
  width:24px;
  height:24px;
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
}
.ghost-arrow svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:#ececec;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.intro{
  padding:26px 0 32px;
}
.intro-copy{
  margin-top:60px;
  max-width:1120px;
  font-size:clamp(15px, 1.2vw, 18px);
  line-height:1.38;
  position:relative;
  z-index:1;
}
.blob{
  position:absolute;
  opacity:.09;
  pointer-events:none;
  background:
    radial-gradient(circle at 34% 10%, #000 0 16px, transparent 17px),
    radial-gradient(circle at 74% 22%, #000 0 25px, transparent 26px),
    radial-gradient(circle at 56% 46%, #000 0 38px, transparent 39px),
    radial-gradient(circle at 36% 72%, #000 0 24px, transparent 25px),
    radial-gradient(circle at 86% 82%, #000 0 28px, transparent 29px);
}
.blob-intro{
  right:-40px;
  top:52px;
  width:340px;
  height:210px;
}

.news{
  padding:4px 0 34px;
}
.line{
  gap:14px;
  margin-bottom:24px;
  margin-top: 60px;
}
.line::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--border);
  margin-top:18px;
}
.news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  margin-bottom: 60px;
  gap:30px;
  position:relative;
  z-index:1;
}
.news-thumb{
  display:block;
  position:relative;
  overflow:hidden;
}
.news-thumb img{
  width:100%;
  aspect-ratio: 1.7 / 1;
  object-fit:cover;
}
.news-arrow{
  position:absolute;
  right:0;
  bottom:0;
  width:58px;
  height:22px;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
}
.news-arrow svg{
  width:12px;
  height:12px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.news-card h4{
  margin:14px 0 6px;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:15px;
  font-weight:400;
}
.news-card p{
  margin:0;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:10px;
  color:var(--text-muted);
}
.blob-news{
  right:-40px;
  bottom:-40px;
  width:340px;
  height:250px;
}

.mesa{
  display:grid;
  grid-template-columns:2fr 1.05fr;
  min-height:420px;
  background:#ff0000;
}
.mesa-image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.mesa-copy{
  background:#c91b12;
  color:#fff;
  padding:40px 44px 28px;
  display:flex;
  flex-direction:column;
}
.mesa-logo{
  width:92px;
  margin-bottom:28px;
}
.mesa-copy h3{
  margin:0 0 16px;
  font-size:clamp(28px, 2vw, 36px);
  line-height:1.08;
  font-weight:400;
}
.mesa-copy p{
  margin:0;
  max-width:300px;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(14px, 1vw, 16px);
  line-height:1.45;
  color:#efefef;
}
.mesa-link{
  margin-top:auto;
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.mesa-link svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.partners{
  padding:4px 0 30px;
}
.partners-box{
  margin-top:12px;
  border:1px solid #9e9e9e;
  padding:36px 24px;
}
.partners-box img{
  width:100%;
  max-width:620px;
  margin:0 auto;
}

.contact{
  padding:4px 0 26px;
}
.contact-grid{
  display:grid;
  grid-template-columns:minmax(320px, 360px) minmax(420px, 1fr);
  justify-content:space-between;
  gap:48px;
  align-items:start;
}
.contact-form{
  padding-top:2px;
}
.field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.contact-form label{
  display:flex;
  flex-direction:column;
  margin-bottom:10px;
}
.contact-form input[type="text"],
.contact-form input[type="email"]{
  border:0;
  border-bottom:1px solid #bcbcbc;
  background:transparent;
  height:24px;
  padding:0;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:13px;
  outline:none;
}
.checkbox-row{
  flex-direction:row !important;
  align-items:flex-start;
  gap:8px;
  margin-top:8px;
}
.checkbox-row input{
  width:10px;
  height:10px;
  margin-top:2px;
}
.checkbox-row span{
  max-width:250px;
  font-size:10px !important;
}
.submit-btn{
  margin-top:12px;
  min-width:82px;
  height:32px;
  border:0;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:12px;
  cursor:pointer;
}
.contact-image img{
  width:100%;
  aspect-ratio: 2.05 / 1;
  object-fit:cover;
}

.cta{
  background:var(--accent);
  color:#fff;
}
.cta-inner{
  min-height:112px;
  padding:0 40px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:46px;
  align-items:center;
}
.cta-logo{width:82px}
.cta-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.cta-socials{
  display:flex;
  align-items:center;
  gap:12px;
}
.cta-socials a{
  color:#fff;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:16px;
  font-weight:700;
  position:relative;
}
.cta-socials a + a::before{
  content:"";
  position:absolute;
  left:-7px;
  top:1px;
  width:1px;
  height:13px;
  background:rgba(255,255,255,.84);
}
.cta-touch{
  color:#fff;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.cta-touch svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer{
  background:#000;
  color:#fff;
  padding:18px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.27fr 1fr;
  gap:24px;
}
.footer-copy,
.footer-right p,
.footer-links a{
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:10px;
  line-height:1.22;
  color:#f2f2f2;
}
.footer-copy p,
.footer-right p{
  margin:0 0 4px;
}
.footer-meta{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-copy br{display:block; margin:6px 0}

@media (max-width: 1500px){
  body{min-width:0}
  .site-desktop{width:100%}
  .site-header,.hero,.section,.mesa,.cta,.footer{width:100%}
}

@media (max-width: 1100px){
  :root{
    --container:min(100% - 28px, 100%);
    --hero-h:620px;
  }
  .hero-inner{
    grid-template-columns:1fr;
    gap:24px;
  }
  .desktop-menu{display:none}
  .mobile-nav{display:block}
  body:not(.nav-open) .mobile-nav{display:none}
  .hero-copy h1{
    font-size:clamp(36px, 9vw, 54px);
    max-width:480px;
  }
  .hero-signup{
    position:static;
    margin-top:28px;
  }
  .news-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .mesa{
    grid-template-columns:1fr;
  }
  .mesa-image img{
    min-height:320px;
  }
  .contact-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .contact-image img{
    max-width:100%;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-meta{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 700px){
  :root{
    --container:min(100% - 20px, 100%);
    --hero-h:540px;
  }
  .header-inner{
    min-height:60px;
  }
  .header-actions{
    gap:12px;
  }
  .brand-logo{
    width:84px;
  }
  .lang-btn{font-size:7px}
  .menu-label{font-size:11px}
  .icon-btn,.icon-btn svg{width:18px;height:18px}
  .hero-copy{
    padding-top:28px;
  }
  .hero-copy h1{
    font-size:32px;
    max-width:320px;
  }
  .section-head h2,
  .section-head h3{
    font-size:22px;
  }
  .intro-copy{
    font-size:13px;
  }
  .news-card h4{
    font-size:13px;
  }
  .news-card p{
    font-size:9px;
  }
  .mesa-copy{
    padding:24px 20px 18px;
  }
  .mesa-logo{
    width:72px;
    margin-bottom:18px;
  }
  .mesa-copy h3{
    font-size:22px;
  }
  .mesa-copy p{
    font-size:13px;
  }
  .field-grid{
    grid-template-columns:1fr;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"]{
    height:22px;
    font-size:12px;
  }
  .contact-label,
  .checkbox-row span{
    font-size:9px !important;
  }
  .cta-inner{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px 0;
    justify-items:start;
  }
  .cta-center{
    align-items:flex-start;
  }
  .cta-logo{
    width:70px;
  }
  .cta-touch{
    font-size:15px;
  }
  .footer-copy,
  .footer-right p,
  .footer-links a{
    font-size:9px;
  }
  .footer-meta{
    grid-template-columns:1fr;
    gap:16px;
  }
}


/* Modern motion enhancements */
:root{
  --ease-smooth:cubic-bezier(.22,.8,.2,1);
}

body{
  overflow-x:hidden;
}

.site-header{
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

.brand-logo,
.news-thumb img,
.contact-image img,
.mesa-image img{
  transition: transform .7s var(--ease-smooth), filter .5s ease, opacity .3s ease;
}

.brand:hover .brand-logo{
  transform: translateY(-1px);
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto auto -15% -10%;
  width:38vw;
  height:38vw;
  max-width:580px;
  max-height:580px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(233,39,41,.28), rgba(233,39,41,0));
  filter: blur(30px);
  pointer-events:none;
  animation: floatGlow 8s ease-in-out infinite;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  top:-10%;
  right:-5%;
  width:26vw;
  height:26vw;
  max-width:420px;
  max-height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0));
  filter: blur(20px);
  pointer-events:none;
  animation: floatGlow 10s ease-in-out infinite reverse;
  z-index:0;
}

.hero-copy,
.desktop-menu,
.intro-copy,
.news-card,
.mesa-copy,
.partners-box,
.contact-form,
.contact-image,
.cta-inner,
.footer-grid{
  opacity:0;
  transform: translateY(18px);
}

.desktop-menu{
  transform: translateX(20px);
}

.hero-copy.is-visible,
.desktop-menu.is-visible,
.intro-copy.is-visible,
.news-card.is-visible,
.mesa-copy.is-visible,
.partners-box.is-visible,
.contact-form.is-visible,
.contact-image.is-visible,
.cta-inner.is-visible,
.footer-grid.is-visible{
  opacity:1;
  transform:none;
  transition:
    transform .8s var(--ease-smooth),
    opacity .7s ease;
}

.hero-copy.is-visible{ transition-delay:.05s; }
.desktop-menu.is-visible{ transition-delay:.18s; }

.hero-copy h1{
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-signup,
.hero-link,
.cta-touch,
.mesa-link,
.submit-btn,
.news-thumb,
.menu-btn,
.lang-btn,
.icon-btn,
.desktop-menu-links a,
.mobile-nav-links a,
.footer-links a{
  transition:
    transform .28s var(--ease-smooth),
    opacity .25s ease,
    color .25s ease,
    background-color .25s ease,
    box-shadow .28s ease;
}

.hero-signup:hover,
.hero-link:hover,
.cta-touch:hover{
  transform: translateX(5px);
}

.desktop-menu-links a:hover,
.mobile-nav-links a:hover,
.footer-links a:hover,
.lang-btn:hover{
  opacity:.8;
}

.news-thumb{
  border-radius: 2px;
  overflow:hidden;
}
.news-card:hover .news-thumb img{
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}
.news-card:hover{
  transform: translateY(-6px);
  transition: transform .35s var(--ease-smooth);
}

.news-arrow{
  transition: width .28s var(--ease-smooth), background-color .25s ease;
}
.news-card:hover .news-arrow{
  width:66px;
}

.mesa-copy{
  position:relative;
  overflow:hidden;
}
.mesa-copy::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0) 35%);
  pointer-events:none;
}
.mesa-link:hover{
  transform: translate(3px,-3px);
}

.partners-box{
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease, border-color .25s ease;
}
.partners-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.2);
}

.contact-form{
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease;
}
.contact-form:hover{
  transform: translateY(-3px);
}
.contact-form input[type="text"],
.contact-form input[type="email"]{
  transition: border-color .25s ease, transform .2s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus{
  border-bottom-color: var(--accent);
}
.submit-btn{
  box-shadow: 0 10px 24px rgba(233,39,41,.18);
}
.submit-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(233,39,41,.26);
}

.cta{
  position:relative;
  overflow:hidden;
}
.cta::before{
  content:"";
  position:absolute;
  inset:auto -8% -70% auto;
  width:320px;
  height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0));
  filter: blur(18px);
  pointer-events:none;
}

.mobile-nav{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s var(--ease-smooth), opacity .35s ease, padding .35s ease;
  opacity:0;
}
body.nav-open .mobile-nav{
  max-height:280px;
  opacity:1;
}

@media (min-width: 1101px){
  .hero-menu{
    opacity:1;
    transform:none;
    pointer-events:auto;
  }
  .hero-menu-line{
    height:252px;
  }
  .desktop-menu-links a{
    position:relative;
    width:max-content;
  }
  .desktop-menu-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:1px;
    background:currentColor;
    transition: width .28s var(--ease-smooth);
  }
  .desktop-menu-links a:hover::after{
    width:100%;
  }
}

.menu-button,
.menu-btn{
  position:relative;
}
.menu-btn .menu-icon i{
  transform-origin:center;
}

.mobile-nav-links a{
  transform: translateY(10px);
  opacity:0;
}
body.nav-open .mobile-nav-links a{
  transform:none;
  opacity:1;
  transition: transform .38s var(--ease-smooth), opacity .3s ease;
}
body.nav-open .mobile-nav-links a:nth-child(1){ transition-delay:.04s; }
body.nav-open .mobile-nav-links a:nth-child(2){ transition-delay:.08s; }
body.nav-open .mobile-nav-links a:nth-child(3){ transition-delay:.12s; }
body.nav-open .mobile-nav-links a:nth-child(4){ transition-delay:.16s; }
body.nav-open .mobile-nav-links a:nth-child(5){ transition-delay:.20s; }

@keyframes floatGlow{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-12px,0) scale(1.04); }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}


/* Enhanced open/close menu animation */
.menu-btn .menu-label{
  transition: transform .28s var(--ease-smooth), opacity .22s ease;
}
.menu-btn:hover .menu-label{
  transform: translateX(2px);
}

.menu-icon i{
  transition:
    transform .35s var(--ease-smooth),
    opacity .22s ease,
    width .22s ease,
    background-color .22s ease;
}
.menu-btn:hover .menu-icon i:nth-child(2){
  width:14px;
}

body.nav-open .menu-btn .menu-label{
  transform: translateX(1px);
}

.mobile-nav{
  transform-origin: top center;
}
.mobile-nav-links{
  transform: translateY(-4px);
  transition: transform .38s var(--ease-smooth);
}
body.nav-open .mobile-nav-links{
  transform: translateY(0);
}

@media (max-width: 1100px){
  .mobile-nav{
    background:
      linear-gradient(180deg, rgba(12,12,12,.98), rgba(12,12,12,.96)),
      radial-gradient(circle at top right, rgba(233,39,41,.18), rgba(233,39,41,0) 40%);
  }

  .mobile-nav-links{
    position: relative;
  }

  .mobile-nav-links::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:1px;
    height:100%;
    background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
    opacity:.8;
  }

  .mobile-nav-links a{
    padding-left:16px;
    position:relative;
  }

  .mobile-nav-links a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:0;
    height:1px;
    background:#fff;
    transform:translateY(-50%);
    transition: width .28s var(--ease-smooth), opacity .22s ease;
    opacity:.6;
  }

  .mobile-nav-links a:hover::before{
    width:10px;
  }
}


/* Fullscreen overlay menu */
.overlay-menu{
  position:fixed;
  inset:72px 0 0 0;
  z-index:45;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .45s ease, visibility .45s ease;
}
.overlay-menu-bg{
  position:absolute;
  inset:0;
  background:rgba(233,39,41,.78);
  backdrop-filter: blur(2px);
}
.overlay-menu-inner{
  position:relative;
  z-index:1;
  min-height:calc(100vh - 72px);
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  gap:22px;
  padding-top:88px;
  padding-right:48px;
}
.overlay-menu-line{
  width:1px;
  height:242px;
  background:rgba(255,255,255,.72);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .42s var(--ease-smooth);
}
.overlay-menu-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.overlay-menu-links a{
  color:#fff;
  font-family:"Helvetica Neue LT GEO", Arial, sans-serif;
  font-size:14px;
  line-height:1.4;
  opacity:0;
  transform:translateX(18px);
  transition:
    transform .38s var(--ease-smooth),
    opacity .28s ease;
}
.overlay-menu-links a:hover{
  opacity:.78;
  transform:translateX(6px);
}

body.nav-open{
  overflow:hidden;
}
body.nav-open .overlay-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
body.nav-open .overlay-menu-line{
  transform:scaleY(1);
}
body.nav-open .overlay-menu-links a{
  opacity:1;
  transform:none;
}
body.nav-open .overlay-menu-links a:nth-child(1){transition-delay:.06s}
body.nav-open .overlay-menu-links a:nth-child(2){transition-delay:.10s}
body.nav-open .overlay-menu-links a:nth-child(3){transition-delay:.14s}
body.nav-open .overlay-menu-links a:nth-child(4){transition-delay:.18s}
body.nav-open .overlay-menu-links a:nth-child(5){transition-delay:.22s}
body.nav-open .overlay-menu-links a:nth-child(6){transition-delay:.26s}
body.nav-open .overlay-menu-links a:nth-child(7){transition-delay:.30s}
body.nav-open .overlay-menu-links a:nth-child(8){transition-delay:.34s}

/* Menu button state */
body.nav-open .site-header{
  box-shadow:none;
}
body.nav-open .menu-btn .menu-label{
  transform:translateX(1px);
}
body.nav-open .hero-overlay{
  background:linear-gradient(90deg, rgba(242,40,40,.32), rgba(242,40,40,.32));
}

@media (max-width: 1100px){
  .overlay-menu{
    inset:60px 0 0 0;
  }
  .overlay-menu-inner{
    min-height:calc(100vh - 60px);
    padding-top:52px;
    padding-right:14px;
    justify-content:flex-start;
  }
  .overlay-menu-line{
    height:208px;
  }
  .overlay-menu-links a{
    font-size:16px;
  }
  .desktop-menu{
    display:none;
  }
}
@media (max-width: 700px){
  .overlay-menu-inner{
    gap:14px;
    padding-top:34px;
    padding-right:0;
  }
  .overlay-menu-line{
    height:176px;
  }
  .overlay-menu-links a{
    font-size:13px;
    line-height:1.34;
  }
}


/* Refined menu behavior: hidden by default + smoother cinematic animation */
.overlay-menu{
  display:block;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.overlay-menu-bg{
  opacity:0;
  transform:scale(1.04);
  transition:
    opacity .55s cubic-bezier(.22,.8,.2,1),
    transform .75s cubic-bezier(.22,.8,.2,1);
}

.overlay-menu-inner{
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity .38s ease,
    transform .65s cubic-bezier(.22,.8,.2,1);
}

.overlay-menu-line{
  opacity:0;
  transform:scaleY(.2);
  transform-origin:top;
  transition:
    opacity .25s ease,
    transform .55s cubic-bezier(.22,.8,.2,1);
}

.overlay-menu-links a{
  opacity:0;
  transform:translateY(16px) translateX(12px);
  filter:blur(3px);
  transition:
    transform .55s cubic-bezier(.22,.8,.2,1),
    opacity .35s ease,
    filter .45s ease;
}

body.nav-open .overlay-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.nav-open .overlay-menu-bg{
  opacity:1;
  transform:scale(1);
}

body.nav-open .overlay-menu-inner{
  opacity:1;
  transform:translateY(0);
}

body.nav-open .overlay-menu-line{
  opacity:1;
  transform:scaleY(1);
}

body.nav-open .overlay-menu-links a{
  opacity:1;
  transform:translateY(0) translateX(0);
  filter:blur(0);
}

body:not(.nav-open) .overlay-menu-links a{
  transition-delay:0s !important;
}

body.nav-open .overlay-menu-links a:nth-child(1){transition-delay:.08s}
body.nav-open .overlay-menu-links a:nth-child(2){transition-delay:.12s}
body.nav-open .overlay-menu-links a:nth-child(3){transition-delay:.16s}
body.nav-open .overlay-menu-links a:nth-child(4){transition-delay:.20s}
body.nav-open .overlay-menu-links a:nth-child(5){transition-delay:.24s}
body.nav-open .overlay-menu-links a:nth-child(6){transition-delay:.28s}
body.nav-open .overlay-menu-links a:nth-child(7){transition-delay:.32s}
body.nav-open .overlay-menu-links a:nth-child(8){transition-delay:.36s}

.menu-btn .menu-icon i{
  transition:
    transform .42s cubic-bezier(.22,.8,.2,1),
    opacity .22s ease,
    width .22s ease,
    background-color .22s ease;
}

body.nav-open .menu-icon i:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
body.nav-open .menu-icon i:nth-child(2){
  opacity:0;
  transform:scaleX(.5);
}
body.nav-open .menu-icon i:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* =========================
   News pages
========================= */
.news-page-body{
  background:var(--bg-light);
}

.news-hero-block{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at left top, rgba(233,39,41,.16), rgba(233,39,41,0) 34%),
    linear-gradient(180deg, #0b0b0b 0%, #111 46%, #f2f2f2 46%, #f2f2f2 100%);
  padding:42px 0 72px;
}
.news-hero-inner{
  color:#fff;
  max-width:860px;
  padding:72px 0 24px;
}
.news-kicker,
.single-news-meta,
.news-list-date,
.news-meta-row,
.sidebar-label{
  font-family:"Roboto Local", Arial, sans-serif;
  letter-spacing:.04em;
}
.news-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
  font-size:12px;
  color:#fff;
}
.news-hero-inner h1{
  margin:20px 0 16px;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(34px, 4.6vw, 62px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:760px;
}
.news-hero-inner p{
  margin:0;
  max-width:660px;
  font-size:clamp(15px, 1.3vw, 18px);
  line-height:1.55;
  color:rgba(255,255,255,.82);
}
.news-highlight{
  margin-top:-36px;
  padding-bottom:28px;
}
.featured-news-card{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:0;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}
.featured-news-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.featured-news-copy{
  padding:42px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.news-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-size:12px;
  color:#707070;
}
.news-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(233,39,41,.1);
  color:var(--accent);
  font-weight:700;
}
.featured-news-copy h2{
  margin:18px 0 14px;
  font-size:clamp(28px, 2.4vw, 42px);
  line-height:1.06;
  letter-spacing:-.04em;
}
.featured-news-copy p{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:var(--text-muted);
}
.news-readmore,
.news-inline-link,
.back-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--accent);
  font-family:"Roboto Local", Arial, sans-serif;
  font-weight:700;
}
.news-readmore{
  margin-top:28px;
}
.news-readmore svg,
.back-link svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.news-list-head{
  margin-bottom:28px;
}
.news-archive{
  padding:6px 0 72px;
}
.news-list-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}
.news-list-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  transition:transform .35s var(--ease-smooth), box-shadow .35s ease;
}
.news-list-card:hover,
.featured-news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(0,0,0,.12);
}
.news-list-image{
  display:block;
  overflow:hidden;
}
.news-list-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .7s var(--ease-smooth);
}
.news-list-card:hover .news-list-image img,
.featured-news-card:hover .featured-news-media img{
  transform:scale(1.05);
}
.news-list-content{
  padding:26px 24px 24px;
}
.news-list-date{
  display:block;
  font-size:12px;
  color:#747474;
  margin-bottom:10px;
}
.news-list-content h3{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.03em;
}
.news-list-content h3 a{
  transition:color .25s ease;
}
.news-list-content h3 a:hover{ color:var(--accent); }
.news-list-content p{
  margin:0 0 18px;
  color:var(--text-muted);
  line-height:1.6;
  font-size:15px;
}
.news-inline-link{
  font-size:14px;
}

.single-news-hero{
  background:
    linear-gradient(180deg, #0b0b0b 0%, #131313 62%, #f2f2f2 62%, #f2f2f2 100%);
  padding:40px 0 64px;
}
.single-news-grid{
  display:grid;
  gap:28px;
}
.single-news-top{
  color:#fff;
  max-width:860px;
  padding-top:52px;
}
.back-link{
  color:#fff;
  opacity:.9;
  margin-bottom:18px;
}
.single-news-meta{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.72);
  margin-bottom:14px;
}
.single-news-top h1{
  margin:0 0 18px;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(34px, 4.3vw, 58px);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:900px;
}
.single-news-lead{
  margin:0;
  max-width:760px;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.82);
}
.single-news-cover{
  position:relative;
 
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
  cursor:pointer;
  isolation:isolate;
}
.single-news-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.42) 100%);
  z-index:1;
  transition:opacity .35s ease;
}
.single-news-cover img{
  width:100%;
  min-height:420px;
  max-height:620px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .6s ease;
}
.single-news-cover-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:22px;
  pointer-events:none;
}
.single-news-cover-tag{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}
.single-news-cover-hover{
  align-self:flex-end;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
  color:#fff;
  transform:translateY(12px);
  opacity:0;
  transition:transform .35s ease, opacity .35s ease, background .35s ease;
}
.single-news-cover-hover span{
  font-size:14px;
  font-weight:700;
}
.single-news-cover-hover svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.single-news-cover:hover img{
  transform:scale(1.06);
}
.single-news-cover:hover::after{
  opacity:.92;
}
.single-news-cover:hover .single-news-cover-hover{
  opacity:1;
  transform:translateY(0);
  background:rgba(163,16,24,.86);
}
.single-news-content-wrap{
  padding:26px 0 76px;
}
.single-news-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:34px;
  align-items:start;
}
.single-news-article{
  background:#fff;
  border-radius:28px;
  padding:38px 36px;
  box-shadow:0 18px 52px rgba(0,0,0,.08);
}
.single-news-article p,
.single-news-article li{
  font-size:16px;
  line-height:1.8;
  color:#303030;
}
.single-news-article h2{
  margin:34px 0 16px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.03em;
}
.single-news-article ul{
  margin:0 0 18px;
  padding-left:22px;
}
.single-news-article blockquote{
  margin:28px 0;
  padding:22px 24px;
  border-left:4px solid var(--accent);
  border-radius:0 18px 18px 0;
  background:rgba(233,39,41,.05);
  font-size:18px;
  line-height:1.7;
  color:#171717;
}
.single-news-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.sidebar-card{
  background:#fff;
  border-radius:24px;
  padding:24px 22px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}
.sidebar-label{
  display:block;
  margin-bottom:10px;
  font-size:12px;
  color:#707070;
}
.sidebar-card strong{
  font-size:18px;
  line-height:1.4;
  color:#111;
}
.share-links,
.sidebar-related{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.share-links a,
.sidebar-related a{
  color:#272727;
  line-height:1.5;
  transition:color .25s ease, transform .25s ease;
}
.share-links a:hover,
.sidebar-related a:hover{
  color:var(--accent);
  transform:translateX(3px);
}

.reveal-up,
.featured-news-card,
.news-list-card,
.single-news-top,
.single-news-cover,
.single-news-article,
.single-news-sidebar{
  opacity:0;
  transform:translateY(18px);
}
.reveal-up.is-visible,
.featured-news-card.is-visible,
.news-list-card.is-visible,
.single-news-top.is-visible,
.single-news-cover.is-visible,
.single-news-article.is-visible,
.single-news-sidebar.is-visible{
  opacity:1;
  transform:none;
  transition:transform .8s var(--ease-smooth), opacity .7s ease;
}

@media (max-width: 1100px){
  .featured-news-card,
  .single-news-layout{
    grid-template-columns:1fr;
  }
  .featured-news-media img{
    min-height:300px;
  }
  .news-list-grid{
    grid-template-columns:1fr;
  }
  .single-news-cover img{
    min-height:320px;
  }
}

@media (max-width: 700px){
  .news-hero-block,
  .single-news-hero{
    padding-top:18px;
  }
  .news-hero-inner,
  .single-news-top{
    padding-top:34px;
  }
  .featured-news-copy,
  .single-news-article{
    padding:24px 20px;
  }
  .news-list-content{
    padding:20px 18px 18px;
  }
  .featured-news-copy h2,
  .news-list-content h3,
  .single-news-article h2{
    font-size:22px;
  }
  .featured-news-copy p,
  .single-news-article p,
  .single-news-article li,
  .single-news-lead{
    font-size:15px;
  }
  .single-news-cover,
  .featured-news-card,
  .news-list-card,
  .sidebar-card,
  .single-news-article{
    border-radius:20px;
  }
}


/* =========================
   News page premium refresh
========================= */
.news-hero-premium{
  padding-bottom:48px;
}
.news-hero-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) 360px;
  gap:28px;
  align-items:end;
}
.news-hero-main{
  color:#fff;
  max-width:860px;
  padding:78px 0 12px;
}
.news-hero-side{
  display:grid;
  gap:18px;
  padding-top:86px;
}
.news-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.news-primary-btn,
.news-primary-btn-light{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-family:"Roboto Local", Arial, sans-serif;
  font-weight:700;
  box-shadow:0 18px 40px rgba(163,16,24,.28);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.news-primary-btn svg,
.news-primary-btn-light svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.news-primary-btn:hover,
.news-primary-btn-light:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 44px rgba(163,16,24,.36);
}
.news-primary-btn-light{
  background:#fff;
  color:#111;
  box-shadow:none;
}
.news-mini-search{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  backdrop-filter:blur(8px);
}
.news-mini-search svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.9;
}
.news-topic-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.topic-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.84);
  font-size:13px;
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.topic-pill.is-active,
.topic-pill:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
}
.news-hero-glass-card,
.hero-side-spotlight{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  box-shadow:0 22px 50px rgba(0,0,0,.16);
}
.news-hero-glass-card{
  padding:24px 22px;
  color:#fff;
}
.glass-label,
.section-mini{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"Roboto Local", Arial, sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(255,255,255,.72);
}
.news-hero-stats{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:18px;
}
.news-hero-stats div{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.news-hero-stats div:last-child{ border-bottom:none; padding-bottom:0; }
.news-hero-stats strong{
  font-size:30px;
  line-height:1;
  color:#fff;
}
.news-hero-stats span{
  max-width:140px;
  text-align:right;
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.4;
}
.hero-side-spotlight{
  min-height:300px;
  display:block;
  isolation:isolate;
}
.hero-side-spotlight img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s var(--ease-smooth);
}
.hero-side-spotlight::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.66) 100%);
  z-index:1;
}
.hero-side-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  color:#fff;
}
.hero-side-badge,
.image-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-side-badge{ align-self:flex-start; margin-bottom:auto; }
.hero-side-overlay h3{
  margin:18px 0 10px;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.03em;
}
.hero-side-link{
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.84);
  font-weight:700;
}
.hero-side-spotlight:hover img{ transform:scale(1.08); }
.news-live-strip{
  margin-top:-10px;
  padding-bottom:14px;
}
.news-live-inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 45px rgba(0,0,0,.06);
}
.news-live-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  font-family:"Roboto Local", Arial, sans-serif;
  font-weight:700;
  color:#111;
}
.news-live-label .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 7px rgba(233,39,41,.12);
}
.news-live-inner p{
  margin:0;
  color:#4b4b4b;
  line-height:1.6;
}
.news-premium-feature{
  padding:18px 0 30px;
}
.news-premium-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:28px;
  align-items:stretch;
}
.featured-news-card-xl .featured-news-media img{
  min-height:500px;
}
.editorial-stack{
  display:grid;
  gap:18px;
}
.editorial-mini-card{
  border-radius:24px;
  padding:24px 22px;
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:0 16px 44px rgba(0,0,0,.08);
}
.editorial-accent-red{
  background:linear-gradient(180deg, #d7282a 0%, #a31018 100%);
  color:#fff;
}
.editorial-dark{
  background:#111;
  color:#fff;
}
.editorial-label{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.editorial-mini-card h3{
  margin:18px 0 12px;
  font-size:26px;
  line-height:1.08;
  letter-spacing:-.03em;
}
.editorial-mini-card p{
  margin:0 0 18px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}
.editorial-mini-card a{
  display:inline-flex;
  align-items:center;
  color:#fff;
  font-weight:700;
}
.news-list-head-rich{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
}
.news-list-head-rich .section-mini{
  color:#8e8e8e;
  margin-bottom:10px;
}
.news-list-head-rich p{
  max-width:420px;
  margin:0;
  color:#6a6a6a;
  line-height:1.6;
}
.news-masonry-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  align-items:start;
}
.news-list-card-premium{
  position:relative;
  border:1px solid rgba(15,15,15,.05);
}
.news-list-card-premium .news-list-content{
  padding:24px 24px 22px;
}
.news-list-image{
  position:relative;
}
.news-list-image .image-badge{
  position:absolute;
  left:18px;
  top:18px;
}
.news-list-image-tall img{
  height:320px;
}
.news-list-image-wide img{
  height:300px;
}
.news-quote-card{
  border-radius:28px;
  padding:34px 28px;
  background:linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
  color:#fff;
  box-shadow:0 20px 55px rgba(0,0,0,.12);
}
.news-quote-mark{
  display:block;
  margin-bottom:12px;
  font-size:74px;
  line-height:.7;
  color:rgba(255,255,255,.18);
}
.news-quote-card p{
  margin:0 0 22px;
  font-size:22px;
  line-height:1.45;
  letter-spacing:-.03em;
}
.news-quote-card strong{
  color:rgba(255,255,255,.72);
  font-size:14px;
}
.news-bottom-cta{
  padding:6px 0 78px;
}
.news-bottom-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:34px 34px;
  border-radius:30px;
  background:linear-gradient(135deg, #111 0%, #232323 54%, #a31018 160%);
  color:#fff;
  box-shadow:0 26px 60px rgba(0,0,0,.12);
}
.news-bottom-cta-inner h3{
  margin:12px 0 12px;
  font-size:clamp(28px, 2.8vw, 40px);
  line-height:1.06;
  letter-spacing:-.04em;
  max-width:720px;
}
.news-bottom-cta-inner p{
  margin:0;
  max-width:720px;
  color:rgba(255,255,255,.78);
  line-height:1.7;
}

@media (max-width: 1180px){
  .news-hero-shell,
  .news-premium-grid,
  .news-masonry-grid{
    grid-template-columns:1fr;
  }
  .news-hero-side{
    padding-top:0;
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .news-list-head-rich,
  .news-bottom-cta-inner,
  .news-live-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .news-hero-main{
    padding-top:54px;
  }
  .news-hero-side{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .news-hero-main{
    padding-top:34px;
  }
  .news-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .news-primary-btn,
  .news-mini-search,
  .news-primary-btn-light{
    justify-content:center;
    width:100%;
  }
  .featured-news-card-xl .featured-news-media img,
  .hero-side-spotlight,
  .news-list-image-tall img,
  .news-list-image-wide img{
    min-height:unset;
    height:240px;
  }
  .news-bottom-cta-inner{
    padding:24px 20px;
    border-radius:22px;
  }
  .news-quote-card p{
    font-size:18px;
  }
}


/* =========================
   News hero visual fix
========================= */
.news-hero-block{
  background:linear-gradient(180deg,#0a0a0a 0 220px, #f2f2f2 220px 100%);
  padding:26px 0 36px;
}
.news-hero-premium{
  padding-bottom:26px;
}
.news-hero-shell{
  position:relative;
  grid-template-columns:minmax(0, 1.22fr) 340px;
  gap:24px;
  align-items:stretch;
  padding:34px;
  border-radius:38px;
  overflow:hidden;
  background:
    radial-gradient(circle at left top, rgba(233,39,41,.28), rgba(233,39,41,0) 28%),
    radial-gradient(circle at right bottom, rgba(255,255,255,.08), rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #0b0b0b 0%, #111 54%, #181818 100%);
  box-shadow:0 35px 80px rgba(0,0,0,.18);
}
.news-hero-shell::before{
  content:"";
  position:absolute;
  inset:auto auto -120px -120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(233,39,41,.18) 0%, rgba(233,39,41,0) 70%);
  pointer-events:none;
}
.news-hero-main{
  position:relative;
  z-index:1;
  max-width:unset;
  padding:16px 4px 8px 4px;
}
.news-hero-main h1{
  margin:20px 0 16px;
  max-width:820px;
  font-family:"Roboto Local", Arial, sans-serif;
  font-size:clamp(36px, 4vw, 58px);
  line-height:1.04;
  letter-spacing:-.045em;
  color:#fff;
}
.news-hero-main p{
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:clamp(15px, 1.15vw, 17px);
  line-height:1.65;
}
.news-hero-side{
  position:relative;
  z-index:1;
  padding-top:0;
  align-content:stretch;
}
.news-hero-glass-card,
.hero-side-spotlight{
  border-radius:30px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
}
.news-hero-glass-card{
  min-height:218px;
  padding:24px 24px 20px;
}
.news-hero-stats strong{
  font-size:40px;
}
.news-hero-stats span{
  max-width:160px;
}
.hero-side-spotlight{
  min-height:320px;
}
.hero-side-overlay{
  padding:22px;
}
.hero-side-overlay h3{
  font-size:clamp(24px,1.8vw,30px);
  max-width:260px;
}
.news-live-strip{
  margin-top:0;
  padding:8px 0 18px;
}
.news-live-inner{
  border-radius:24px;
}
@media (max-width:1180px){
  .news-hero-shell{
    grid-template-columns:1fr;
    padding:26px;
  }
  .news-hero-side{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:900px){
  .news-hero-block{
    background:linear-gradient(180deg,#0a0a0a 0 180px, #f2f2f2 180px 100%);
  }
  .news-hero-shell{
    padding:22px;
    border-radius:30px;
  }
}
@media (max-width:700px){
  .news-hero-block{
    padding:18px 0 24px;
    background:linear-gradient(180deg,#0a0a0a 0 120px, #f2f2f2 120px 100%);
  }
  .news-hero-shell{
    padding:18px;
    border-radius:24px;
  }
  .news-hero-main{
    padding:8px 0 4px;
  }
  .news-hero-main h1{
    font-size:clamp(30px, 9vw, 42px);
  }
  .news-hero-side{
    grid-template-columns:1fr;
  }
  .news-hero-glass-card,
  .hero-side-spotlight{
    border-radius:22px;
  }
}


.single-news-cover{
  position:relative;
 
  box-shadow:0 30px 70px rgba(0,0,0,.18);
  cursor:pointer;
  isolation:isolate;
}
.single-news-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 46%, rgba(0,0,0,.42) 100%);
  z-index:1;
  transition:opacity .35s ease;
}
.single-news-cover img{
  width:100%;
  min-height:420px;
  max-height:620px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .6s ease;
}
.single-news-cover-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:22px;
  pointer-events:none;
}
.single-news-cover-tag{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}
.single-news-cover-hover{
  align-self:flex-end;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
  color:#fff;
  transform:translateY(12px);
  opacity:0;
  transition:transform .35s ease, opacity .35s ease, background .35s ease;
}
.single-news-cover-hover span{
  font-size:14px;
  font-weight:700;
}
.single-news-cover-hover svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.single-news-cover:hover img{
  transform:scale(1.06);
}
.single-news-cover:hover::after{
  opacity:.92;
}
.single-news-cover:hover .single-news-cover-hover{
  opacity:1;
  transform:translateY(0);
  background:rgba(163,16,24,.86);
}