:root {
  --bg: #faf7f4;
  --bg-muted: #f0ebe6;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #c45c26;
  --accent-dark: #9a4520;
  --accent-soft: rgba(196, 92, 38, 0.12);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(28, 25, 23, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #e8a87c);
  box-shadow: 0 8px 20px var(--accent-soft);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.logo__text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-soft);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(28, 25, 23, 0.15);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--light {
  background: #fff;
  color: var(--accent-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 92, 38, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(120, 80, 50, 0.12), transparent),
    linear-gradient(180deg, #fff8f2 0%, var(--bg) 70%);
  animation: heroShift 18s ease-in-out infinite alternate;
}

@keyframes heroShift {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.04) translateY(-1%);
  }
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__tags li {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.05);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.split h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 0;
}

.split__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stat {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  margin: 0.5rem 0;
}

.stat-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.step-card__num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  margin: 0 0 0.75rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.benefit {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(28, 25, 23, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  padding: 4rem 0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
}

.cta-band__hint {
  margin: 0;
  opacity: 0.9;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact__list li {
  margin-bottom: 0.5rem;
}

.contact__list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.callback {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.callback h3 {
  margin-top: 0;
}

.callback input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 12px;
  font: inherit;
  margin-bottom: 1rem;
}

.callback__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}

.callback__ok {
  color: #166534;
  font-weight: 600;
}

.hidden {
  display: none;
}

/* Footer */
.site-footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 2.5rem 0;
  font-size: 0.88rem;
}

.site-footer__brand {
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.site-footer__legal {
  margin: 0;
  opacity: 0.75;
  line-height: 1.5;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__copy {
  margin: 0;
  align-self: flex-end;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}

/* Mobile */
@media (max-width: 900px) {
  .split,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid rgba(28, 25, 23, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
