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

:root {
  --primary: #2d9a72;
  --primary-dark: #1f7a5c;
  --accent: #c4a265;
  --accent-light: #e4d5b5;
  --text-dark: #0f2922;
  --text-medium: #2d5246;
  --text-light: #5a7a6e;
  --bg-light: #f4f9f6;
  --border: #dceee6;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.landing-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15, 41, 34, .06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.landing-header .wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong {
  font: 500 20px/1.1 var(--display);
  color: var(--text-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(45, 154, 114, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.header-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 154, 114, .4);
}

/* Hero */
.hero-landing {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #1a5243 0%, #2d9a72 50%, #7ec4a8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 41, 34, .75), rgba(45, 154, 114, .45));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero-landing h1 {
  font: 500 clamp(34px, 4.5vw, 52px)/1.08 var(--display);
  margin-bottom: 12px;
}

.hero-landing h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 14px;
}

.hero-lead {
  font: 400 17px/1.6 var(--display);
  opacity: .92;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.btn-primary:hover { color: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover { color: white; background: rgba(255, 255, 255, .12); }

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

.hero-photo img {
  width: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid rgba(196, 162, 101, .7);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
}

/* Sections */
section { padding: 48px 0; }

section:nth-child(even) { background: white; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.section-head h2 {
  font: 500 clamp(26px, 3vw, 36px)/1.15 var(--display);
  margin-bottom: 10px;
}

.section-head p { color: var(--text-light); }

.gold-rule {
  width: 48px;
  height: 3px;
  margin: 14px auto;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(15, 41, 34, .05);
}

.card h3 {
  font: 500 20px/1.25 var(--display);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-light);
}

.card ul {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-medium);
}

.card ul li { margin-bottom: 4px; }

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.highlight {
  text-align: center;
  padding: 20px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.highlight strong {
  display: block;
  font: 500 22px/1.2 var(--display);
  color: var(--primary-dark);
}

.highlight span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* SEO content block */
.seo-content {
  max-width: 820px;
  margin: 0 auto;
}

.seo-content h2 {
  font: 500 28px var(--display);
  margin: 28px 0 12px;
}

.seo-content h3 {
  font: 500 20px var(--display);
  margin: 22px 0 8px;
  color: var(--text-medium);
}

.seo-content p {
  margin-bottom: 14px;
  color: var(--text-medium);
  font-size: 14px;
}

.seo-content ul {
  margin: 0 0 16px 20px;
  color: var(--text-medium);
  font-size: 14px;
}

.seo-content li { margin-bottom: 6px; }

/* CTA band */
.cta-band {
  padding: 48px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.cta-band h2 {
  font: 500 32px var(--display);
  margin-bottom: 10px;
}

.cta-band p {
  opacity: .9;
  max-width: 520px;
  margin: 0 auto 22px;
}

/* Footer */
.landing-footer {
  padding: 32px 0 24px;
  background: #0f2922;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.landing-footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.landing-footer strong {
  display: block;
  font: 500 20px var(--display);
  color: white;
  margin-bottom: 6px;
}

.landing-footer a { color: var(--accent-light); }
.landing-footer a:hover { color: white; }

.footer-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { order: -1; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .landing-footer .wrap { grid-template-columns: 1fr; }
}

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