@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);
  --ease-smooth: cubic-bezier(.22,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-dark);
  font-family: "Helvetica Neue LT GEO", Arial, sans-serif;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
ul, ol { padding-left: 22px; }

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

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  width: clamp(92px, 7vw, 120px);
  display: block;
  transition: transform .7s var(--ease-smooth);
}
.brand:hover .brand-logo { transform: translateY(-1px); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  flex-shrink: 0;
}
.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;
  transition: opacity .25s ease;
}
.lang-btn:hover { opacity: .7; }
.lang-btn.is-active { opacity: 1; color: #fff; font-weight: 700; }
.lang-switch .lang-btn:not(.is-active) { opacity: .55; }
.icon-btn {
  width: 22px;
  height: 22px;
  border: 0;
  background: none;
  color: #fff;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity .25s ease;
  flex-shrink: 0;
}
.icon-btn:hover { opacity: .7; }
.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;
  flex-shrink: 0;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-icon i {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform .42s var(--ease-smooth), opacity .22s ease, width .22s ease;
}
.menu-label {
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: transform .28s var(--ease-smooth);
}
.menu-btn:hover .menu-label { transform: translateX(2px); }
.menu-btn:hover .menu-icon i:nth-child(2) { width: 14px; }

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); }
body.nav-open { overflow: hidden; }

/* =====================
   OVERLAY MENU
===================== */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99; /* below header (100) so header stays on top */
  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,.82);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s var(--ease-smooth), transform .75s var(--ease-smooth);
}
.overlay-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 22px;
  padding-top: calc(72px + 60px); /* header height + extra spacing */
  padding-right: 48px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .38s ease, transform .65s var(--ease-smooth);
}
.overlay-menu-line {
  width: 1px;
  height: 242px;
  background: rgba(255,255,255,.72);
  opacity: 0;
  transform: scaleY(.2);
  transform-origin: top;
  transition: opacity .25s ease, transform .55s 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: translateY(16px) translateX(12px);
  filter: blur(3px);
  transition: transform .55s var(--ease-smooth), opacity .35s ease, filter .45s ease;
}
.overlay-menu-links a:hover { opacity: .78; transform: translateX(6px); }

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: none; 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; }
body.nav-open .site-header { box-shadow: none; }

/* =====================
   HERO
===================== */
.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;
  z-index: 0;
}
.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));
  z-index: 1;
  transition: background .3s ease;
}
body.nav-open .hero-overlay {
  background: linear-gradient(90deg, rgba(242,40,40,.32), rgba(242,40,40,.32));
}
.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: 1;
}
.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: 1;
}
.hero-inner {
  min-height: var(--hero-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(48px, 8vh, 96px);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.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;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-copy h1 strong { font-weight: 900; }
.hero-link {
  margin-top: auto;
  padding-top: 32px;
  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;
  transition: transform .28s var(--ease-smooth);
  align-self: flex-start;
}
.hero-link:hover { transform: translateX(5px); }

.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;
  position: relative;
  width: max-content;
  transition: opacity .25s ease;
}
.desktop-menu-links a:hover { opacity: .8; }
.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%; }

/* =====================
   SECTIONS
===================== */
.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;
  flex-shrink: 0;
}
.ghost-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ececec;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================
   INTRO
===================== */
.intro { padding: 26px 0 60px; }
.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 SECTION (homepage)
===================== */
.news { padding: 4px 0 60px; }
.line {
  gap: 14px;
  margin-bottom: 24px;
  margin-top: 60px;
  align-items: center;
}
.line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-top: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  margin-bottom: 40px;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.news-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: transform .28s var(--ease-smooth);
}
.news-thumb img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  transition: transform .7s var(--ease-smooth), filter .5s ease;
}
.news-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 22px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .28s var(--ease-smooth);
}
.news-arrow svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.news-card {
  transition: transform .35s var(--ease-smooth);
}
.news-card:hover { transform: translateY(-6px); }
.news-card:hover .news-thumb img { transform: scale(1.05); filter: saturate(1.05) contrast(1.02); }
.news-card:hover .news-arrow { width: 66px; }
.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; }

.news-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.news-carousel-track {
  display: flex;
  gap: 30px;
  grid-template-columns: none;
  transition: transform .5s var(--ease-smooth);
  will-change: transform;
}
.news-slide {
  flex: 0 0 calc((100% - 60px) / 3);
}
.news-carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(15,15,15,.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.news-carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  background: #fafafa;
}
.news-carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.news-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: -6px;
  margin-bottom: 34px;
}
.news-carousel-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(17,17,17,.18);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.news-carousel-dots button.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

/* =====================
   MESA
===================== */
.mesa {
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  min-height: 420px;
}
.mesa-image { overflow: hidden; }
.mesa-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .7s var(--ease-smooth);
}
.mesa-copy {
  background: var(--accent);
  color: #fff;
  padding: 40px 44px 28px;
  display: flex;
  flex-direction: column;
  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-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;
  transition: transform .28s var(--ease-smooth);
}
.mesa-link:hover { transform: translate(3px,-3px); }
.mesa-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================
   PARTNERS
===================== */
.partners { padding: 4px 0 60px; }
.partners-box {
  margin-top: 24px;
  border: 1px solid #9e9e9e;
  padding: 36px 24px;
  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);
}
.partners-box img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

/* =====================
   CONTACT
===================== */
.contact { padding: 4px 0 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  justify-content: space-between;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.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 label span {
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  border: 0;
  border-bottom: 1px solid #bcbcbc;
  background: transparent;
  height: 28px;
  padding: 0;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color .25s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus { border-bottom-color: var(--accent); }
.checkbox-row {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.checkbox-row input {
  width: 12px;
  height: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-row span {
  max-width: 280px;
  font-size: 10px !important;
  line-height: 1.5;
  color: var(--text-muted);
}
.submit-btn {
  margin-top: 16px;
  min-width: 90px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(233,39,41,.18);
  transition: transform .28s var(--ease-smooth), box-shadow .28s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(233,39,41,.26);
}
.contact-image img {
  width: 100%;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
}

/* =====================
   CTA
===================== */
.cta {
  background: var(--accent);
  color: #fff;
  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;
}
.cta-inner {
  min-height: 112px;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 46px;
  align-items: center;
}
.cta-logo { width: 82px; flex-shrink: 0; }
.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;
  transition: transform .28s var(--ease-smooth);
}
.cta-touch:hover { transform: translateX(5px); }
.cta-touch svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #000;
  color: #fff;
  padding: 24px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.27fr 1fr;
  gap: 24px;
}
.footer-copy p, .footer-right p, .footer-links a {
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #f2f2f2;
  margin: 0 0 4px;
}
.footer-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a { transition: opacity .25s ease; }
.footer-links a:hover { opacity: .7; }
.footer-copy br { display: block; margin: 6px 0; }

/* =====================
   SCROLL REVEAL
===================== */
.hero-copy,
.desktop-menu,
.intro-copy,
.news-card,
.mesa-copy,
.partners-box,
.contact-form,
.contact-image,
.cta-inner,
.footer-grid,
.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);
}
.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,
.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;
}
.hero-copy.is-visible { transition-delay: .05s; }
.desktop-menu.is-visible { transition-delay: .18s; }

/* =====================
   ANIMATIONS
===================== */
@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;
  }
}

/* =====================
   NEWS PAGE
===================== */
.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-premium { padding-bottom: 48px; }
.news-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 360px;
  gap: 28px;
  align-items: end;
  position: relative;
  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 {
  color: #fff;
  max-width: 860px;
  padding: 78px 0 12px;
  position: relative;
  z-index: 1;
}
.news-hero-main h1 {
  margin: 20px 0 16px;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #fff;
  max-width: 820px;
}
.news-hero-main p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  margin: 0;
}
.news-hero-side {
  display: grid;
  gap: 18px;
  padding-top: 86px;
  position: relative;
  z-index: 1;
  align-content: stretch;
}
.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);
  cursor: pointer;
}
.news-mini-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: 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;
  cursor: pointer;
  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;
  min-height: 218px;
}
.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: flex-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%;
  min-height: 300px;
  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-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;
  font-family: "Roboto Local", Arial, sans-serif;
  letter-spacing: .04em;
}

.news-live-strip {
  margin-top: -10px;
  padding-bottom: 20px;
}
.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);
  flex-shrink: 0;
}
.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 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease;
}
.featured-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,.12);
}
.featured-news-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .7s var(--ease-smooth);
}
.featured-news-card:hover .featured-news-media img { transform: scale(1.05); }
.featured-news-card-xl .featured-news-media img { min-height: 500px; }
.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;
  font-family: "Roboto Local", Arial, sans-serif;
}
.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);
}

.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-archive { padding: 6px 0 72px; }
.news-list-head { margin-bottom: 28px; }
.news-list-head-rich {
  display: flex;
  align-items: flex-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;
  margin-top: 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-premium { border: 1px solid rgba(15,15,15,.05); }
.news-list-card-premium .news-list-content { padding: 24px 24px 22px; }
.news-list-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.12); }
.news-list-image {
  display: block;
  overflow: hidden;
  position: relative;
}
.news-list-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .7s var(--ease-smooth);
}
.news-list-image-tall img { height: 320px; }
.news-list-image-wide img { height: 300px; }
.news-list-card:hover .news-list-image img { transform: scale(1.05); }
.image-badge { position: absolute; left: 18px; top: 18px; }
.news-list-content { padding: 26px 24px 24px; }
.news-list-date {
  display: block;
  font-size: 12px;
  color: #747474;
  margin-bottom: 10px;
  font-family: "Roboto Local", Arial, sans-serif;
  letter-spacing: .04em;
}
.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-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-inline-link { font-size: 14px; }
.news-readmore svg, .back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
  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;
  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; }

/* =====================
   SINGLE NEWS
===================== */
.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:hover img { transform: scale(1.06); }
.single-news-cover:hover::after { opacity: .92; }
.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: 48px;
  max-width: min(900px, calc(100% - 40px));
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(15,15,15,.34);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.03em;
}
.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 .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; }
.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;
  position: sticky;
  top: 88px;
}
.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;
  font-family: "Roboto Local", Arial, sans-serif;
  letter-spacing: .04em;
}
.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;
  font-size: 14px;
  transition: color .25s ease, transform .25s ease;
}
.share-links a:hover, .sidebar-related a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* =====================
   RESPONSIVE
===================== */
@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; }
  .hero-copy h1 { font-size: clamp(36px, 9vw, 54px); max-width: 480px; }
  .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; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { grid-template-columns: 1fr 1fr; }
  .featured-news-card, .single-news-layout {
    grid-template-columns: 1fr;
  }
  .featured-news-media img { min-height: 300px; }
  .single-news-cover img { min-height: 320px; }
  .overlay-menu-inner {
    height: 100%;
    padding-top: calc(60px + 52px);
    padding-right: 14px;
    justify-content: flex-start;
  }
  .overlay-menu-line { height: 208px; }
  .overlay-menu-links a { font-size: 16px; }
  .news-hero-shell { grid-template-columns: 1fr; padding: 26px; }
  .news-hero-side { grid-template-columns: repeat(2, minmax(0,1fr)); padding-top: 0; }
  .news-premium-grid { grid-template-columns: 1fr; }
  .news-masonry-grid { grid-template-columns: 1fr; }
  .single-news-sidebar { position: static; }
}

@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) {
  :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-grid { gap: 20px; }
  .contact-form input[type="text"],
  .contact-form input[type="email"] { height: 22px; font-size: 12px; }
  .checkbox-row span { font-size: 9px !important; }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
    justify-items: start;
    min-height: unset;
  }
  .cta-center { align-items: flex-start; }
  .cta-logo { width: 70px; }
  .cta-touch { font-size: 15px; }
  .footer-copy p, .footer-right p, .footer-links a { font-size: 9px; }
  .footer-meta { grid-template-columns: 1fr; gap: 16px; }
  .overlay-menu-inner { gap: 14px; padding-top: calc(60px + 34px); padding-right: 0; }
  .overlay-menu-line { height: 176px; }
  .overlay-menu-links a { font-size: 13px; line-height: 1.34; }
  .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-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; }
  .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 { font-size: 15px; }
  .single-news-cover, .featured-news-card, .news-list-card, .sidebar-card, .single-news-article { border-radius: 20px; }
  .news-masonry-grid { grid-template-columns: 1fr; }
}

/* =====================
   SUBMENU
===================== */
.nav-item-has-sub {
  position: relative;
}

.nav-has-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-arrow {
  display: inline-block;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  transition: transform .35s var(--ease-smooth), opacity .25s ease;
  opacity: .7;
}

.nav-item-has-sub.is-open .nav-arrow {
  transform: rotate(90deg);
  opacity: 1;
}

.nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.25);
  margin-top: 0;
  transition:
    max-height .45s var(--ease-smooth),
    opacity .35s ease,
    margin-top .35s ease;
  opacity: 0;
}

.nav-item-has-sub.is-open .nav-submenu {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

.nav-submenu a {
  color: rgba(255,255,255,.82) !important;
  font-size: 13px !important;
  opacity: 0 !important;
  transform: translateX(10px) !important;
  filter: blur(2px) !important;
  transition:
    opacity .32s ease,
    transform .38s var(--ease-smooth),
    filter .32s ease,
    color .2s ease !important;
}

.nav-item-has-sub.is-open .nav-submenu a {
  opacity: 1 !important;
  transform: none !important;
  filter: blur(0) !important;
}
.nav-item-has-sub.is-open .nav-submenu a:nth-child(1) { transition-delay: .08s !important; }
.nav-item-has-sub.is-open .nav-submenu a:nth-child(2) { transition-delay: .14s !important; }
.nav-item-has-sub.is-open .nav-submenu a:nth-child(3) { transition-delay: .20s !important; }

.nav-submenu a:hover {
  color: #fff !important;
  transform: translateX(4px) !important;
}

/* =====================
   MOBILE HERO FIX — h1 ქვევით, Sign Up ზემოთ
===================== */
@media (max-width: 700px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: clamp(24px, 5vh, 40px);
  }
  .hero-copy h1 {
    order: 2;
    margin-top: auto;
    padding-top: 16px;
  }
  .hero-link {
    order: 3;
    margin-top: 16px;
    padding-top: 0;
  }
}


@media (max-width: 1100px) {
  .news-slide { flex-basis: calc((100% - 30px) / 2); }
  .single-news-cover-tag { max-width: calc(100% - 28px); }
}

@media (max-width: 767px) {
  .news-carousel { gap: 10px; }
  .news-carousel-btn {
    width: 42px;
    height: 42px;
  }
  .news-slide { flex-basis: 100%; }
  .news-carousel-track {
    gap: 18px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .news-carousel-dots { margin-top: 4px; }
  .single-news-cover-overlay { padding: 16px; }
  .single-news-cover-tag {
    font-size: clamp(18px, 5.6vw, 24px);
    padding: 10px 14px;
    border-radius: 14px;
  }
}


/* =====================
   IPOA INNER PAGES CUSTOM
===================== */
.inner-page-body {
  background: var(--bg-light);
  color: var(--text-dark);
}
.page-shell {
  padding: 42px 0 80px;
  background:
    radial-gradient(circle at left top, rgba(233,39,41,.10), rgba(233,39,41,0) 30%),
    linear-gradient(180deg, #111 0 260px, var(--bg-light) 260px 100%);
}
.inner-hero {
  padding: 34px 0 22px;
}
.inner-hero-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #171717 100%);
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 26px 70px rgba(0,0,0,.14);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 26px;
  align-items: end;
}
.inner-hero-card h1 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.inner-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}
.lang-panel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.lang-panel button {
  min-width: 74px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.lang-panel button.is-active {
  background: #fff;
  color: #111;
}
.lang-panel button:hover { transform: translateY(-1px); }
.section-block {
  padding: 18px 0;
}
.content-card, .soft-card, .form-card, .list-card, .member-action-card, .contact-side-card, .team-card, .warning-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
}
.content-card, .soft-card, .form-card, .list-card, .warning-card {
  padding: 32px;
}
.content-card h2, .soft-card h2, .form-card h2, .list-card h2, .warning-card h2, .section-title {
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -.03em;
}
.content-card p, .soft-card p, .form-card p, .list-card p, .warning-card p,
.content-card li, .soft-card li, .list-card li, .contact-side-card p {
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #474747;
}
.content-card p + p, .soft-card p + p, .warning-card p + p { margin-top: 14px; }
.objectives-grid, .category-grid, .quick-grid, .contacts-grid, .management-grid, .board-grid, .council-grid {
  display: grid;
  gap: 18px;
}
.objectives-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 24px; }
.objective-item, .category-item, .quick-card, .contact-mini-card, .board-mini-card, .council-member {
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 22px;
  padding: 22px;
}
.objective-item strong, .category-item strong, .quick-card strong, .contact-mini-card strong, .board-mini-card strong, .member-action-card h3, .team-card-body h3, .management-card h3 {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}
.objective-item span, .category-item span, .quick-card span, .contact-mini-card span, .board-mini-card span, .member-action-card p, .team-card-body p, .management-card p, .council-member p {
  font-family: "Roboto Local", Arial, sans-serif;
  color: #5d5d5d;
  line-height: 1.7;
  font-size: 14px;
}
.notice-inline {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(233,39,41,.06);
  border: 1px solid rgba(233,39,41,.14);
  color: #2f2f2f;
  font-family: "Roboto Local", Arial, sans-serif;
  line-height: 1.75;
}
.rights-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.tab-btn {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-family: "Roboto Local", Arial, sans-serif;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.tab-btn.is-active, .tab-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tab-btn:hover { transform: translateY(-2px); }
.tab-pane { display: none; }
.tab-pane.is-active { display: block; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr);
  gap: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-card label span {
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 12px;
  color: #6a6a6a;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 18px;
  padding: 0 16px;
  background: #fafafa;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-card textarea { min-height: 140px; padding: 16px; resize: vertical; }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(233,39,41,.55);
  box-shadow: 0 0 0 4px rgba(233,39,41,.08);
  background: #fff;
}
.form-note {
  margin-top: 14px;
  font-family: "Roboto Local", Arial, sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.action-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.member-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.member-action-card {
  padding: 28px;
}
.member-action-card .form-card { box-shadow: none; padding: 0; background: transparent; }
.file-box {
  min-height: 120px;
  border: 2px dashed rgba(17,17,17,.14);
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: #666;
  font-family: "Roboto Local", Arial, sans-serif;
  line-height: 1.7;
  margin-top: 18px;
}
.management-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.management-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,.07);
}
.management-card .role {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(233,39,41,.08);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}
.board-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.board-mini-card { min-height: 100%; }
.council-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
  gap: 22px;
}
.contact-map-placeholder {
  min-height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(233,39,41,.12), rgba(17,17,17,.06));
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-map-placeholder strong { font-size: 28px; line-height: 1.1; margin-bottom: 14px; }
.contact-map-placeholder p {
  font-family: "Roboto Local", Arial, sans-serif;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}
[data-lang], [data-lang-inline], [data-lang-flex], [data-lang-grid], [data-lang-list] { display: none; }
html.lang-ka [data-lang="ka"], html.lang-en [data-lang="en"] { display: block; }
html.lang-ka [data-lang-inline="ka"], html.lang-en [data-lang-inline="en"] { display: inline; }
html.lang-ka [data-lang-flex="ka"], html.lang-en [data-lang-flex="en"] { display: flex; }
html.lang-ka [data-lang-grid="ka"], html.lang-en [data-lang-grid="en"] { display: grid; }
html.lang-ka [data-lang-list="ka"], html.lang-en [data-lang-list="en"] { display: list-item; }
@media (max-width: 1100px) {
  .inner-hero-card, .two-col, .contact-info-grid { grid-template-columns: 1fr; }
  .management-grid, .council-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .page-shell { padding: 24px 0 56px; background: linear-gradient(180deg, #111 0 210px, var(--bg-light) 210px 100%); }
  .inner-hero-card, .content-card, .soft-card, .form-card, .list-card, .warning-card, .member-action-card, .management-card, .contact-map-placeholder { padding: 22px; border-radius: 22px; }
  .objectives-grid, .board-grid, .council-grid, .management-grid, .member-actions, .form-grid { grid-template-columns: 1fr; }
  .lang-panel { width: 100%; justify-content: center; }
}
