:root {
  --sage: #A1AF95;
  --cream: #F5F1E6;
  --charcoal: #3A3732;
  --warm-white: #FFFDF8;
  --soft-sage: rgba(161, 175, 149, 0.18);
  --border: rgba(58, 55, 50, 0.14);
  --shadow: 0 18px 45px rgba(58, 55, 50, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

.page-wrap {
  overflow: hidden;
}

.site-header {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 24px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 10;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: rgba(58, 55, 50, 0.78);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

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

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

.button-primary {
  background: var(--charcoal);
  color: var(--warm-white);
  box-shadow: 0 10px 26px rgba(58, 55, 50, 0.18);
}

.button-secondary {
  background: var(--sage);
  color: var(--charcoal);
  box-shadow: 0 10px 26px rgba(161, 175, 149, 0.34);
}

.button-outline {
  border: 1px solid var(--border);
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.62);
}

.hero {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft-sage);
  color: rgba(58, 55, 50, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--sage);
  border-radius: 50%;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero p {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(58, 55, 50, 0.78);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: min(100%, 470px);
  aspect-ratio: 1;
  background: var(--sage);
  opacity: 0.28;
  border-radius: 46% 54% 62% 38% / 44% 40% 60% 56%;
  filter: blur(2px);
}

.hero-card-inner {
  position: relative;
  width: min(100%, 430px);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card-inner img {
  width: 190px;
  margin: 0 auto 28px;
}

.hero-card-inner h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-align: center;
}

.hero-card-inner p {
  margin: 0;
  font-size: 1rem;
  text-align: center;
  color: rgba(58, 55, 50, 0.72);
}

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

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading span {
  color: var(--sage);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin-top: 16px;
  color: rgba(58, 55, 50, 0.72);
  font-size: 1.08rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 10px 30px rgba(58, 55, 50, 0.06);
}

.panel h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

.panel p {
  color: rgba(58, 55, 50, 0.72);
}

.panel ul {
  padding-left: 20px;
  color: rgba(58, 55, 50, 0.72);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.placeholder-card {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--warm-white);
  border: 1px dashed rgba(58, 55, 50, 0.22);
}

.placeholder-card .number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  font-weight: 800;
}

.placeholder-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.placeholder-card p {
  color: rgba(58, 55, 50, 0.7);
  font-size: 0.98rem;
}

.cta-band {
  margin: 110px auto 0;
  width: min(var(--max-width), calc(100% - 40px));
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--warm-white);
  display: grid;
  grid-template-columns: 0.33fr 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}

.cta-band-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 253, 248, 0.72);
  max-width: 660px;
}

.cta-band .button {
  background: var(--sage);
  color: var(--charcoal);
  white-space: nowrap;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 44px auto 28px;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(58, 55, 50, 0.64);
  font-size: 0.94rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.footer-logo img {
  width: 34px;
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .hero-card {
    min-height: auto;
  }

  .intro-grid,
  .placeholder-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .cta-band,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--border);
  }

  .site-header .brand-mark img {
    display: none;
  }

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

  .nav-links .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card-inner,
  .panel,
  .placeholder-card,
  .cta-band {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}