:root {
  --charcoal-900: #1d1f2a;
  --charcoal-700: #2f3446;
  --charcoal-500: #565f76;
  --cream-100: #fbfaf6;
  --cream-200: #f2efe6;
  --cream-300: #e6dfd3;
  --leaf-700: #1f6b4f;
  --leaf-500: #2e8a66;
  --peach-200: #f3d3c2;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --shadow-soft: 0 14px 38px rgba(29, 31, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream-100);
  color: var(--charcoal-900);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--charcoal-700);
}

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-s);
  background: var(--leaf-700);
  color: #fff;
  z-index: 100;
}

.skip-link:focus { top: 12px; }

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

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

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus {
  background: var(--cream-200);
}

.hero {
  padding: 78px 0 42px;
}

.hero-center {
  max-width: 860px;
}

.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--leaf-700);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--leaf-700);
  background: var(--leaf-700);
  color: #fff;
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background: var(--leaf-500);
  border-color: var(--leaf-500);
}

.btn.outline {
  background: transparent;
  color: var(--leaf-700);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--cream-200);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--cream-300);
  color: var(--charcoal-500);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-l);
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.card h3 {
  font-size: 22px;
}

.stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.stack-item {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 16px 18px;
  border-left: 4px solid var(--leaf-700);
  border-top: 1px solid var(--cream-300);
  border-right: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300);
}

.quote {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 20px;
  border: 1px solid var(--cream-300);
}

.details {
  border-top: 1px solid var(--cream-300);
  padding: 14px 0;
}

.details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--charcoal-900);
}

.form {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 24px;
  border: 1px solid var(--cream-300);
}

label {
  display: block;
  font-size: 14px;
  color: var(--charcoal-500);
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  font-family: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--cream-300);
  margin-bottom: 12px;
}

.small {
  font-size: 14px;
  color: var(--charcoal-500);
}

.footer {
  border-top: 1px solid var(--cream-300);
  padding: 34px 0 42px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  z-index: 20;
}

.cookie-banner.hidden { display: none; }

@media (max-width: 720px) {
  .header-row { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; }
}
