:root {
  --header-height: 88px;
  color-scheme: light;
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  background-color: #f9f5f1;
  color: #1d1c1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #f6f9f2, #f0e9e1);
}

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 24px) clamp(20px, 5vw, 48px) 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(15, 16, 15, 0.08);
  position: sticky;
  top: 24px;
  z-index: 10;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: #8aba43;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.site-nav a {
  color: #5d5a57;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #151513;
}

.cta-link {
  padding: 12px 24px;
  border-radius: 999px;
  background-color: #151513;
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(20, 20, 20, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  margin-top: 0;
  align-items: center;
}

.hero-copy {
  padding: clamp(16px, 4vw, 24px);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9d9b95;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 1.05;
  color: #1c1b1a;
}

.hero h1 span {
  color: #8aba43;
}

.hero-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: #5d5a57;
  margin: 16px 0 8px;
}

.hero-description {
  color: #4a473f;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-dark {
  background-color: #151513;
  color: white;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.2);
}

.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.3);
}

.btn-light {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1c1b1a;
}

.btn-light:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.site-footer {
  margin-top: 80px;
  text-align: center;
  color: #958f87;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  :root {
    --header-height: 132px;
  }

  .site-header {
    flex-direction: column;
  }

  .site-nav {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  :root {
    --header-height: 0px;
  }

  .page {
    padding-top: 40px;
  }

  .site-header {
    display: none;
  }
}

