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

:root {
  --dark-red: #6b1a1a;
  --deep-red: #4a0f0f;
  --nav-bg: #3a0a0a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf8f3;
  --soft-white: #f0ece3;
  --text: #2d2d2d;
  --muted: #6b7280;
  --white: #ffffff;
  --messenger: #0084ff;
  /* Hero uses a slightly lighter red so it's visually distinct from nav */
  --hero-bg: #5c1414;
}

body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* ============================
   NAV WITH DROPDOWNS
   ============================ */
nav {
  background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(201,168,76,0.22), 0 4px 20px rgba(74,15,15,0.06);
  min-height: 58px;
  height: 58px;
  gap: 1rem;
}
.logo { font-family: 'Playfair Display', serif; color: var(--dark-red); font-size: 1.25rem; letter-spacing: 0.02em; text-decoration: none; display: block; line-height: 1.2; flex-shrink: 0; padding: 0.35rem 0; }
.logo span { color: var(--muted); font-weight: 400; font-family: 'DM Sans', sans-serif; font-size: 0.74rem; display: block; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.12rem; }
.hamburger { display: none; background: var(--white); border: 1px solid rgba(201,168,76,0.35); border-radius: 6px; cursor: pointer; padding: 0.45rem 0.55rem; flex-direction: column; gap: 5px; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s, background 0.2s; }
.hamburger:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--dark-red); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-close-btn { display: none; }
.nav-links { display: flex; align-items: center; gap: 0; height: 58px; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a { color: var(--dark-red); text-decoration: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 0 0.65rem; height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-item > a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-item > a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-item > a.cta { background: var(--dark-red); color: #fff; font-weight: 700; border-radius: 5px; padding: 0.38rem 0.9rem; margin-left: 0.4rem; height: auto; border-bottom: none; font-size: 0.78rem; }
.nav-item > a.cta:hover { background: var(--deep-red); color: var(--gold); border-bottom: none; }
.nav-item > a.cta.active { background: var(--deep-red); color: var(--gold); border-bottom: none; }
.nav-item.has-dropdown > a::after { content: ' ▾'; font-size: 0.85rem; opacity: 0.7; margin-left: 0.2rem; }
.dropdown { display: none; position: absolute; top: calc(100% + 1px); left: 0; min-width: 230px; background: #ffffff; border: 1px solid #e0dbd0; border-top: 2px solid var(--dark-red); border-radius: 0 0 8px 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); z-index: 300; padding: 0.35rem 0; }
.nav-item.has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; color: var(--dark-red); text-decoration: none; font-size: 0.79rem; font-weight: 500; padding: 0.6rem 1rem; transition: all 0.15s; border-left: 3px solid transparent; white-space: nowrap; }
.dropdown a:hover { background: var(--soft-white); border-left-color: var(--gold); }

body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(26, 5, 5, 0.45);
  z-index: 190;
  animation: navFadeIn 0.25s ease both;
}
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================
   HERO / BANNER
   — Uses --hero-bg (lighter red) so it's
     visually distinct from the nav
   ============================ */
.hero {
  background: var(--hero-bg);
  color: var(--white);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 1rem; color: #ffffff; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: clamp(0.95rem, 2.5vw, 1.05rem); color: rgba(255,255,255,0.78); max-width: 480px; margin: 0 auto 2rem; font-weight: 300; }
.hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* PAGE HEADER — same lighter red */
.page-header {
  background: var(--hero-bg);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header > * { position: relative; }
.page-header .section-label { color: var(--gold); margin-bottom: 0.6rem; display: block; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 0.8rem; color: #ffffff; }
.page-header h1 em { color: var(--gold); font-style: normal; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto; font-weight: 300; font-size: 1rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.8rem 1.8rem; border-radius: 6px; font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--deep-red); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline { border: 2px solid var(--dark-red); color: var(--dark-red); background: transparent; }
.btn-outline:hover { background: var(--dark-red); color: var(--white); transform: translateY(-2px); }

/* STATS BAR */
.stats { background: var(--white); border-bottom: 1px solid #e8e2d5; padding: 1.4rem 1.5rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark-red); font-weight: 700; display: block; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTION COMMON */
.section-label { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--dark-red); line-height: 1.2; margin-bottom: 0.8rem; }
.section-intro { color: var(--muted); font-size: 0.98rem; max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card { background: var(--white); border: 1px solid #e8e2d5; border-radius: 12px; padding: 1.6rem; transition: all 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform 0.3s; transform-origin: bottom; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(74,15,15,0.1); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark-red); margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.card-tag { display: inline-block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(201,168,76,0.12); color: var(--dark-red); border-radius: 4px; padding: 0.18rem 0.55rem; }

/* SOFT SECTION */
.soft-section { background: var(--soft-white); padding: 4rem 1.5rem; }
.soft-section-inner { max-width: 1100px; margin: 0 auto; }
.soft-section h2 { color: var(--dark-red); }
.soft-section .card { background: var(--white); }

/* DARK SECTION */
.dark-section { background: var(--deep-red); padding: 4rem 1.5rem; }
.dark-section-inner { max-width: 1100px; margin: 0 auto; }
.dark-section .section-label { color: var(--gold); }
.dark-section h2 { color: var(--white); }
.dark-section .section-intro { color: rgba(255,255,255,0.65); }
.dark-section .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.dark-section .card:hover { background: rgba(255,255,255,0.1); box-shadow: 0 12px 35px rgba(0,0,0,0.2); border-color: transparent; }
.dark-section .card h3 { color: var(--gold); }
.dark-section .card p { color: rgba(255,255,255,0.7); }

/* CTA BAND */
.cta-band { background: var(--deep-red); padding: 4rem 1.5rem; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 440px; margin: 0 auto 1.8rem; font-weight: 300; font-size: 1rem; }

/* CONTENT SECTION */
.content { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }

/* DIVIDER */
.divider { height: 1px; background: linear-gradient(to right, transparent, #d4c9b0, transparent); max-width: 1100px; margin: 0 auto; }

/* CONTACT */
.contact-section { background: var(--cream); padding: 4rem 1.5rem; text-align: center; }
.contact-card { background: var(--white); border: 1px solid #e8e2d5; border-radius: 16px; padding: 2rem 1.5rem; max-width: 520px; margin: 1.5rem auto 0; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid #f0ece3; text-align: left; }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-icon.messenger-icon { background: rgba(0,132,255,0.1); }
.contact-detail strong { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.12rem; }
.contact-detail a { color: var(--dark-red); font-weight: 500; text-decoration: none; font-size: 0.98rem; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail a.messenger-link { color: var(--messenger); }
.contact-detail a.messenger-link:hover { color: #0066cc; }
.messenger-badge { display: inline-block; font-size: 0.72rem; background: rgba(0,132,255,0.1); color: var(--messenger); border-radius: 4px; padding: 0.1rem 0.5rem; margin-left: 0.35rem; font-weight: 500; vertical-align: middle; }


/* Sub-dropdown (flyout) */
.dropdown-item.has-sub { position: relative; }
.dropdown-item.has-sub > a::after { content: ' ›'; float: right; font-size: 0.85rem; opacity: 0.7; }
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e0dbd0;
  border-top: 2px solid var(--dark-red);
  border-radius: 0 8px 8px 0;
  box-shadow: 6px 6px 20px rgba(0,0,0,0.1);
  z-index: 400;
  padding: 0.35rem 0;
}
.dropdown-item.has-sub:hover .sub-dropdown { display: block; }
.sub-dropdown a {
  display: block;
  color: var(--dark-red);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.15s;
  border-left: 3px solid transparent;
  white-space: nowrap;
}
.sub-dropdown a:hover { background: var(--soft-white); border-left-color: var(--gold); }

/* Mobile: flyout nav + sub-dropdowns flat */
@media (max-width: 900px) {
  nav { height: auto; min-height: 58px; }
  .hamburger {
    display: flex;
    z-index: 220;
    position: relative;
  }
  /* Hide menu icon while drawer is open (matches common mobile UX) */
  body.nav-open .hamburger {
    display: none !important;
  }

  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    align-self: flex-end;
    margin: 0.5rem 0.85rem 0.35rem 1rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.85rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-close-btn:hover { color: var(--dark-red); background: var(--soft-white); }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100vw - 3rem, 320px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 0 2rem;
    gap: 0;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,0.15);
    border-left: 1px solid rgba(201,168,76,0.25);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #f0ece3;
  }
  .nav-item > a {
    padding: 0.95rem 1.25rem;
    height: auto;
    min-height: 48px;
    border-bottom: none;
    justify-content: flex-start;
  }
  .nav-item > a.cta {
    margin: 0.85rem 1.25rem 0;
    justify-content: center;
  }

  .nav-item.has-dropdown:hover .dropdown { display: none; }
  .nav-item.has-dropdown.open .dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.35rem;
    background: var(--soft-white);
    border-top: 1px solid #e8e2d5;
  }
  .nav-item.has-dropdown.open > a {
    color: var(--gold);
  }
  .dropdown a {
    padding: 0.55rem 1.25rem 0.55rem 1.85rem;
    font-size: 0.8rem;
    border-left: none;
    white-space: normal;
  }

  .dropdown-item.has-sub > a::after { content: ' ▾'; }
  .sub-dropdown {
    position: static !important;
    display: none !important;
    left: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0,0,0,0.06);
    padding: 0;
  }
  .dropdown-item.has-sub.open .sub-dropdown { display: block !important; }
  .sub-dropdown a { padding: 0.4rem 1.5rem; font-size: 0.76rem; color: var(--muted); border-left: none; }
}

/* FOOTER */
footer { background: #1a0505; color: rgba(255,255,255,0.5); text-align: center; padding: 1.8rem; font-size: 0.82rem; }
footer span { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 3rem 1.2rem 4rem; }
  .hero h1 { font-size: 1.9rem; }
  .stats { gap: 1.2rem; }
  .cards-grid { grid-template-columns: 1fr; }
}
