/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap'); */
:root {
  --color-bg: #f5f0ea;
  --color-surface: #ffffff;
  --color-text: #10211c;
  --color-muted: #4a5a55;
  --color-border: #e1dbd1;
  --color-primary: #0e5e4b;
  --color-primary-2: #d3a35b;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.4rem;
  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.12);
  --container-max: 1200px;
  --gutter: 24px;
  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 220ms;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: radial-gradient(
      circle at 10% 20%,
      rgba(14, 94, 75, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(211, 163, 91, 0.12),
      transparent 25%
    ),
    var(--color-bg);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(245, 240, 234, 0.9);
  border-bottom: 1px solid var(--color-border);
}
.container {
  width: min(var(--container-max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}
.section {
  padding: var(--space-9) 0;
}
.section--compact {
  padding: var(--space-7) 0;
}
.surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.surface--contrast {
  background: linear-gradient(
      135deg,
      rgba(14, 94, 75, 0.12),
      rgba(211, 163, 91, 0.08)
    ),
    var(--color-surface);
  border: 1px solid rgba(14, 94, 75, 0.18);
}
.grid {
  display: grid;
  gap: var(--space-7);
}
.grid[data-cols='2'] {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid[data-cols='3'] {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid[data-cols='4'] {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stack > * + * {
  margin-top: var(--space-4);
}
.stack--lg > * + * {
  margin-top: var(--space-6);
}
.cluster {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.card--accent {
  background: linear-gradient(
      145deg,
      rgba(14, 94, 75, 0.1),
      rgba(14, 94, 75, 0.02)
    ),
    #0f352b;
  color: #f4efe7;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card--ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-xs);
  background: rgba(14, 94, 75, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(14, 94, 75, 0.15);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(120deg, var(--color-primary), #0c4b3e);
  border-color: #0c4b3e;
  color: #f6f0ea;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(14, 94, 75, 0.3);
  color: var(--color-primary);
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary-2);
  outline-offset: 3px;
}
.eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}
.headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: var(--leading-tight);
  font-family: 'Playfair Display', serif;
  margin: 0;
}
.subhead {
  font-size: var(--text-lg);
  color: var(--color-muted);
  margin: 0;
}
h2 {
  margin: 0 0 var(--space-3);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  font-family: 'Playfair Display', serif;
}
h3 {
  margin: 0;
  font-size: var(--text-xl);
}
p {
  margin: 0;
  color: var(--color-text);
}
.muted {
  color: var(--color-muted);
}
.kpi {
  display: grid;
  gap: var(--space-2);
}
.kpi strong {
  font-size: var(--text-2xl);
  display: block;
}
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-6) 0;
}
ul {
  margin: 0;
  padding-left: var(--space-6);
  color: var(--color-muted);
  line-height: var(--leading-normal);
}
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-primary);
  font-weight: 700;
}
.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: var(--text-base);
  transition: border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14, 94, 75, 0.12);
  outline: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(211, 163, 91, 0.12);
  border: 1px solid rgba(211, 163, 91, 0.3);
  color: var(--color-text);
  font-weight: 600;
}
.matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.table-like {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}
.table-like .label {
  color: var(--color-muted);
  font-size: var(--text-sm);
}
details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}
details + details {
  margin-top: var(--space-3);
}
summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
summary::after {
  content: '+';
  color: var(--color-primary);
  font-weight: 700;
}
details[open] summary::after {
  content: '−';
}
footer {
  padding: var(--space-7) 0 var(--space-9);
  border-top: 1px solid var(--color-border);
}
@media (max-width: 720px) {
  header {
    position: sticky;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .table-like {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
