/* The Shepherd — Marketing Site Styles
   Design system matches the mobile app: parchment, gold, serif typography. */

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

:root {
  --parchment: #F5EFE3;
  --parchment-deep: #EDE0C8;
  --gold: #C9A84C;
  --gold-dark: #8C6E28;
  --gold-light: #E8C97A;
  --ink-dark: #2A1F0E;
  --ink-mid: #5C4A2A;
  --ink-light: #8C7250;
  --ink-faint: #B09870;
  --white: #FFFCF5;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: rgba(140, 110, 60, 0.15);
}

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

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

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink-dark);
  background: var(--parchment);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-gold { background: var(--gold); color: var(--white); }
.section-gold h2,
.section-gold h3 { color: var(--white); }

.text-center { text-align: center; }

/* --- Navigation --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 239, 227, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 22px;
  color: var(--ink-dark);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-mid); letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 10px 24px; border-radius: 24px;
  font-weight: 500; font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); }

/* --- Hero --- */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ink-dark);
  margin-bottom: 8px;
}
.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--ink-mid);
  margin-bottom: 32px;
}
.hero .verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-light);
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 32px;
  font-family: 'Lora', serif; font-weight: 500; font-size: 15px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* --- About / Intro --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-grid h2 { font-size: 2.2rem; margin-bottom: 16px; }
.intro-grid p { color: var(--ink-mid); margin-bottom: 16px; font-size: 1.05rem; }
.intro-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.intro-highlight blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-dark);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 8px;
}
.intro-highlight cite {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.3s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--ink-dark);
}
.feature-card p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.step { text-align: center; }
.step-number {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.4rem;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--ink-mid); font-size: 0.95rem; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px var(--shadow);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  padding: 4px 16px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.price-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 12px 0 4px;
}
.price-card .price-period {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.price-card li {
  padding: 6px 0;
  color: var(--ink-mid);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.price-card li::before {
  content: "\2713\00a0";
  color: var(--gold);
  font-weight: bold;
}

/* --- AI Section --- */
.ai-section {
  background: var(--ink-dark);
  color: var(--parchment);
  padding: 80px 0;
}
.ai-section h2 { color: var(--gold-light); font-size: 2.2rem; margin-bottom: 16px; }
.ai-section p { color: rgba(245, 239, 227, 0.8); max-width: 700px; margin: 0 auto 16px; font-size: 1.05rem; }
.ai-section .highlight { color: var(--gold-light); font-weight: 500; }

/* --- FAQ --- */
.faq { max-width: 720px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--ink-dark);
  margin-bottom: 8px;
  cursor: default;
}
.faq-item p { color: var(--ink-mid); font-size: 0.95rem; }

/* --- Footer --- */
.footer {
  background: var(--ink-dark);
  color: var(--ink-light);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--parchment);
  margin-bottom: 12px;
}
.footer p { font-size: 0.9rem; line-height: 1.6; }
.footer h4 {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--ink-faint); font-size: 0.9rem; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); margin-left: 24px; }

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
