@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-ExtraBold.ttf") format("truetype"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Black.ttf") format("truetype"); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --app-cream: #fff9eb;
  --app-cream-soft: #fefaef;
  --app-card: #fffdf6;
  --app-green-900: #063824;
  --app-green-800: #0b5a39;
  --app-green-700: #0b8f63;
  --app-leaf: #439040;
  --app-leaf-soft: #6a9c46;
  --app-orange: #f7a21b;
  --app-text: #173323;
  --app-muted: #667261;
  --app-border: rgba(6, 56, 36, 0.12);
  --app-shadow: 0 18px 45px rgba(6, 56, 36, 0.12);
  --app-shadow-soft: 0 10px 28px rgba(6, 56, 36, 0.08);
  --app-radius-lg: 30px;
  --app-radius-md: 24px;
  --app-radius-sm: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--app-cream);
}
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Gilroy", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(247, 162, 27, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--app-cream-soft), var(--app-cream));
  color: var(--app-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(247, 162, 27, 0.72);
  outline-offset: 4px;
  border-radius: 18px;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--app-border);
  background: rgba(255, 249, 235, 0.88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--app-green-900);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 18px rgba(6, 56, 36, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--app-muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--app-green-900);
  background: rgba(67, 144, 64, 0.12);
}

.nav-links a:hover { transform: translateY(-1px); }

.hero {
  padding: 86px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 52px;
  align-items: center;
}

.hero-art {
  justify-self: end;
  width: min(100%, 300px);
  padding: 22px;
  border-radius: 38px;
  background: rgba(255, 253, 246, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--app-shadow);
}

.hero-logo {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--app-green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--app-orange);
  box-shadow: 0 0 0 5px rgba(247, 162, 27, 0.16);
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--app-green-900);
}

.subtitle {
  margin-top: 18px;
  color: var(--app-green-800);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.lede {
  max-width: 760px;
  margin-top: 20px;
  color: var(--app-muted);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  background: var(--app-card);
  color: var(--app-green-900);
  font-weight: 900;
  box-shadow: var(--app-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  border-color: transparent;
  background: var(--app-green-700);
  color: #fffdf6;
}

.content {
  padding: 12px 0 88px;
}

.section {
  padding-top: 48px;
}

.section h2 {
  margin-bottom: 18px;
  color: var(--app-green-900);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card,
.faq-item {
  min-height: 100%;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  background: rgba(255, 253, 246, 0.92);
  padding: 22px;
  box-shadow: var(--app-shadow-soft);
}

.card h3,
.faq-item h3 {
  margin-bottom: 8px;
  color: var(--app-green-900);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.card p,
.faq-item p,
.section p,
.section li {
  color: var(--app-muted);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
}

.list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.list li::marker {
  color: var(--app-green-700);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  padding: 20px;
  background: var(--app-card);
  color: var(--app-green-900);
  font-weight: 900;
  box-shadow: var(--app-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.link-card span {
  color: var(--app-green-700);
  font-weight: 900;
}

.notice {
  border: 1px solid rgba(67, 144, 64, 0.24);
  border-left: 6px solid var(--app-green-700);
  padding: 18px 20px;
  border-radius: var(--app-radius-sm);
  background: rgba(67, 144, 64, 0.09);
  color: var(--app-muted);
  line-height: 1.68;
}

.email {
  color: var(--app-green-800);
  font-weight: 900;
  word-break: break-word;
}

.footer {
  border-top: 1px solid var(--app-border);
  padding: 28px 0 40px;
  color: var(--app-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--app-green-900);
  font-weight: 900;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: block;
}

.footer a {
  color: var(--app-green-800);
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-art {
    justify-self: start;
    width: 190px;
    padding: 14px;
    border-radius: 28px;
  }

  .hero-logo {
    border-radius: 24px;
  }
}

@media (max-width: 700px) {
  .container { width: min(100% - 36px, 1120px); }
  .nav-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
  }

  .brand { font-size: 22px; }
  .brand-logo { width: 42px; height: 42px; border-radius: 13px; }
  .nav-links { justify-content: flex-start; gap: 6px; }
  .nav-links a { min-height: 38px; padding: 8px 10px; font-size: 13px; }
  .hero { padding: 48px 0 28px; }
  .actions .btn { width: 100%; }
  .grid,
  .link-list { grid-template-columns: 1fr; }
  .card,
  .faq-item,
  .link-card { border-radius: var(--app-radius-sm); padding: 18px; }
  .section { padding-top: 40px; }
}
