/* ========================================
   EVENT LENZE – Shared Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --off-white:  #F7F7F7;
  --light-gray: #EDEDED;
  --mid-gray:   #888888;
  --dark:       #111111;
  --near-black: #0A0A0A;
  --red: #B8001C;
  --red-dark: #8F0016;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1280px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--red); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-transform: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,0,28,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}

.btn-ghost-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   SECTION LABELS & HEADINGS
   ======================================== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

.section-subtitle--center { margin: 16px auto 0; text-align: center; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-mid { color: var(--mid-gray); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--red);
}

.hero-headline {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--red);
}

.hero-subline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .hero { padding-bottom: 80px; }
  .hero-content { padding: 0 20px; }
  .hero-headline { font-size: 40px; }
}

/* Page Hero (sub-pages) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.page-hero .hero-content { padding-bottom: 0; }

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 100px 0;
}

.section--sm { padding: 72px 0; }
.section--lg { padding: 128px 0; }
.section--dark { background: var(--near-black); }
.section--off { background: var(--off-white); }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%);
  transition: background 0.4s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%);
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  color: var(--white);
}

.service-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.service-card-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.service-card:hover .service-card-link { gap: 12px; }

.service-card-link::after {
  content: '→';
  font-size: 16px;
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 3/2; }
  .service-card-content { padding: 24px; }
  .service-card-title { font-size: 22px; }
}

/* ========================================
   SPLIT SECTION (text + image)
   ======================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.split-text { padding: 20px 0; }
.split-text .section-subtitle { max-width: 480px; margin-top: 16px; }
.split-text .btn-group { margin-top: 40px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .split-image { order: -1; }
}

/* ========================================
   GALLERY / REFERENZEN
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.4); }

.gallery-item-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  letter-spacing: 0.04em;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ========================================
   USP / FEATURES GRID
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.feature-item {}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184,0,28,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; }

.feature-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-text {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--near-black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(184,0,28,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-title { color: var(--white); margin-bottom: 16px; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { justify-content: center; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0A0A0A;
  padding: 72px 0 40px;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.7); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 200px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ========================================
   VIDEO GRID
   ======================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.video-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--near-black);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.video-card:hover .video-card-thumb img { transform: scale(1.04); }

.video-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-card:hover .video-card-thumb-overlay { background: rgba(0,0,0,0.2); }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
}

.video-card:hover .play-btn {
  transform: scale(1.12);
  background: var(--red-dark);
}

.play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }

.video-card-info {
  padding: 20px 24px;
  color: var(--white);
}

.video-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.video-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Video Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
}

.lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT FORM
   ======================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: span 2; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  border-radius: 2px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #bbb; }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184,0,28,0.07);
}

.form-textarea { resize: vertical; min-height: 140px; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
}

/* ========================================
   UTILITY
   ======================================== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.stat-row {
  display: flex;
  gap: 64px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-item {}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--mid-gray);
  font-weight: 500;
}

/* Animate on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* Divider */
.divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
}

.divider--center { margin: 20px auto; }

/* ========================================
   RESPONSIVE – TABLET (max 900px)
   ======================================== */
@media (max-width: 900px) {
  /* Section headings */
  .section-title { font-size: clamp(28px, 5vw, 44px); }
  .section-subtitle { font-size: 16px; }

  /* Hero */
  .hero { min-height: 520px; padding-bottom: 60px; }
  .hero-headline { font-size: clamp(36px, 6vw, 60px); }
  .hero-subline { font-size: 16px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: auto; }

  /* Page Hero (sub-pages) */
  .page-hero { height: 45vh; min-height: 320px; }

  /* Ticker strip: 2x2 grid */
  #tickerRow .container > div {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* CTA Banner */
  .cta-banner { padding: 72px 0; }

  /* Stats row */
  .stat-row { gap: 40px; }
}

/* ========================================
   RESPONSIVE – MOBILE (max 640px)
   ======================================== */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Nav */
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 28px; }

  /* Hero */
  .hero { padding-bottom: 48px; min-height: 480px; }
  .hero-headline { font-size: 34px; }
  .hero-subline { font-size: 15px; }
  .hero-content { padding: 0 16px; }
  .btn-group .btn { padding: 13px 28px; font-size: 14px; }

  /* Page Hero */
  .page-hero { height: 40vh; min-height: 280px; }

  /* Sections */
  .section { padding: 52px 0; }
  .section--sm { padding: 48px 0; }
  .section--lg { padding: 64px 0; }

  /* Section title */
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }

  /* Service cards */
  .service-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { aspect-ratio: 4/3; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }

  /* Gallery grid */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  /* Split section */
  .split { gap: 28px; }
  .split-text .btn-group { margin-top: 24px; }

  /* Ticker strip: single column */
  #tickerRow { padding: 40px 0 !important; }
  #tickerRow .container > div {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #tickerRow .container > div > div {
    padding: 28px 20px !important;
  }

  /* Video grid */
  .video-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA Banner */
  .cta-banner { padding: 56px 0; }
  .cta-banner .section-title { font-size: 26px; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .form-card { padding: 28px 20px !important; }

  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr !important; }

  /* Stats */
  .stat-row { flex-direction: column; gap: 28px; }
  .stat-number { font-size: 36px; }

  /* Buttons */
  .btn { padding: 13px 28px; font-size: 14px; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; margin-top: 40px; }
  .blog-card--featured { grid-template-columns: 1fr !important; }
  .blog-card--featured .blog-card-img { min-height: unset !important; aspect-ratio: 16/9 !important; }
  .blog-card--featured .blog-card-body { padding: 24px !important; }

  /* Article */
  .article-wrap { grid-template-columns: 1fr !important; gap: 32px !important; padding: 40px 0 64px !important; }
  .article-sidebar { position: static !important; }
  .article-hero-title { font-size: 26px !important; }
  .article-body h2 { font-size: 20px; margin: 36px 0 12px; padding-top: 36px; }
  .article-body p { font-size: 16px; }
  .pull-quote p { font-size: 18px !important; }
}
