:root {
  --charcoal: #1c1c1c;
  --ember: #e8892e;
  --clay: #c46a3a;
  --sage: #8fa68e;
  --off-white: #f4f1ec;
  --cream: #fffaf2;
  --muted: #6f6a62;
  --line: rgba(28, 28, 28, 0.12);
  --shadow: 0 22px 60px rgba(28, 28, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 15% 10%, rgba(232, 137, 46, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(143, 166, 142, 0.14), transparent 24rem),
    var(--off-white);
}

body.menu-open {
  overflow: hidden;
}

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

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

.section-pad {
  padding: 4.5rem 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(244, 241, 236, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  display: block;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  inset: 72px 1rem auto 1rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--charcoal);
  background: rgba(232, 137, 46, 0.12);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 14vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

h2 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

p {
  line-height: 1.7;
}

.hero-text,
.intro p,
.feature p,
.cta p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.22);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.65);
}

.hero-card {
  justify-self: center;
  width: min(360px, 88vw);
  padding: 1.25rem;
  border-radius: 36px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 28px;
}

.hero-card p {
  margin: 1rem 0 0;
  color: var(--sage);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card,
.value,
.cta {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 14px 40px rgba(28, 28, 28, 0.06);
}

.card {
  padding: 1.4rem;
}

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

.card-icon {
  display: inline-grid;
  place-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(232, 137, 46, 0.13);
  font-size: 1.3rem;
}

.feature {
  display: grid;
  gap: 1rem;
  background: var(--charcoal);
  color: var(--off-white);
}

.feature p {
  color: rgba(244, 241, 236, 0.74);
}

.values {
  display: grid;
  gap: 1rem;
}

.value {
  padding: 1.25rem;
}

.value strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clay);
  font-size: 1.1rem;
}

.value span {
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  margin: 1.25rem;
}

.site-footer {
  padding: 2rem 1.25rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

@media (min-width: 760px) {
  .section-pad {
    padding: 6rem clamp(2rem, 5vw, 5rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    padding: 0.7rem 0.9rem;
  }

  .hero {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .cards,
  .values {
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    min-height: 260px;
    padding: 1.8rem;
  }

  .feature {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }

  .cta {
    margin: 2rem clamp(2rem, 5vw, 5rem) 5rem;
  }
}
