:root {
  --manifest-black: #0f1110;
  --morning-cream: #fff5ea;
  --apricot: #ffd2a6;
  --apricot-dark: #e6b88a;
  --growth-green: #3d5c35;
  --clay-terra: #d97c56;
  --mist-lavender: #e6e1f0;
  --golden-hour: #ebc25e;
  --burnt-red: #bf3f3f;
  --surface: #fffaf3;
  --surface-strong: #fffdf9;
  --border: rgba(15, 17, 16, 0.12);
  --muted: rgba(15, 17, 16, 0.68);
  --shadow: 0 18px 50px rgba(15, 17, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--manifest-black);
  background: var(--morning-cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  line-height: 1.65;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: var(--growth-green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--clay-terra);
}

.site-shell {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--manifest-black);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 16, 0.14);
  border-radius: 12px;
  background: var(--clay-terra);
  box-shadow: 0 10px 30px rgba(15, 17, 16, 0.08);
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-name {
  font-size: 18px;
}

.brand-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--manifest-black);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.nav a:hover,
.button:hover {
  border-color: rgba(217, 124, 86, 0.42);
  color: var(--manifest-black);
}

.button.primary {
  border-color: var(--manifest-black);
  background: var(--manifest-black);
  color: var(--morning-cream);
}

.hero {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
  padding: 36px 0 10px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid rgba(217, 124, 86, 0.25);
  border-radius: 999px;
  background: rgba(255, 210, 166, 0.36);
  color: var(--clay-terra);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(34px, 7vw, 52px);
}

h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

p {
  margin: 0 0 14px;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--shadow);
}

.panel.flat {
  box-shadow: none;
}

.callout {
  border-color: rgba(61, 92, 53, 0.2);
  background: rgba(230, 225, 240, 0.35);
}

.warning {
  border-color: rgba(191, 63, 63, 0.24);
  background: rgba(255, 210, 166, 0.28);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.quick-links a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--manifest-black);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.meta-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list {
  display: grid;
  gap: 10px;
}

.meta-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 17, 16, 0.08);
}

.meta-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.meta-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.plain-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 2px;
}

.plain-list li {
  position: relative;
  padding-left: 18px;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--clay-terra);
  content: "-";
  font-weight: 800;
}

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

.faq-item {
  padding: 18px 0;
  border-top: 1px solid rgba(15, 17, 16, 0.1);
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-item:last-child {
  padding-bottom: 0;
}

.muted {
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 17, 16, 0.1);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 700px) {
  .site-shell {
    padding: 18px 16px 44px;
  }

  .site-header {
    display: grid;
    gap: 18px;
    padding-bottom: 24px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 18px;
  }

  .grid.two,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 20px;
    border-radius: 20px;
  }

  .meta-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
