/* ===== CSS Variables ===== */
:root {
  /* Azzurro - colore principale */
  --color-primary: #38bdf8;
  --color-primary-hover: #0ea5e9;
  /* Blu - barre, footer, elementi scuri */
  --color-dark: #1e40af;
  --color-dark-secondary: #1e3a8a;
  /* Rosa - accenti e breaking news */
  --color-pink: #ec4899;
  --color-pink-hover: #db2777;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --font-primary: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --transition: 0.3s ease;
  --header-height: 80px;
  --max-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Header - logo a sinistra, nav a destra ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-centered .header-container {
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  padding: 16px 24px;
  gap: 24px;
  position: relative;
  justify-content: flex-start;
  align-items: center;
}

.header-centered .logo {
  order: 1;
  flex-shrink: 0;
}

.header-centered .main-nav {
  order: 2;
  margin-left: auto;
}

.header-centered .lang-switcher {
  order: 3;
  position: static;
  flex-shrink: 0;
}

.header-centered .menu-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  display: none;
}

.lang-switcher {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lang-switcher .lang-current {
  color: var(--color-text-light);
}

.lang-switcher .lang-link {
  color: var(--color-dark);
}

.lang-switcher .lang-link:hover {
  color: var(--color-primary);
}

.lang-switcher span:not(.lang-current) {
  margin: 0 4px;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .header-centered .main-nav,
  .header-centered .lang-switcher {
    display: none;
  }
  
  .header-centered .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  
  .header-centered .logo img {
    height: 88px;
    max-width: 380px;
  }
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 16px 24px 16px 24px;
  margin: -16px 0 -16px -24px;
  display: inline-block;
}

.logo:hover {
  color: var(--color-primary);
}

.logo:hover img {
  opacity: 0.9;
}

.logo img {
  display: block;
  height: 120px;
  width: auto;
  max-width: 520px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
}

/* ===== Breaking News ===== */
.breaking-news {
  background: var(--color-pink);
  color: var(--color-white);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.breaking-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 24px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-size: 14px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 2;
}

.slide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.slide-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 700px;
}

.slide-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* ===== About - layout split (testo | immagine) ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.about-split-content {
  padding: 60px 48px 60px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-dark);
  color: var(--color-white);
}

.about-split-content .section-label,
.about-split-content h2,
.about-split-content .about-subtitle,
.about-split-content p,
.about-split-content a:not(.btn) {
  color: rgba(255, 255, 255, 0.98);
}

.about-split-content .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-split-content .about-subtitle {
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-split-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-timeline-item p {
  margin-bottom: 0;
  line-height: 1.8;
}

.about-split-image {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

/* ===== Attività (home) ===== */
/* ===== Video home ===== */
.video-section {
  padding: 60px 24px;
  background: #f0f9ff;
  min-height: 400px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 24px;
}

.home-video {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  display: block;
  background: var(--color-dark);
}

.video-hint {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* ===== Attività (home) ===== */
.activities-section {
  padding: 80px 24px;
  background: #f0f9ff;
}

.activities-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.activity-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.activity-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-image {
  transform: scale(1.05);
}

.activity-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-card-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.activity-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.activity-card-content p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.activity-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.activity-card:hover .activity-card-link {
  color: var(--color-primary-hover);
}

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

/* ===== Section header ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--color-dark);
}

/* ===== Projects - griglia bento ===== */
.projects-section {
  padding: 80px 24px;
  background: #f0f9ff;
}

.projects-bento {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px 180px;
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.project-card.bento-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.project-card.bento-small.bento-pos-1 {
  grid-column: 3;
  grid-row: 1;
}

.project-card.bento-small.bento-pos-2 {
  grid-column: 3;
  grid-row: 2;
}

.project-card.bento-tall {
  grid-column: 4;
  grid-row: 1 / 3;
}

.project-card.bento-wide {
  grid-column: 1 / 3;
  grid-row: 3;
}

.project-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image {
  transform: scale(1.08);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--color-white);
  transform: translateY(0);
  transition: transform var(--transition);
}

.project-card:hover .project-info {
  background: linear-gradient(to top, rgba(56, 189, 248, 0.95), rgba(56, 189, 248, 0.7));
}

.project-location {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
}

.project-card:hover .project-location {
  color: var(--color-white);
}

.project-info h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== CTA Section - layout verticale ===== */
.cta-section {
  padding: 0;
}

.cta-stack {
  display: flex;
  flex-direction: column;
}

.cta-stack .cta-main {
  min-height: 400px;
}

.cta-stack .cta-secondary {
  min-height: 280px;
  max-width: 800px;
  margin: 0 auto;
  width: calc(100% - 48px);
  border-radius: 8px;
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.cta-card:hover .cta-bg {
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background var(--transition);
}

.cta-card:hover .cta-overlay {
  background: rgba(56, 189, 248, 0.75);
}

.cta-content {
  position: relative;
  text-align: center;
  padding: 48px 24px;
}

.cta-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-outline {
  border-color: var(--color-white);
}

.cta-content .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ===== Footer - layout orizzontale ===== */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 48px 24px 24px;
}

.footer p,
.footer a,
.footer h4,
.footer strong {
  color: rgba(255, 255, 255, 0.95);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.95;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer-addresses {
  display: flex;
  gap: 48px;
}

.footer .footer-address h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.footer .footer-address p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer-links-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer .footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Pagine interne ===== */
.page-hero {
  height: 280px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--color-white);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 12px;
}

.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.content-section p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== Partners grid ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}

.partners-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  min-height: 120px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.partners-grid-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.partners-grid-item img {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.9;
}

.partners-grid-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .partners-grid-item {
    padding: 16px;
    min-height: 100px;
  }
  .partners-grid-item img {
    max-width: 100px;
    max-height: 60px;
  }
}

.content-section .about-split-content p,
.content-section .about-split-content h2,
.content-section .about-split-content .section-label {
  color: rgba(255, 255, 255, 0.98);
}

.page-image {
  margin: 40px 0 48px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.page-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Wholesale carousel - 3 immagini alla volta, scorrimento continuo */
.wholesale-carousel {
  overflow: hidden;
  margin: 40px 0 48px;
  width: 100%;
}

.wholesale-carousel-track {
  display: flex;
  gap: 20px;
  animation: wholesale-scroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.wholesale-carousel-track:hover {
  animation-play-state: paused;
}

.wholesale-carousel figure {
  margin: 0;
  flex-shrink: 0;
  width: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.wholesale-carousel img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@keyframes wholesale-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1200px) {
  .wholesale-carousel figure {
    width: 320px;
  }
}

@media (max-width: 900px) {
  .wholesale-carousel figure {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .wholesale-carousel figure {
    width: 260px;
  }
}

.page-intro {
  margin-bottom: 40px;
}

.page-intro .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

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

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info .footer-address h4 {
  color: var(--color-dark);
}

.contact-info .footer-address p {
  color: var(--color-text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* News / Press grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.news-card-content {
  padding: 24px;
}

.news-card-content .date {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.news-card-content h3 {
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* Projects page list */
.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.projects-list .project-card {
  min-height: 280px;
  aspect-ratio: 4/3;
}

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

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--color-white);
}

.cookie-banner a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--color-pink);
  color: var(--color-white);
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--color-pink-hover);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

/* ===== Mobile Menu ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
}

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

.mobile-menu-overlay {
  flex-direction: column;
  gap: 32px;
}

.lang-switcher-mobile {
  font-size: 18px;
}

.lang-switcher-mobile .lang-current {
  color: rgba(255, 255, 255, 0.7);
}

.lang-switcher-mobile .lang-link {
  color: var(--color-white);
}

.lang-switcher-mobile .lang-link:hover {
  color: var(--color-primary);
}

.lang-switcher-mobile span:not(.lang-current) {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-split-image {
    min-height: 280px;
  }
  
  .projects-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .project-card.bento-large,
  .project-card.bento-tall,
  .project-card.bento-wide {
    grid-column: auto;
    grid-row: auto;
  }
  
  .project-card.bento-small.bento-pos-1,
  .project-card.bento-small.bento-pos-2 {
    grid-column: auto;
    grid-row: auto;
  }
  
  .project-card {
    min-height: 200px;
    aspect-ratio: 4/3;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 70vh;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  
  .about-split-content {
    padding: 40px 24px;
  }
  
  .projects-bento {
    grid-template-columns: 1fr;
  }
  
  .cta-stack .cta-secondary {
    margin: -40px 16px 0;
    width: auto;
  }
  
  .breaking-news {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-addresses {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
  }
}
