/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:    #7B1E3A;
  --burgundy-dk: #5C1529;
  --burgundy-lt: #9E2A4C;
  --blush:       #FDEAE8;
  --blush-mid:   #F7D1CB;
  --cream:       #FFF8F6;
  --white:       #FFFFFF;
  --charcoal:    #2D2024;
  --text:        #3D2B30;
  --text-light:  #6B5258;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(123,30,58,0.08);
  --shadow-lg:   0 12px 48px rgba(123,30,58,0.12);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  line-height: 1.25;
}

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-lt); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,248,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,30,58,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  color: var(--burgundy);
}
.logo-light { color: var(--blush); }
.logo-icon { color: var(--burgundy); }
.logo-light .logo-icon { color: var(--blush); }

.main-nav ul {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.main-nav a {
  padding: 8px 16px; border-radius: 100px;
  font-weight: 600; font-size: 0.938rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--blush); color: var(--burgundy); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--burgundy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.938rem;
  border: 2px solid transparent; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-burgundy {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}
.btn-burgundy:hover { background: var(--burgundy-dk); border-color: var(--burgundy-dk); color: var(--white); box-shadow: var(--shadow-lg); }

.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--burgundy); border-color: var(--white); }

.btn-light {
  background: var(--white); color: var(--burgundy);
  border-color: var(--white);
}
.btn-light:hover { background: var(--blush); border-color: var(--blush); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; border-radius: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0; opacity: 0.45;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,32,36,0.88) 0%, rgba(123,30,58,0.72) 50%, rgba(45,32,36,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-tagline {
  display: inline-block;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(253,234,232,0.15);
  border: 1px solid rgba(253,234,232,0.3);
  color: var(--blush); font-weight: 700; font-size: 0.813rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 24px;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(253,234,232,0.85);
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-features {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.hf-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--blush); font-weight: 600; font-size: 0.938rem;
}
.hf-item svg { opacity: 0.8; }

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--blush); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.813rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.section-desc { color: var(--text-light); font-size: 1.063rem; }

/* ── GRID ─────────────────────────────────────────────────────────────── */
.grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* ── CARD ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--charcoal); }
.card-body p { color: var(--text-light); font-size: 0.938rem; }

/* ── SPLIT ────────────────────────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split-media { position: relative; }
.split-media img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.split-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--burgundy); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.875rem;
}
.split-text .section-eyebrow { margin-bottom: 12px; }
.split-text .section-title { margin-bottom: 20px; }
.split-text p { color: var(--text-light); margin-bottom: 20px; }

.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
  position: relative; padding-left: 28px; margin-bottom: 12px;
  color: var(--text); font-weight: 600;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--blush); border: 2px solid var(--burgundy);
  border-radius: 50%;
}
.check-list li::after {
  content: '';
  position: absolute; left: 4px; top: 5px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  transform: rotate(-45deg);
}

/* ── ABOUT ────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-images img:first-child {
  width: 100%; height: 450px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
}
.about-images img:last-child {
  width: 65%; height: 220px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-text .section-eyebrow { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.stats {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 32px; border-top: 1px solid var(--blush-mid);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--burgundy);
}
.stat-label { font-size: 0.813rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── CTA BANNER ──────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dk) 100%);
  padding: 80px 0; text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white); margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(253,234,232,0.85);
  font-size: 1.063rem; max-width: 560px; margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.info-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.info-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush); border-radius: var(--radius-sm);
  color: var(--burgundy);
}
.info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.info-card p { color: var(--text-light); font-size: 0.938rem; line-height: 1.6; }
.info-card a { color: var(--burgundy); }

.contact-form {
  background: var(--white); padding: 40px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.875rem;
  color: var(--charcoal); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 0.938rem;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123,30,58,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.form-success {
  text-align: center; padding: 16px;
  background: var(--blush); color: var(--burgundy-dk);
  border-radius: var(--radius-sm); font-weight: 700;
  margin-top: 16px;
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal); color: var(--blush);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand p { color: rgba(253,234,232,0.6); font-size: 0.938rem; margin-top: 16px; line-height: 1.8; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blush); margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(253,234,232,0.6); font-size: 0.938rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact p { margin-bottom: 12px; }
.footer-contact a { color: rgba(253,234,232,0.6); font-size: 0.938rem; }
.footer-contact a:hover { color: var(--blush); }

.footer-bottom {
  border-top: 1px solid rgba(253,234,232,0.1);
  padding: 24px 0; text-align: center;
}
.footer-bottom p { color: rgba(253,234,232,0.4); font-size: 0.813rem; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-hidden {
    opacity: 0;
    transform: translateY(32px);
  }
}

/* ── MOBILE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,248,246,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(123,30,58,0.08);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 14px 20px; }

  .split,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-media img { height: 350px; }
  .split-badge { bottom: -12px; right: 12px; }

  .about-images img:first-child { height: 300px; }
  .about-images img:last-child { width: 55%; height: 180px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .hero-features { gap: 20px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats { flex-direction: column; gap: 20px; }
}
