:root {
  --bg: #f6f2ea;
  --bg-strong: #efe1cb;
  --surface: rgba(255, 250, 242, 0.84);
  --surface-strong: #fff8ef;
  --text: #1f1c19;
  --muted: #66594e;
  --line: rgba(31, 28, 25, 0.08);
  --accent: #f46f35;
  --accent-deep: #c34f1d;
  --shadow: 0 24px 60px rgba(111, 66, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 111, 53, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(112, 179, 155, 0.18), transparent 22%),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 8px 0 24px;
}

.brand,
.topbar-links a,
.button {
  text-decoration: none;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.hero {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.info-card,
.section-process,
.section-highlight {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 40px;
}

.hero-card {
  border-radius: 32px;
  padding: 32px;
  align-self: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(244, 111, 53, 0.08)),
    var(--surface-strong);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96;
  max-width: 12ch;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
  max-width: 14ch;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero-text,
.section-heading p,
.info-card p,
.steps p,
.card-note,
.contact-note,
.footer,
.topbar-links {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(31, 28, 25, 0.14);
}

.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.trust-strip li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

.card-grid strong {
  font-size: 1.15rem;
}

.card-note {
  margin: 26px 0 0;
  line-height: 1.7;
}

.section {
  padding-top: 28px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading p:last-child {
  max-width: 62ch;
  line-height: 1.7;
}

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

.info-card,
.section-process,
.section-highlight {
  border-radius: 28px;
  padding: 28px;
}

.info-card p,
.steps p {
  line-height: 1.7;
  margin: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 32px 6px 0;
  font-size: 0.95rem;
}

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

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

@media (max-width: 900px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .info-card,
  .section-process,
  .section-highlight {
    padding: 24px;
  }

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

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .topbar-links,
  .hero-actions,
  .contact-panel,
  .footer {
    width: 100%;
  }

  .topbar-links,
  .footer {
    justify-content: space-between;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
