:root {
  --brand-red: #ed1c24;
  --brand-red-dark: #c8141b;
  --brand-dark: #4a4a4a;
  --brand-darker: #2b2b2b;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-dark); }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo img { height: 42px; display: block; }
.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--brand-darker);
  font-weight: 500;
  font-size: 15px;
}
.nav-menu a:hover { color: var(--brand-red); }
.nav-phone {
  background: var(--brand-red);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s;
}
.nav-phone:hover { background: var(--brand-red-dark); color: #fff !important; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 24px;
  color: var(--brand-darker);
}

/* Hero / Slider */
.hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
  background: #111;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content h1 span { color: var(--brand-red); }
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 620px;
  margin: 0 0 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, background .2s;
  cursor: pointer;
  border: 0;
}
.btn-primary { background: var(--brand-red); color: #fff !important; }
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}
.btn-secondary:hover { background: #fff; color: var(--brand-darker) !important; }

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: background .2s;
}
.slider-nav:hover { background: var(--brand-red); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider-dots button.active {
  background: var(--brand-red);
  transform: scale(1.2);
}

/* Sections */
section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--brand-darker);
  font-weight: 800;
}
.section-title span { color: var(--brand-red); }
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 50px;
  max-width: 680px;
}

/* About */
.bg-alt { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.feature:hover { transform: translateY(-4px); }
.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.feature h3 { margin: 0 0 10px; color: var(--brand-darker); font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  background: #eee;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  background: rgba(237,28,36,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity .25s, background .25s;
}
.gallery-item:hover::after { background: rgba(237,28,36,0.55); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--brand-red); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Contact */
.contact-section {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.contact-section .section-title { color: #fff; }
.contact-section .section-sub { color: rgba(255,255,255,0.75); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, background .2s;
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.contact-card .feature-icon { background: var(--brand-red); }
.contact-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.contact-card a, .contact-card p {
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
  word-break: break-word;
}
.contact-card a:hover { color: var(--brand-red); }

/* Footer */
footer.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.65);
  padding: 50px 20px 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.footer-grid h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 1rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: var(--brand-red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Floating call */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--brand-red);
  color: #fff !important;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(237,28,36,0.45);
  z-index: 50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(237,28,36,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(237,28,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 20px;
  z-index: 200;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  flex: 1;
  min-width: 280px;
}
.cookie-inner a { color: var(--brand-red); }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background .2s;
}
.btn-accept { background: var(--brand-red); color: #fff; }
.btn-accept:hover { background: var(--brand-red-dark); }
.btn-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3) !important;
}
.btn-reject:hover { background: rgba(255,255,255,0.08); }

/* Page (legal/blog) layouts */
.page-hero {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 70px 20px 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 10px;
  font-weight: 800;
}
.page-hero p { margin: 0; opacity: 0.85; }
.page-hero .breadcrumb {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: #fff; }

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}
.content h2 {
  color: var(--brand-darker);
  margin: 36px 0 14px;
  font-size: 1.5rem;
}
.content h3 {
  color: var(--brand-darker);
  margin: 28px 0 10px;
  font-size: 1.2rem;
}
.content p { margin: 0 0 16px; }
.content ul, .content ol { margin: 0 0 18px; padding-left: 22px; }
.content li { margin-bottom: 6px; }
.content a { font-weight: 500; }
.content blockquote {
  border-left: 4px solid var(--brand-red);
  background: var(--bg-alt);
  margin: 20px 0;
  padding: 16px 22px;
  color: var(--muted);
  font-style: italic;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--brand-darker);
}
.blog-card p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 0.95rem;
  flex: 1;
}
.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Article */
.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .nav-menu.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-phone { padding: 8px 14px; font-size: 13px; }
  .hero { height: 70vh; }
  section { padding: 60px 0; }
  .slider-nav { width: 38px; height: 38px; font-size: 16px; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-buttons button { flex: 1; }
}
