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

:root {
  --cream: #f5f3ee;
  --cream2: #eceae3;
  --forest: #1e3a2f;
  --forest-light: #2a4f3f;
  --gold: #e8b84b;
  --gold-light: #f0c96a;
  --ink: #1a1a18;
  --muted: #6b6b60;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #dedad0;
  --green-accent: #3a7d5c;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

a { color: inherit; }

.announcement {
  background: var(--forest);
  color: var(--gold);
  text-align: center;
  padding: 10px 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: var(--ink); background: var(--cream2); }

.btn-primary {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--forest);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }

.btn-cta {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: var(--gold);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-forest {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: 8px;
  padding: 11px 22px;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}

section { padding: 80px 5%; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

.center-text { text-align: center; }
.center-text .section-sub { margin: 0 auto; }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.pricing-hero,
.legal-hero {
  background: var(--forest);
  text-align: center;
  padding: 68px 5% 58px;
}

.pricing-hero h1,
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}

.pricing-hero p,
.legal-hero p {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-grid {
  max-width: 1100px;
  margin: 56px auto 24px;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.7rem;
  position: relative;
}

.pricing-card.featured { border: 2px solid var(--forest); }

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 14px;
  padding: 4px 14px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 3px;
}

.price-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  background: var(--cream2);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.price-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.pricing-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--cream2);
  font-size: 14px;
}

.pricing-card li:last-child { border-bottom: 0; }
.check { color: var(--green-accent); font-weight: 700; }

.pricing-reassurance {
  max-width: 980px;
  margin: 14px auto 0;
  padding: 0 5% 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reassure-item {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.pricing-faq {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 5% 90px;
}

.pricing-faq .faq-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-top: 10px;
}

.pricing-faq h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.pricing-faq p { color: var(--muted); font-size: 14px; }

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 5% 90px;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: #3d3a34;
}

.legal-body ul { padding-left: 1.15rem; margin: 0.6rem 0 1rem; }
.legal-body li { margin-bottom: 0.5rem; }

.highlight {
  background: #f0f7f3;
  border-left: 3px solid var(--green-accent);
  border-radius: 0 8px 8px 0;
  padding: 13px 14px;
  font-size: 14px;
  color: #244938;
  margin-bottom: 14px;
}

.legal-contact {
  margin-top: 2.2rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
}

.legal-contact .lc-label {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 4px;
}

.legal-contact a { color: var(--green-accent); }

footer {
  background: var(--forest);
  color: rgba(255,255,255,0.76);
  padding: 56px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.24rem;
  margin-bottom: 8px;
}

.footer-brand-desc { font-size: 13px; max-width: 300px; }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.56);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.79);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
}

.footer-proof {
  color: rgba(255,255,255,0.95);
  font-size: 12px;
}

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-reassurance { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
}
