/* ============================================
   R. SANDAR — CLEAR HOME, CALM MIND
   Navy #1A365D | Gold #C5A55A | Cream #FFF8F0
   ============================================ */

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

:root {
  --navy: #1A365D;
  --navy-light: #2A4A6D;
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-nav {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo:hover { color: var(--gold-light); }
.nav-logo span { font-weight: 400; color: rgba(255,255,255,0.7); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: 0.3s; }

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { color: var(--cream); }
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-cover {
  text-align: center;
}
.hero-cover img {
  max-height: 520px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197,165,90,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--cream); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-navy .section-header h2 { color: var(--gold); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

/* CALM METHOD GRID */
.calm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.calm-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.calm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.calm-letter {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.calm-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.calm-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}
.feature-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* EMAIL FORM */
.email-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.email-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 2px solid rgba(26,54,93,0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.email-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.email-form button {
  white-space: nowrap;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* CTA BAND */
.cta-band {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1rem;
}
.cta-band .email-form input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.cta-band .email-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-band .form-note { color: rgba(255,255,255,0.4); }

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.about-text h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-text .signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

/* PERSONAS */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.persona-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.persona-card p { font-size: 0.9rem; color: var(--text-light); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: 48px 0 24px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-brand span { font-weight: 400; color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 0.85rem; margin-top: 4px; }
.footer-links { list-style: none; display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* FREE GUIDE PAGE */
.free-hero {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.free-hero h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.free-hero h1 em { color: var(--gold); }
.free-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.free-checklist {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 32px;
}
.free-checklist li {
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  list-style: none;
}
.free-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-title { font-size: 2rem; }
  .hero-quote { text-align: left; }
  .hero-cover img { max-height: 380px; }
  .btn-group { justify-content: center; }
  .calm-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
  }
  .email-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .section-header h2 { font-size: 1.8rem; }
  .free-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .calm-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
}
