﻿:root {
  --bg: #f6f1e8;
  --ink: #1f1a14;
  --brand: #256b45;
  --brand-2: #d6a84f;
  --accent: #c84c3a;
  --paper: #fffdf7;
  --shadow: 0 18px 45px rgba(31, 26, 20, 0.16);
  --radius: 18px;
  --max: 1120px;
  --mono: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Fraunces", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--mono);
  color: var(--ink);
  background: radial-gradient(circle at top, rgba(37, 107, 69, 0.12), transparent 52%),
    linear-gradient(125deg, rgba(214, 168, 79, 0.2), rgba(255, 253, 247, 0.6) 55%),
    var(--bg);
}

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

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

.topbar {
  background: #0f2d1d;
  color: #f7f4ed;
  text-align: center;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand), #2f7f55);
  color: #f6f1e8;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(37, 107, 69, 0.12);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 76, 58, 0.3), transparent 70%);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: #fffdf7;
  box-shadow: 0 10px 20px rgba(37, 107, 69, 0.25);
}

.button.secondary {
  background: rgba(37, 107, 69, 0.1);
  border-color: rgba(37, 107, 69, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 20px;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

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

.card {
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 26, 20, 0.06);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.ribbon {
  display: inline-block;
  background: rgba(200, 76, 58, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.split {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.highlight {
  background: linear-gradient(120deg, rgba(214, 168, 79, 0.2), rgba(214, 168, 79, 0.05));
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(214, 168, 79, 0.35);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 107, 69, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 6px;
  margin-top: 6px;
}

.footer {
  background: #0f2d1d;
  color: #f7f4ed;
  padding: 50px 20px 30px;
  margin-top: 60px;
}

.footer-content {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer a {
  color: #f7f4ed;
}

.footer small {
  display: block;
  margin-top: 30px;
  text-align: center;
  opacity: 0.7;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 20px 30px;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 20, 0.2);
  font-family: var(--mono);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  background: rgba(37, 107, 69, 0.1);
  border-left: 4px solid var(--brand);
  padding: 16px;
  border-radius: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.table th,
.table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(31, 26, 20, 0.15);
}

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

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
