:root {
  --bg: #f4f2ec;
  --paper: #fffcf5;
  --ink: #1f1d1a;
  --muted: #5a554d;
  --accent: #0c766e;
  --accent-soft: #c7ebe6;
  --line: #d8d2c8;
  --shadow: 0 20px 60px rgba(34, 31, 26, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(30, 26, 20, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 26, 20, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: -2;
}

.background-glow {
  position: fixed;
  inset: -20vh -10vw auto;
  height: 65vh;
  background:
    radial-gradient(circle at 15% 25%, rgba(12, 118, 110, 0.45), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(232, 152, 73, 0.3), transparent 40%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.layout {
  width: min(1100px, 92vw);
  margin: 2rem auto 3rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.4rem;
}

.hero {
  background: linear-gradient(160deg, rgba(255, 252, 245, 0.93), rgba(248, 244, 234, 0.93));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 3rem);
  animation: rise 0.7s ease-out both;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  margin: 0.7rem 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  max-width: 15ch;
}

.lead {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #f7fbfa;
  box-shadow: 0 8px 18px rgba(8, 71, 66, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.88);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  animation: rise 0.85s ease-out both;
}

.card:nth-of-type(3) {
  animation-delay: 0.08s;
}

.product {
  background:
    linear-gradient(145deg, rgba(199, 235, 230, 0.75), rgba(255, 252, 245, 0.9)),
    var(--paper);
}

.card-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #285b55;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  color: #0a5b54;
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.principles ul {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  width: min(1100px, 92vw);
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .site-header {
    padding-top: 1rem;
  }
}
