:root {
  --orange: #FF6200;
  --orange-light: #FF8533;
  --orange-dark: #E55800;
  --dark: #0D0D0D;
  --gray-700: #3D3D3D;
  --gray-500: #6B6B6B;
  --gray-100: #E5E5E5;
  --cream: #FAF9F7;
  --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--cream); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; height: 72px; background: rgba(250, 249, 247, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); z-index: 1000; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 48px; max-width: 1600px; margin: 0 auto; }
.nav__logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--dark); }
.nav__logo-icon { width: 44px; height: 44px; }
.nav__logo-text { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.nav__links { display: flex; gap: 8px; }
.nav__link { font-size: 13px; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 10px 18px; border-radius: 6px; transition: all 0.15s ease; }
.nav__link:hover { color: var(--dark); background: rgba(0,0,0,0.04); }
.nav__link--active { color: var(--orange); background: rgba(255, 98, 0, 0.08); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; z-index: 999; border-bottom: 1px solid rgba(0,0,0,0.06); flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); text-decoration: none; }
@media (max-width: 900px) { .nav__inner { padding: 0 24px; } .nav__links { display: none; } .mobile-toggle { display: block; } .nav__logo-text { font-size: 13px; } }

/* LAYOUT */
main { padding-top: 72px; }
.section { padding: 120px 48px; }
.section--sm { padding: 80px 48px; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark .body-lg, .section--dark .body-md { color: rgba(255,255,255,0.75); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--gradient { background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%); color: var(--white); }
.container { max-width: 1400px; margin: 0 auto; }
.container--narrow { max-width: 800px; margin: 0 auto; }
.container--text { max-width: 680px; margin: 0 auto; }
@media (max-width: 900px) { .section { padding: 80px 24px; } .section--sm { padding: 60px 24px; } }

/* TYPOGRAPHY */
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.eyebrow--light { color: rgba(255,255,255,0.6); }
.headline-xl { font-family: 'Playfair Display', serif; font-size: clamp(42px, 7vw, 80px); font-weight: 400; line-height: 1.05; letter-spacing: -0.03em; }
.headline-lg { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; }
.headline-md { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 36px); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
.body-lg { font-size: 18px; line-height: 1.75; color: var(--gray-700); }
.body-md { font-size: 16px; line-height: 1.7; color: var(--gray-700); }
.body-md + .body-md { margin-top: 20px; }
.accent { color: var(--orange); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* HERO */
.hero { min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; padding: 80px 48px; background: #1a0f0a; position: relative; overflow: hidden; }
.hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero__headline { color: var(--white); margin-bottom: 32px; }
.hero__subtitle { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.65; color: rgba(255,255,255,0.7); max-width: 700px; margin-bottom: 48px; }
.hero__cta { display: inline-flex; align-items: center; gap: 12px; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 600; padding: 16px 32px; border-radius: 8px; text-decoration: none; transition: all 0.2s ease; }
.hero__cta:hover { background: var(--orange-light); transform: translateY(-2px); }
@media (max-width: 900px) { 
  .hero { padding: 60px 24px 100px; align-items: center; } 
  .hero__headline { margin-bottom: 20px; }
  .hero__subtitle { margin-bottom: 28px; line-height: 1.55; }
}
@media (max-width: 500px) { 
  .hero { padding: 40px 20px 100px; }
  .hero__headline { font-size: 34px; margin-bottom: 16px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 24px; }
  .hero__cta { padding: 14px 24px; font-size: 13px; }
}

/* SCROLL INDICATOR */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; animation: bounce 2s infinite; z-index: 100; transition: opacity 0.3s ease; }
.scroll-indicator svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.5); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(8px); } 60% { transform: translateX(-50%) translateY(4px); } }
@media (max-width: 768px) { 
  .scroll-indicator { 
    position: fixed; 
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%);
  }
  @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(8px); } 60% { transform: translateX(-50%) translateY(4px); } }
}

/* PAGE HEADER */
.page-header { padding: 100px 48px 80px; background: var(--dark); color: var(--white); }
.page-header__inner { max-width: 800px; }
.page-header__title { margin-bottom: 20px; }
.page-header__subtitle { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 600px; }
@media (max-width: 900px) { .page-header { padding: 80px 24px 60px; } }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 32px; transition: all 0.2s ease; }
.card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255, 98, 0, 0.08); transform: translateY(-4px); }
.card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__icon svg { width: 24px; height: 24px; color: var(--white); }
.card__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card__text { font-size: 14px; line-height: 1.6; color: var(--gray-500); }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr; gap: 24px; } }
.stat { text-align: center; padding: 40px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; }
.stat__number { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 400; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.stat__label { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 8px; }
.stat__source { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* STATS LIGHT (for cream/white backgrounds) */
.stats--light .stat { background: var(--white); border: 1px solid var(--gray-100); box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.stats--light .stat__label { color: var(--gray-700); }
.stats--light .stat__source { color: var(--gray-500); }

/* CONTENT BLOCKS */
.content-block { padding: 28px 0 28px 28px; border-left: 3px solid var(--orange); margin-bottom: 32px; }
.content-block:last-child { margin-bottom: 0; }
.content-block__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--dark); }
.content-block__text { font-size: 16px; line-height: 1.7; color: var(--gray-700); }

/* QUOTE */
.quote { background: var(--white); border-radius: 16px; padding: 40px; margin: 48px 0; position: relative; border-left: 4px solid var(--orange); }
.quote__text { font-family: 'Playfair Display', serif; font-size: 22px; line-height: 1.6; color: var(--dark); position: relative; z-index: 1; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); padding: 80px 48px; text-align: center; }
.cta-section__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 16px; }
.cta-section__text { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; }
@media (max-width: 900px) { .cta-section { padding: 60px 24px; } }

/* CONTACT FORM */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px; font-size: 16px; font-family: inherit; border: 1px solid var(--gray-100); border-radius: 8px; background: var(--white); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 98, 0, 0.1); }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-submit { display: inline-flex; align-items: center; gap: 12px; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 600; padding: 16px 32px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s ease; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }
.form-success { background: rgba(255, 98, 0, 0.08); border: 1px solid var(--orange); border-radius: 12px; padding: 24px; text-align: center; display: none; }
.form-success.show { display: block; }
.form-success p { color: var(--dark); font-weight: 500; }

/* FADE IN ON SCROLL */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* STAGGER CHILDREN */
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--dark); color: var(--white); padding: 80px 48px 48px; }
.footer__inner { max-width: 1400px; margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; margin-bottom: 64px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } footer { padding: 60px 24px 40px; } }
.footer__brand { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.footer__brand-icon { width: 48px; height: 48px; }
.footer__brand-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; line-height: 1.3; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 320px; }
.footer__heading { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s ease; }
.footer__link:hover { color: var(--orange); }
.footer__bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.4); }

/* UTILITIES */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
