/* ============================================
   Scout Family Products
   Luxury aesthetic — Bugatti/Gucci/Cartier
   ============================================ */

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

:root {
  --gold: #B8960C;
  --gold-soft: #C9AA3A;
  --black: #080604;
  --black-soft: #2A2622;
  --cream: #F5F0E8;
  --cream-deep: #ECE4D6;
  --hairline: rgba(8, 6, 4, 0.12);
  --hairline-gold: rgba(184, 150, 12, 0.35);

  --display: 'Playfair Display', Georgia, serif;
  --body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1180px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--black);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
}

p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--black-soft);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 2rem auto;
}

.divider-left {
  margin: 2rem 0;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
}

.brand:hover {
  color: var(--black);
}

.brand-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.625rem;
  vertical-align: middle;
  transform: translateY(-2px);
}

.nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  text-align: center;
  position: relative;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
}

.hero h1 {
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}

.hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--black-soft);
  max-width: 38ch;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  background: transparent;
  transition: all 0.3s ease;
}

.coming-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   Sections
   ============================================ */

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.section-intro .eyebrow {
  margin-bottom: 1rem;
}

.section-intro h2 {
  max-width: 22ch;
  margin: 0 auto 1.25rem;
}

.section-intro p {
  max-width: 56ch;
  margin: 0 auto;
}

/* ============================================
   Modules grid
   ============================================ */

.modules {
  border-top: 1px solid var(--hairline);
  background: var(--cream-deep);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.module {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--hairline);
  position: relative;
}

.module:last-child {
  border-right: none;
}

.module-number {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.module h3 {
  margin-bottom: 0.75rem;
}

.module p {
  font-size: 0.9375rem;
  color: var(--black-soft);
}

@media (max-width: 768px) {
  .module {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .module:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Prose page (about, privacy)
   ============================================ */

.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

.prose .page-eyebrow {
  text-align: center;
  margin-bottom: 1rem;
}

.prose h1 {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 3rem;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline-gold);
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  color: var(--black-soft);
  line-height: 1.7;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.prose strong {
  color: var(--black);
  font-weight: 600;
}

.last-updated {
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black-soft);
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}

/* ============================================
   Contact / CTA section
   ============================================ */

.contact {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact .eyebrow {
  color: var(--gold);
}

.contact h2 {
  color: var(--cream);
  margin: 1rem auto 2rem;
  max-width: 24ch;
}

.contact a.email {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--cream);
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.contact a.email:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(184, 150, 12, 0.2);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.125rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--cream);
  opacity: 0.75;
}

.footer-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.disclosure {
  width: 100%;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.02em;
}

.copyright {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 1.5rem;
}

/* ============================================
   Subtle entrance
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .eyebrow { animation: fadeUp 0.8s ease-out 0.1s both; }
.hero h1 { animation: fadeUp 0.8s ease-out 0.25s both; }
.hero .lede { animation: fadeUp 0.8s ease-out 0.4s both; }
.hero .coming-soon { animation: fadeUp 0.8s ease-out 0.55s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
