/* ─────────────────────────────────────────
   thymlychef.com — shared styles
   Fresh Garden theme
───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --green:       #1a6b3c;
  --green-mid:   #2e8b57;
  --green-dark:  #0f4228;
  --green-light: #e8f5ee;
  --green-muted: #c0ddc8;
  --green-faint: #f4faf6;
  --amber:       #d4870a;
  --amber-light: #fef6e4;
  --text:        #1c1f1c;
  --text-muted:  #6b7c6b;
  --border:      #dce8dc;
  --white:       #ffffff;
  --surface:     #f7f9f6;
  --radius:      12px;
  --radius-sm:   7px;
  --shadow-sm:   0 1px 4px rgba(26,107,60,0.07);
  --shadow:      0 2px 16px rgba(26,107,60,0.10);
  --shadow-lg:   0 8px 40px rgba(26,107,60,0.13);
  --max-w:       760px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 500; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--green);
  padding: 52px 24px 44px;
  text-align: center;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero .effective {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.09);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── CONTENT AREA ─── */
.content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 24px 80px;
}

/* ─── TYPOGRAPHY ─── */
.content h2 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 44px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  letter-spacing: -0.2px;
}
.content h2:first-child { margin-top: 0; }

.content h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin: 24px 0 8px;
}

.content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content ul, .content ol {
  margin: 10px 0 16px 20px;
}
.content li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

.content a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green-muted);
  transition: border-color 0.15s;
}
.content a:hover { border-color: var(--green); }

.content strong { font-weight: 500; color: var(--green-dark); }

/* ─── CALLOUT BOXES ─── */
.callout {
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
  border-left: 4px solid;
}
.callout-green {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}
.callout-amber {
  background: var(--amber-light);
  border-color: var(--amber);
  color: #5a3800;
}
.callout p { color: inherit; margin-bottom: 0; font-size: 14px; }
.callout strong { color: inherit; font-weight: 600; }
.callout-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ─── CONTACT CARD ─── */
.contact-card {
  background: var(--green-faint);
  border: 1px solid var(--green-muted);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.contact-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.contact-sub a { color: var(--green); border-bottom: 1px solid var(--green-muted); text-decoration: none; }

/* ─── STEP CARDS ─── */
.step-list { list-style: none; margin: 0 0 16px; padding: 0; }
.step-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body { flex: 1; }
.step-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-dark);
  padding: 32px 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .content { padding: 36px 18px 60px; }
  .contact-card { flex-direction: column; gap: 12px; }
}
