:root {
  --navy: #0a1628;
  --navy-mid: #111d35;
  --navy-light: #1a2a4a;
  --gold: #cc1b2b;
  --gold-light: #e52535;
  --gold-pale: #f5c4c8;
  --white: #f8f6f0;
  --cream: #ede8d8;
  --text: #c8cdd6;
  --text-light: #8a92a1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar.scrolled {
  background: #fff;
  backdrop-filter: blur(20px);
  padding: 10px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s;
}
.navbar.scrolled .nav-logo img { height: 42px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style: none;
}
.nav-links a,
.nav-links li a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  padding: 0;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--gold); }
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after { width: 100%; }

/* Astra nav overrides */
.navbar .nav-links .menu-item { margin: 0; padding: 0; }
.navbar .nav-links .menu-item a { padding: 0; margin: 0; background: none; }
.navbar .nav-links .menu-item a:hover { background: none; }
.navbar .nav-links .sub-menu { display: none; }
.navbar ul, .navbar ul li { margin: 0; padding: 0; list-style: none; }
.nav-right-group {
  display: flex; align-items: center; gap: 18px;
}
.nav-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff !important;
  padding: 10px 28px;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }
/* STICKY WHATSAPP */
.wa-sticky {
  position: fixed;
  left: 20px; bottom: 28px;
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.wa-sticky a {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}
.wa-sticky a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-sticky a svg { width: 28px; height: 28px; }
.wa-sticky-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream); opacity: 0.6;
}
.wa-sticky a::after {
  content: ''; position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.2) 40%, rgba(10,22,40,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 8px 24px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION COMMON */
section { padding: 120px 60px; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

/* INTRO */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fff;
}
.intro .section-label {
  color: var(--gold);
}
.intro .section-title {
  color: var(--navy);
}
.intro .section-desc,
.intro p {
  color: #444;
}
.intro .stat-label {
  color: #666;
}
.intro .intro-image::after {
  border-color: var(--gold);
}
.intro .intro-stats {
  border-top-color: rgba(204,27,43,0.2);
}
.intro-image {
  position: relative;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.intro-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: -1;
}
.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* MODELS */
.models {
  background: #e3e3e3;
}
.models .section-label {
  color: var(--gold);
}
.models .section-title {
  color: var(--navy);
}
.models .section-desc {
  color: #444;
}
.model-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.5s ease;
}
.model-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.model-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.model-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #fff, transparent);
}
.model-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.models-header {
  text-align: center;
  margin-bottom: 80px;
}
.models-header .section-desc {
  margin: 0 auto;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.model-card:hover .model-img {
  transform: scale(1.08);
}
.model-img-wrapper {
  overflow: hidden;
  position: relative;
}
.model-info {
  padding: 28px;
}
.model-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}
.model-link:hover { gap: 14px; }
.model-link svg { transition: transform 0.3s ease; }

/* FEATURES STRIP */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  padding: 0;
}
.feature-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--navy-mid); }
.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* LIFESTYLE BANNER */
.lifestyle {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lifestyle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.lifestyle-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
}
.lifestyle-content .section-title {
  margin-bottom: 28px;
}
.lifestyle-content .section-desc {
  margin: 0 auto 36px;
  max-width: 500px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}
.cta-section .section-desc {
  margin: 0 auto 40px;
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 80px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand .nav-logo img {
  height: 44px;
  width: auto;
}
.footer-brand p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.social-icon:hover svg { fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  .navbar { padding: 16px 30px; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .wa-sticky { left: 14px; bottom: 20px; }
  .wa-sticky a { width: 48px; height: 48px; }
  .wa-sticky a::after { width: 48px; height: 48px; }
  .wa-sticky-label { display: none; }
}

/* AZIENDA PAGE */
.about-content {
  background: #fff; padding: 120px 60px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-grid .section-title { color: var(--navy); }
.about-grid .section-desc { color: #444; }
.about-img {
  width: 100%; height: 500px; object-fit: cover; display: block;
}
.about-img-wrapper { position: relative; overflow: hidden; }
.about-img-wrapper::after {
  content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); opacity: 0.3; z-index: -1;
}

.values-section { background: #e3e3e3; padding: 120px 60px; }
.values-section .section-title { color: var(--navy); text-align: center; margin-bottom: 60px; }
.values-section .section-label { text-align: center; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: #fff; padding: 50px 36px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.value-icon { margin-bottom: 20px; }
.value-icon svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.value-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  color: var(--navy); margin-bottom: 12px;
}
.value-text { font-size: 14px; color: #555; line-height: 1.8; }

.timeline-section { background: var(--navy); padding: 120px 60px; }
.timeline-section .section-title { text-align: center; margin-bottom: 60px; }
.timeline-section .section-label { text-align: center; }
.timeline {
  max-width: 700px; margin: 0 auto; position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { margin-bottom: 50px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -46px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--gold);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--gold); margin-bottom: 8px;
}
.timeline-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

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

/* GALLERY PAGE */
.gallery-section { background: #fff; padding: 120px 60px; }
.gallery-section .section-title { color: var(--navy); text-align: center; margin-bottom: 16px; }
.gallery-section .section-label { text-align: center; }
.gallery-section .section-desc { color: #444; text-align: center; margin: 0 auto 60px; }

.gallery-filters {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 50px; flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.12);
  background: transparent; color: var(--navy); cursor: pointer;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--gold); color: #fff; border-color: var(--gold);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  opacity: 0; transition: opacity 0.4s; display: flex;
  align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-size: 14px; font-weight: 500; letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 36px; cursor: pointer; background: none;
  border: none; font-family: sans-serif; z-index: 10001;
}

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* MODELLI PAGE */
.models-detail { background: #fff; padding: 120px 60px; }
.model-detail-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto 100px; padding-bottom: 100px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.model-detail-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.model-detail-block:nth-child(even) { direction: rtl; }
.model-detail-block:nth-child(even) > * { direction: ltr; }
.model-detail-img {
  width: 100%; height: 400px; object-fit: cover; display: block;
}
.model-detail-tag {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.model-detail-name {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 300; color: var(--navy); margin-bottom: 20px;
}
.model-detail-desc { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 30px; }
.model-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 30px;
}
.spec-item { text-align: center; padding: 16px; background: #f5f5f5; }
.spec-value {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--gold); font-weight: 400;
}
.spec-label { font-size: 11px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

@media (max-width: 1024px) {
  .model-detail-block { grid-template-columns: 1fr; gap: 40px; }
  .model-detail-block:nth-child(even) { direction: ltr; }
  .models-detail { padding: 80px 30px; }
}

/* CONTATTI PAGE */
.contact-section { background: #fff; padding: 120px 60px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1200px; margin: 0 auto;
}
.contact-info-title {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  color: var(--navy); margin-bottom: 20px; font-weight: 300;
}
.contact-info-desc { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-item-icon {
  width: 48px; height: 48px; background: rgba(204,27,43,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #999; margin-bottom: 4px; }
.contact-item-value { font-size: 16px; color: var(--navy); font-weight: 500; }
.contact-item-value a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
.contact-item-value a:hover { color: var(--gold); }

.contact-form { background: #f7f7f7; padding: 50px; }
.form-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--navy); margin-bottom: 30px; font-weight: 400;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: #666; margin-bottom: 8px; font-weight: 600;
}
.form-input, .form-textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(0,0,0,0.12);
  background: #fff; font-size: 14px; font-family: 'Montserrat', sans-serif;
  color: var(--navy); transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-select,
select.form-select,
.rer-form select,
form select.form-select {
  width: 100% !important; padding: 14px 44px 14px 16px !important; border: 1px solid rgba(0,0,0,0.12);
  background: #fff !important; font-size: 14px !important; font-family: 'Montserrat', sans-serif;
  color: var(--navy) !important; outline: none; cursor: pointer; appearance: none;
  -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 16px center !important;
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
  min-height: 48px; line-height: 1.4; box-sizing: border-box;
  max-width: 100%; display: block;
  border-radius: 0;
}
.form-submit {
  background: var(--gold); color: #fff; border: 1px solid var(--gold);
  padding: 16px 40px; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif; width: 100%;
}
.form-submit:hover { background: var(--gold-light); }

.map-section { width: 100%; height: 450px; background: #e3e3e3; }
.map-section iframe { width: 100%; height: 100%; border: 0; }

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


/* ═══ WORDPRESS OVERRIDES ═══ */
/* Remove Astra default styles we override */
.ast-container { max-width: 100%; padding: 0; }
.site-content > .ast-container { display: block; }
.entry-content { margin: 0; padding: 0; }
.ast-single-post .entry-content, .page .entry-content { margin: 0; }
body.page .site-main > article { padding: 0; margin: 0; }
.ast-page-builder-template .site-content > .ast-container { max-width: 100%; padding: 0; }

/* Page Hero */
.page-hero {
  height: 50vh; min-height: 400px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--navy); background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 40px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 16px; font-weight: 300; color: var(--text);
  line-height: 1.8; max-width: 600px; margin: 0 auto;
}

/* Buttons */
.btn-primary {
  background: var(--gold); color: #fff; padding: 16px 40px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold);
  transition: all 0.3s ease; font-family: 'Montserrat', sans-serif; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 4px 30px rgba(204,27,43,0.3); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--white); padding: 16px 40px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); color: #fff; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  text-align: center; position: relative; overflow: hidden; padding: 120px 60px;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border: 1px solid rgba(204,27,43,0.08); border-radius: 50%;
}
.cta-section .section-desc { margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 40px; }

/* Lightbox */
.rer-lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.rer-lightbox.active { display: flex; }
.rer-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.rer-lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 36px; cursor: pointer; background: none;
  border: none; font-family: sans-serif; z-index: 10001;
}

/* Preventivo page */
.preventivo-section { background: #fff; padding: 120px 60px; }
.preventivo-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  max-width: 1200px; margin: 0 auto;
}
.preventivo-info { padding-top: 20px; }
.preventivo-info h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  color: var(--navy); margin-bottom: 20px; font-weight: 300;
}
.preventivo-info p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 20px; }
.preventivo-benefit {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.preventivo-benefit-icon {
  width: 32px; height: 32px; background: rgba(204,27,43,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.preventivo-benefit-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }
.preventivo-benefit-text { font-size: 14px; color: #555; line-height: 1.6; }
.preventivo-benefit-text strong { color: var(--navy); }

/* Admin */
.rer-meta-table td, .rer-meta-table th { padding: 8px 10px; vertical-align: top; }

/* Form messages */
.rer-form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.rer-form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Single model page */
.single-model-hero { margin-top: 74px; }
.single-model-content { background: #fff; padding: 80px 60px; }
.single-model-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  max-width: 1200px; margin: 0 auto;
}
.single-model-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.single-model-gallery img { width: 100%; height: 200px; object-fit: cover; cursor: pointer; transition: opacity 0.3s; }
.single-model-gallery img:hover { opacity: 0.8; }
.single-model-main-img { width: 100%; height: 500px; object-fit: cover; }
.single-model-specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0;
}
.single-model-spec {
  background: #f5f5f5; padding: 20px; text-align: center;
}
.single-model-spec .spec-value {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold);
}
.single-model-spec .spec-label {
  font-size: 11px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

@media (max-width: 1024px) {
  .preventivo-grid { grid-template-columns: 1fr; }
  .single-model-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  .cta-section { padding: 80px 30px; }
  .preventivo-section { padding: 80px 30px; }
  .single-model-content { padding: 60px 30px; }
}

/* ═══ MOBILE HAMBURGER & MENU ═══ */
.navbar .nav-mobile-toggle,
button.nav-mobile-toggle,
#nav-mobile-toggle {
  display: none !important; /* HIDDEN on desktop */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
  padding: 8px !important;
  margin: 0 !important;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
  width: auto !important;
  min-height: auto !important;
  line-height: 1 !important;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile-overlay.active {
  opacity: 1;
}

/* Mobile phone + hamburger group - hidden on desktop */
.nav-mobile-right {
  display: none;
}
.nav-mobile-phone {
  display: none;
}

@media (max-width: 768px) {
  /* === NAVBAR MOBILE: logo LEFT, phone+hamburger RIGHT === */
  .navbar {
    padding: 12px 16px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .navbar.scrolled {
    padding: 10px 16px;
  }

  /* Logo: left */
  .nav-logo {
    order: 1;
    flex-shrink: 0;
  }

  /* Hide desktop nav + CTA */
  .nav-right-group {
    display: none !important;
  }

  /* Hide standalone hamburger (now inside nav-mobile-right) */
  .navbar > .nav-mobile-toggle {
    display: none !important;
  }

  /* Mobile right group: phone + hamburger */
  .nav-mobile-right {
    display: flex !important;
    align-items: center;
    gap: 16px;
    order: 3;
  }
  .nav-mobile-phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--navy);
    transition: color 0.3s;
  }
  .nav-mobile-phone:hover {
    color: var(--gold);
  }
  .nav-mobile-right #nav-mobile-toggle,
  .nav-mobile-right .nav-mobile-toggle {
    display: flex !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 8px !important;
    margin: 0 !important;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: auto !important;
    min-height: auto !important;
    line-height: 1 !important;
  }
  .nav-mobile-right .nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .nav-mobile-right .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-mobile-right .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-mobile-right .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* === MOBILE SLIDE MENU — more spacing === */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 0;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li a,
  .nav-links a,
  .nav-links .menu-item a,
  .nav-links .menu-item > a,
  .navbar .nav-links li a,
  .navbar .nav-links .menu-item a {
    display: block !important;
    padding: 22px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--navy) !important;
    text-decoration: none !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .nav-links li,
  .nav-links .menu-item {
    list-style: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-links li a:hover,
  .nav-links a:hover,
  .nav-links .current-menu-item > a,
  .navbar .nav-links .current-menu-item > a {
    color: var(--gold) !important;
  }

  /* === HERO FIX: account for fixed navbar === */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 80px;
  }
  .page-hero {
    padding-top: 80px;
    min-height: 380px;
    height: 50vh;
    box-sizing: border-box;
  }
  .page-hero-content {
    max-width: 100% !important;
    padding: 0 20px !important;
    width: 100%;
  }
  .page-hero-title {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.2 !important;
  }
  .page-hero-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding: 0 !important;
  }
  .section-label {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin-bottom: 10px !important;
  }
  .page-hero-short {
    padding-top: 80px;
    min-height: 240px;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px) !important;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 16px;
  }
  .hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
  .hero-scroll { display: none; }
  
  /* === INTRO MOBILE === */
  .intro {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 60px 20px;
  }
  .intro-image img {
    height: 300px;
  }
  .intro-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* === MODELS MOBILE === */
  .models {
    padding: 60px 20px;
  }
  .models-grid {
    grid-template-columns: 1fr !important;
  }
  .models-header {
    margin-bottom: 40px;
  }
  .models-detail {
    padding: 60px 20px !important;
  }
  .model-detail-block {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .model-detail-block:nth-child(even) {
    direction: ltr !important;
  }
  .model-detail-name {
    font-size: 32px;
  }
  .model-detail-img {
    height: 280px;
  }
  .model-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .spec-value {
    font-size: 22px;
  }
  .spec-label {
    font-size: 10px;
  }

  /* === FEATURES MOBILE === */
  .features-strip {
    grid-template-columns: 1fr !important;
  }

  /* === FOOTER MOBILE === */
  .footer {
    padding: 60px 20px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* === CONTACT MOBILE === */
  .contact-section {
    padding: 60px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
  /* Select fix mobile */
  .form-select,
  select.form-select,
  #rer-form select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 44px 14px 16px !important;
    font-size: 14px !important;
    color: var(--navy) !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* === PREVENTIVO MOBILE === */
  .preventivo-grid {
    grid-template-columns: 1fr !important;
  }
  .preventivo-section {
    padding: 60px 20px;
  }

  /* === CTA MOBILE === */
  .cta-section {
    padding: 60px 20px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* === GALLERY MOBILE === */
  .gallery-section {
    padding: 60px 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .gallery-filters {
    gap: 8px;
  }
  .gallery-filter {
    padding: 8px 16px;
    font-size: 11px;
  }

  /* === VALUES MOBILE === */
  .values-grid {
    grid-template-columns: 1fr !important;
  }
  .values-section {
    padding: 60px 20px;
  }

  /* === PAGE HERO MOBILE === */
  .page-hero {
    min-height: 380px;
    height: 50vh;
    padding-top: 80px;
    box-sizing: border-box;
  }
  .page-hero-title {
    font-size: clamp(28px, 8vw, 42px) !important;
  }
  .page-hero-content {
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  /* === ABOUT MOBILE === */
  .about-content {
    padding: 60px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .about-img {
    height: 300px;
  }

  /* === TIMELINE MOBILE === */
  .timeline-section {
    padding: 60px 20px;
  }

  /* === LIFESTYLE MOBILE === */
  .lifestyle {
    height: 400px;
    padding: 40px 20px;
  }

  /* === SINGLE MODEL MOBILE === */
  .single-model-content {
    padding: 60px 20px;
  }
  .single-model-grid {
    grid-template-columns: 1fr !important;
  }
  .single-model-main-img {
    height: 300px;
  }
  .single-model-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══ HERO OVERLAY CONTROL ═══ */
.hero-overlay {
  --overlay-opacity: 0.5;
}
.hero-overlay[data-opacity="0"] { background: none !important; }
.hero-overlay[data-opacity="0.1"],
.hero-overlay[data-opacity="0.2"],
.hero-overlay[data-opacity="0.3"],
.hero-overlay[data-opacity="0.4"],
.hero-overlay[data-opacity="0.5"],
.hero-overlay[data-opacity="0.6"],
.hero-overlay[data-opacity="0.7"],
.hero-overlay[data-opacity="0.8"],
.hero-overlay[data-opacity="0.9"],
.hero-overlay[data-opacity="1"] {
  background: linear-gradient(180deg, 
    rgba(10,22,40,calc(var(--overlay-opacity) * 0.8)) 0%, 
    rgba(10,22,40,calc(var(--overlay-opacity) * 0.4)) 40%, 
    rgba(10,22,40,var(--overlay-opacity)) 100%) !important;
}

/* ═══ NEWS SECTION ═══ */
.news-section {
  background: #fff;
  padding: 80px 60px 100px;
}
.news-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Filters */
.news-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.news-filter {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-filter:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.news-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Year Group */
.news-year-group {
  margin-bottom: 50px;
}
.news-year-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 24px;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* News Card */
.news-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #eef3f6;
  padding: 32px 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* Icon */
.news-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #8a9bb0;
}
.news-card-icon svg {
  width: 42px;
  height: 42px;
}

/* Body */
.news-card-body {
  flex: 1;
  min-width: 0;
}

/* Meta (date + author) */
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.news-card-date {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
}
.news-card-author {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #999;
}
.news-card-author svg {
  opacity: 0.5;
}

/* Title */
.news-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Text */
.news-card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.news-card-text p {
  margin-bottom: 12px;
}
.news-card-text p:last-child {
  margin-bottom: 0;
}

/* Category badges */
.news-card-cats {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.news-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(204,27,43,0.08);
  padding: 4px 14px;
}

/* Empty State */
.news-empty {
  text-align: center;
  padding: 80px 20px;
}
.news-empty h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}
.news-empty p {
  font-size: 14px;
  color: #999;
}

/* ═══ SINGLE NEWS ═══ */
.single-news-content {
  background: #fff;
  padding: 80px 60px;
}
.single-news-container {
  max-width: 750px;
  margin: 0 auto;
}
.single-news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.single-news-date,
.single-news-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777;
}
.single-news-date svg,
.single-news-author svg {
  opacity: 0.5;
}
.single-news-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(204,27,43,0.06);
  padding: 4px 12px;
}
.single-news-body {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
}
.single-news-body p {
  margin-bottom: 18px;
}
.single-news-back {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.single-news-back a {
  display: inline-flex;
  align-items: center;
}

/* ═══ NEWS RESPONSIVE ═══ */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 20px;
  }
  .news-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
  .news-filter {
    padding: 8px 14px;
    font-size: 11px;
  }
  .news-year-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .news-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .news-card-icon {
    width: 32px;
    height: 32px;
  }
  .news-card-icon img {
    width: 32px;
    height: 32px;
  }
  .news-card-title {
    font-size: 14px;
  }
  .news-card-text {
    font-size: 13px;
  }
  .single-news-content {
    padding: 60px 20px;
  }
  .single-news-meta {
    gap: 12px;
  }
}

/* ═══ LEGAL PAGES (Privacy & Cookie Policy) ═══ */
.page-hero-short {
  min-height: 250px;
  height: 30vh;
}
.legal-content {
  background: #fff;
  padding: 80px 60px;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  font-size: 15px;
  line-height: 1.9;
}
.legal-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 40px;
  font-style: italic;
}
.legal-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.legal-container h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-container p {
  margin-bottom: 14px;
}
.legal-container ul {
  margin: 0 0 16px 24px;
  padding: 0;
}
.legal-container ul li {
  margin-bottom: 8px;
}
.legal-container a {
  color: var(--gold);
  text-decoration: none;
}
.legal-container a:hover {
  text-decoration: underline;
}
.legal-box {
  background: #f7f8fa;
  border-left: 3px solid var(--navy);
  padding: 20px 24px;
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.8;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}
.legal-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.legal-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  color: #555;
}
.legal-table tr:nth-child(even) td {
  background: #f9fafb;
}

@media (max-width: 768px) {
  .page-hero-short {
    min-height: 240px;
    height: 30vh;
    padding-top: 80px;
    box-sizing: border-box;
  }
  .legal-content {
    padding: 60px 20px;
  }
  .legal-table {
    font-size: 12px;
  }
  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }
}
