@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-light: #F8E8EB;
  --red-glow: rgba(200, 16, 46, 0.08);
  --charcoal: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #CCC;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-w: 1200px;
  --header-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─────────────── HEADER ─────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.08); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 150px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.nav a:hover, .nav a.active { color: var(--red); background: var(--red-glow); }
.nav a.cta {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  margin-left: 8px;
}
.nav a.cta:hover { background: var(--red-dark); color: var(--white); }
.nav a.cta.active { background: var(--red-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ─────────────── PAGE BANNER ─────────────── */
.page-banner {
  margin-top: var(--header-h);
  padding: 80px 32px 60px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 50%, var(--red-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
}
.page-banner .section-label { margin-bottom: 16px; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  position: relative;
}
.page-banner h1 span { color: var(--red); }
.page-banner p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
  position: relative;
}
.breadcrumb a { color: var(--red); }

/* ─────────────── COMMON SECTIONS ─────────────── */
.section { padding: 100px 32px; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: var(--red-glow);
  border-radius: 6px;
}
.section-dark .section-label { background: rgba(200,16,46,0.2); }

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 600px;
  margin-bottom: 56px;
}
.section-dark .section-subtitle { color: var(--gray-500); }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.3); }
.btn-outline { background: transparent; color: var(--charcoal); border: 2px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-top: 16px;
  max-width: 280px;
}
.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--gray-300);
}
.footer a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer a:hover { color: var(--red); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* ─────────────── ANIMATIONS ─────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 968px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 32px; }
  .page-banner h1 { font-size: 36px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .nav.open a { font-size:clamp(15px,4vw,18px); line-height:1.4; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .header-inner { padding: 0 20px; }
  .page-banner { padding: 60px 20px 40px; }
  .page-banner h1 { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
}
