/* ═══════════════════════════════════════
   SALADAURA — SHARED STYLES
   Used by: about, faq, privacy, terms, careers, blog
═══════════════════════════════════════ */

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

:root {
  --cream: #F5F0E8;
  --cream-dk: #EDE7D6;
  --white: #FDFAF6;
  --green: #2D5016;
  --green-md: #4A7C20;
  --green-lt: #7BA05B;
  --orange: #E06B2A;
  --orange-lt: #F08C50;
  --text: #2A2A2A;
  --text-muted: #7A7A7A;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,80,22,0.08);
  padding: 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  gap: 24px;
}
.nav-logo { height: 48px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--green);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--green); color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }

/* ─── INNER CONTAINER ─── */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 60px 0 52px; }
.page-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 50px); font-weight: 700;
  color: var(--green); line-height: 1.15; margin-bottom: 14px;
}
.page-title em { color: var(--orange); font-style: italic; }
.page-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.65; }

/* ─── PAGE SECTION ─── */
.page-section { padding: 64px 0; }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,38px);
  font-weight: 700; color: var(--green); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--orange); font-style: italic; }
.body-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.text-center { text-align: center; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--green); color: #fff; font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--green); font-size: 14px; font-weight: 600;
  padding: 12px 26px; border-radius: 50px; text-decoration: none; border: 2px solid var(--green);
  display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white {
  background: #fff; color: var(--green); font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-white:hover { background: var(--orange); color: #fff; }

/* ─── PAGE CTA BAND ─── */
.page-cta {
  background: linear-gradient(135deg, var(--green) 0%, #4A7C20 100%);
  padding: 64px 40px; text-align: center;
}

/* ─── ABOUT PAGE ─── */
.page-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap img { width: 100%; border-radius: 22px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.value-card { background: var(--white); border-radius: 18px; padding: 28px 22px; border: 1px solid rgba(45,80,22,0.08); text-align: center; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--green); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.mission-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mstat { background: var(--cream); border-radius: 16px; padding: 24px; text-align: center; }
.mstat-num { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px; }
.mstat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── FOOTER (simplified) ─── */
footer { background: var(--green); color: #fff; padding: 44px 0 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; text-align: center; }
.footer-logo-wrap { display: inline-block; background: var(--cream); border-radius: 12px; padding: 8px 14px; margin-bottom: 14px; }
.footer-logo-wrap img { height: 38px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-lt); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; margin-top: 6px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-two-col, .mission-block { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .inner { padding: 0 24px; }
  .nav-inner { padding: 12px 20px; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .page-section { padding: 44px 0; }
  .page-hero { padding: 40px 0 36px; }
  .footer-inner { padding: 0 20px; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
}
