:root {
  --bg: #f6f3ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #24324a;
  --muted: #5f6b7c;
  --border: rgba(36, 50, 74, 0.12);
  --primary: #6d9823;
  --primary-hover: #5a821b;
  --secondary: #b56322;
  --shadow: 0 20px 60px rgba(36, 50, 74, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 152, 35, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(181, 99, 34, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, #f2eee7 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.topbar-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0 56px;
}

.hero-inner {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-inner-single {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.hero-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.hero-card-centered {
  text-align: center;
}

.hero-card-centered .logo {
  margin: 0 auto 24px;
}

.hero-card-centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-card-centered .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-card-centered .hero-actions {
  justify-content: center;
}

.logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(109, 152, 35, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-card h1 span {
  color: var(--secondary);
}

.hero-text {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-text-small {
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
}

.highlight strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.highlight span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer {
  padding: 18px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.topbar-link:hover {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner {
    display: grid;
    gap: 12px;
    justify-content: initial;
  }

  .hero-card {
    padding: 32px 22px;
  }

  .logo {
    width: 220px;
  }

  .hero-card h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}