/* ===== Base ===== */
:root {
  --cream: #F9F5F0;
  --cream-dark: #F0E9E0;
  --beige: #E8DFD4;
  --gold: #C4A484;
  --gold-dark: #A88B6B;
  --brown: #5C4A3A;
  --brown-soft: #7A6555;
  --mauve: #8B7B7B;
  --text: #3D3229;
  --text-light: #6B5C4F;
  --white: #FFFbf7;
  --card: #FFFFFF;
  --shadow: 0 4px 24px rgba(92, 74, 58, 0.06);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

/* ===== Header ===== */
.site-header {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--mauve);
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 1rem auto 0;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto 0;
  opacity: 0.6;
}

/* ===== Nav ===== */
.section-nav {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.section-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
  padding: 0.9rem 0;
}

.section-nav a {
  font-size: 0.85rem;
  color: var(--brown-soft);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.section-nav a:hover {
  color: var(--gold-dark);
}

/* ===== Sections ===== */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--cream-dark);
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Idea box */
.idea-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
}

.idea-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--brown);
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.05rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3D3229;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Checklist grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
}

.check-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.check-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.highlight-box {
  background: linear-gradient(135deg, #F5EDE3, #EDE4D8);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border: 1px solid var(--beige);
}

.highlight-box p {
  margin: 0;
  color: var(--brown);
  font-size: 1.05rem;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col.equal {
  gap: 2rem;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.word-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 1.5rem 0 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.word-stack .plus {
  font-size: 1rem;
  color: var(--gold);
  margin: 0.1rem 0;
}

.message-box {
  background: #8B7B7B;
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
}

.message-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
  color: white;
}

.message-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  color: white;
}

.dont-list {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--beige);
}

.dont-list h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.dont-list ul {
  list-style: none;
}

.dont-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.98rem;
}

.dont-list .x {
  color: #C17B7B;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
  height: 100%;
}

.card h2 {
  font-size: 1.6rem;
}

.note-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}

.note-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.muted {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.change-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.change-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
}

.change-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.change-icon {
  font-size: 1.1rem;
}

.footnote {
  font-size: 0.85rem;
  color: var(--mauve);
  margin: 1rem 0 0;
  font-style: italic;
}

/* Mistake */
.mistake-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
  text-align: center;
}

.mistake-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1rem;
  font-weight: 600;
}

.mistake-box .emphasis {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--brown);
}

/* Messages grid */
.messages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .messages-grid {
    grid-template-columns: 1fr;
  }
}

.message-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige);
}

.message-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.message-card .soft {
  color: var(--text-light);
  font-size: 0.98rem;
}

.heart-list {
  list-style: none;
  margin: 1.25rem 0;
}

.heart-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
}

.heart-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.safety-note {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.15rem 1.35rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}

.safety-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Closing */
.closing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 4.5rem 0;
  text-align: center;
}

.logo-small {
  margin-bottom: 1.5rem;
}

.logo-small .brand {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.logo-small .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--mauve);
  text-transform: uppercase;
}

.closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.closing p {
  max-width: 520px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

.encouragement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem !important;
  color: var(--gold-dark) !important;
  font-weight: 600;
  margin-top: 1.75rem !important;
  letter-spacing: 0.03em;
}

/* Footer */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.7);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }
  
  .step {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .change-grid {
    grid-template-columns: 1fr;
  }
  
  .section-nav ul {
    gap: 0.5rem 1rem;
  }
  
  .section-nav a {
    font-size: 0.8rem;
  }
}
