:root {
  --sand: #f7f2e8;
  --sand-deep: #ede4d3;
  --ink: #10231f;
  --ink-soft: #3d524c;
  --palm: #0f5c4a;
  --palm-deep: #083d31;
  --sunset: #f08a3c;
  --line: rgba(16, 35, 31, 0.12);
  --card: #ffffff;
  --radius: 16px;
  --max: 1080px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --sand: #0d1a17;
    --sand-deep: #122420;
    --ink: #eef3f0;
    --ink-soft: #b5c4be;
    --palm: #3fbf9a;
    --palm-deep: #7fe0c2;
    --sunset: #f6a05c;
    --line: rgba(238, 243, 240, 0.12);
    --card: #14221f;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(240, 138, 60, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(15, 92, 74, 0.14), transparent 60%),
    var(--sand);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--palm); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--palm); color: #fff; padding: 8px 12px; border-radius: 8px;
}
.skip:focus { left: 8px; z-index: 10; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.mark { width: 34px; height: 34px; color: var(--palm); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--ink); text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--palm);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--palm-deep); text-decoration: none; transform: translateY(-1px); }
.btn-small { padding: 9px 16px; font-size: 0.9rem; }
.link { font-weight: 700; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 14px;
}
.lede { font-size: 1.25rem; color: var(--ink-soft); max-width: 40rem; }
.actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  border-top: 1px solid var(--line);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 1px 0 rgba(16, 35, 31, 0.04), 0 10px 30px -18px rgba(16, 35, 31, 0.25);
}
.card p { margin: 0; color: var(--ink-soft); }
.card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sand-deep); color: var(--palm);
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.about p { color: var(--ink-soft); }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.facts li {
  display: grid; gap: 2px;
  padding: 16px 18px;
  border-left: 3px solid var(--sunset);
  background: var(--card);
  border-radius: 0 12px 12px 0;
}
.facts strong { font-size: 1rem; }
.facts span { color: var(--ink-soft); font-size: 0.95rem; }

.contact { text-align: center; }
.contact p { color: var(--ink-soft); max-width: 36rem; margin: 0 auto 24px; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .nav a:not(.btn) { display: none; }
  .about { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding-top: 40px; }
}

/* splash layout */
body.splash { min-height: 100vh; display: flex; flex-direction: column; }
body.splash .splash-hero { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 40px; padding-bottom: 64px; }
.points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; max-width: 46rem; }
.points li { display: grid; gap: 2px; padding: 14px 16px; border-left: 3px solid var(--sunset); background: var(--card); border-radius: 0 12px 12px 0; }
.points strong { font-size: 1rem; }
.points span { color: var(--ink-soft); font-size: 0.95rem; }
.muted { color: var(--ink-soft); font-weight: 600; }
body.splash .site-footer { border-top: 1px solid var(--line); }
body.splash .site-header, body.splash .splash-hero, body.splash .site-footer { width: 100%; }
