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

:root {
  --forest: #1A3A2A;
  --forest-dark: #0E2018;
  --emerald: #1E6B4A;
  --gold: #E8A830;
  --amber: #C8852A;
  --sage: #4A8C6A;
  --mint: #A8D4BC;
  --honey: #F5C842;
  --cream: #FDF6E8;
  --warm: #F7F2EA;
  --sand: #EDE8DF;
  --charcoal: #1A1E18;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--warm);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
}

button, .btn {
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}
.btn-primary:hover { background: var(--amber); }
.btn-secondary {
  background: var(--emerald);
  color: #fff;
}
.btn-secondary:hover { background: var(--forest); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover { background: var(--cream); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 40px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header-logo img { height: 36px; }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--emerald); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions .btn { font-size: 14px; padding: 8px 20px; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle svg { width: 28px; height: 28px; color: var(--forest); }
.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid var(--sand);
}
.mobile-menu .btn { width: 100%; margin-top: 12px; }

@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .mobile-toggle { display: block; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--forest-dark);
  color: var(--mint);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(168,212,188,0.7); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(168,212,188,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(74,140,106,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(168,212,188,0.5);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 50%, var(--cream) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 18% 80%, rgba(200,133,42,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 82% 10%, rgba(30,107,74,0.15) 0%, transparent 60%);
}
.hero * { position: relative; }
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: var(--mint);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--cream); }
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--sage);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(26,58,42,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--sage); line-height: 1.7; }

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

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(26,58,42,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--forest), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img span { font-size: 48px; }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.blog-card p { font-size: 14px; color: var(--sage); line-height: 1.6; margin-bottom: 16px; }
.blog-card .read-more {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
}
.blog-card .read-more:hover { color: var(--gold); }

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

/* ── BLOG POST ── */
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post h1 { font-size: clamp(28px, 4vw, 42px); color: var(--forest); margin-bottom: 12px; }
.blog-post .post-meta { font-size: 14px; color: var(--sage); margin-bottom: 32px; }
.blog-post .post-content { font-size: 16px; line-height: 1.8; color: var(--charcoal); }
.blog-post .post-content h2 { font-size: 24px; color: var(--forest); margin: 32px 0 12px; }
.blog-post .post-content p { margin-bottom: 16px; }
.blog-post .post-content ul { margin: 0 0 16px 24px; }
.blog-post .post-content li { margin-bottom: 6px; }
.blog-post .post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--sage);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 20px; color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--sage); margin-bottom: 24px; line-height: 1.7; }
.contact-detail { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.contact-detail span:first-child { font-size: 20px; }
.contact-detail span:last-child { font-size: 14px; color: var(--forest); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(30,107,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ── ABOUT ── */
.about-hero {
  background: var(--forest);
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 { color: var(--cream); font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.about-hero p { color: var(--mint); font-size: 18px; max-width: 600px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-card .icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--sage); line-height: 1.7; }

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

/* ── LEGAL/DATA PROTECTION ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(28px, 4vw, 40px); color: var(--forest); margin-bottom: 8px; }
.legal-content .last-updated { font-size: 14px; color: var(--sage); margin-bottom: 32px; }
.legal-content h2 { font-size: 22px; color: var(--forest); margin: 32px 0 12px; }
.legal-content p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 24px; }
.legal-content li { font-size: 15px; margin-bottom: 6px; line-height: 1.7; }

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--sage); margin-top: 4px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--forest);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--cream); font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.cta-banner p { color: var(--mint); font-size: 16px; margin-bottom: 28px; }

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes wingL {
  0%, 100% { opacity: 0.85; transform: rotate(-20deg) scaleY(1); }
  50% { opacity: 0.55; transform: rotate(-28deg) scaleY(0.86); }
}
@keyframes wingR {
  0%, 100% { opacity: 0.85; transform: rotate(20deg) scaleY(1); }
  50% { opacity: 0.55; transform: rotate(28deg) scaleY(0.86); }
}
@keyframes hexPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
