@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --primary: #4f8a6e;
  --accent: #a8d5ba;
  --dark: #2f4f4f;
  --background: #f7fbf9;
  --surface: #ffffff;
  --border: #dfe9e2;
  --muted: #5b6f67;
  --shadow: 0 18px 40px rgba(47, 79, 79, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(600px 400px at 15% 0%, rgba(168, 213, 186, 0.45), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(79, 138, 110, 0.18), transparent 60%),
    var(--background);
  line-height: 1.7;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 251, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-mark {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
}

.brand-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--dark);
  font-weight: 600;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--primary);
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.body {
  color: var(--muted);
  font-size: 16px;
}

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

.hero-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  animation: floatIn 0.7s ease;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: rgba(168, 213, 186, 0.2);
}

.section-head {
  max-width: 520px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 12px 24px rgba(47, 79, 79, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price {
  font-size: 28px;
  color: var(--primary);
  margin: 0 0 8px;
  font-weight: 600;
}

.note-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.note-title {
  margin: 0 0 10px;
  font-weight: 600;
}

.list {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.list li {
  margin-bottom: 10px;
}

.steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.steps li {
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 20px rgba(79, 138, 110, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(79, 138, 110, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: none;
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

.site-footer {
  margin-top: auto;
  padding: 30px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  font-size: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 6px 14px rgba(47, 79, 79, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.page-main {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
