:root {
  --bg: #f7f5f1;
  --paper: #ffffff;
  --paper-soft: #fbfaf7;
  --ink: #171717;
  --muted: #6f6b64;
  --soft: #9b948a;
  --line: rgba(23, 23, 23, 0.11);
  --line-soft: rgba(23, 23, 23, 0.07);
  --dark: #151515;
  --accent: #9b7a4b;
  --accent-soft: #eadfce;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 122, 75, 0.08), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}


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


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


main {
  min-height: 70vh;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 20px 0;
  transition: transform .45s var(--ease);
}


.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  height: 68px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 55px rgba(16, 16, 16, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
}


.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}


.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
}


.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}


.main-nav a:hover {
  background: rgba(23, 23, 23, 0.055);
  color: var(--ink);
}


.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.16);
}


.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}


.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}


.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}


h1,
h2,
h3,
p {
  margin-top: 0;
}


h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -0.065em;
  font-weight: 640;
}


h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 620;
}


h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 650;
}


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


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
}


.btn:hover {
  transform: translateY(-2px);
}


.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.18);
}


.btn-light {
  background: rgba(255,255,255,.74);
  color: var(--ink);
  border: 1px solid rgba(23,23,23,.1);
}


.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 40px auto 20px;
  padding: 36px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
}


.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}


.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}


.footer-shell p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 13px;
}


.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}


.footer-meta a:hover {
  color: var(--ink);
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: var(--soft);
  font-size: 12px;
}

.footer-powered-link {
  position: relative;
  color: var(--ink);
  font-weight: 600;
}


.footer-powered-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}


.footer-powered-link:hover {
  color: var(--accent);
}


.footer-powered-link:hover::after {
  width: 100%;
}



.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}


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


@media (max-width: 760px) {
  .site-header {
    padding: 12px 12px 0;
  }


  .nav-shell {
    height: auto;
    min-height: 62px;
    padding: 10px 12px;
    border-radius: 22px;
    flex-wrap: wrap;
  }


  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
  }


  .main-nav a {
    padding: 8px 10px;
  }


  .nav-cta {
    padding: 10px 13px;
  }


  .section {
    width: min(100% - 28px, var(--max));
    padding: 64px 0;
  }


  .site-footer {
    width: min(100% - 28px, var(--max));
    padding: 26px;
  }


  .footer-shell,
  .footer-bottom {
    flex-direction: column;
  }


  .footer-meta {
    align-items: flex-start;
  }
}

