/* Botanicus marketing site — tokens match web/app/globals.css */

:root {
  --botanicus-paper: #ebeee3;
  --botanicus-accent: #1f3d2b;
  --botanicus-accent-soft: #d4e4cc;
  --botanicus-foreground: #20351f;
  --botanicus-muted: #7a8778;
  --botanicus-hairline: rgba(32, 53, 31, 0.08);
  --botanicus-card: #ffffff;
  --botanicus-subtle: rgba(32, 53, 31, 0.05);
  --shadow-card: 0 2px 14px rgba(32, 53, 31, 0.07);
  --shadow-card-hover: 0 8px 28px rgba(32, 53, 31, 0.1);
  --radius-card: 1.125rem;
  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--botanicus-foreground);
  background: var(--botanicus-paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--botanicus-accent);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  padding: 1.25rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: inline-flex;
}

.logo {
  height: 2.25rem;
  width: auto;
  max-width: min(100%, 11.5rem);
  object-fit: contain;
}

/* Hero */
.hero {
  padding: 2.25rem 0 2.5rem;
  background: linear-gradient(
    180deg,
    var(--botanicus-accent-soft) 0%,
    color-mix(in srgb, var(--botanicus-accent-soft) 35%, var(--botanicus-paper)) 55%,
    var(--botanicus-paper) 100%
  );
}

.hero-inner {
  text-align: center;
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--botanicus-accent);
}

.headline {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--botanicus-foreground);
}

.subhead {
  margin: 0;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--botanicus-muted);
  font-weight: 500;
}

/* Value props */
.value-props {
  padding: 2rem 0 3.5rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.card {
  background: var(--botanicus-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--botanicus-accent-soft);
  color: var(--botanicus-accent);
  margin-bottom: 1rem;
}

.card-icon svg {
  display: block;
}

.card-title {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--botanicus-foreground);
}

.card-body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--botanicus-muted);
}

/* About */
.about {
  padding: 0 0 4rem;
}

.about-card {
  background: var(--botanicus-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem;
  max-width: 48rem;
  margin-inline: auto;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--botanicus-foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.about-body {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--botanicus-muted);
}

/* Contact */
.contact {
  padding: 0 0 5rem;
}

.contact-inner {
  text-align: center;
}

.contact-body {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--botanicus-muted);
}

.contact-body a {
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--botanicus-hairline);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--botanicus-muted);
}
