:root {
  --ink: #1a1a1a;
  --paper: #f5f1ea;
  --accent: #c45a2a;
  --accent-2: #245b5a;
  --muted: #efe7dc;
  --card: #fffaf3;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  line-height: 1.55;
}

body {
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--ink);
  text-decoration: none;
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(120deg, rgba(245, 241, 234, 0.92), rgba(245, 241, 234, 0.82)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
}

.lang-switch {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.lang-switch a {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  opacity: 0.7;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 8px;
}

.lede {
  font-size: 18px;
  max-width: 720px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.btn.ghost {
  background: transparent;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-tags span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px dashed var(--accent-2);
}

.section {
  padding: 64px 0;
}

.section.muted {
  background: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

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

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullets li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}

.bullets li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 20px var(--shadow);
}

.tag {
  margin-top: 14px;
  font-size: 12px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.step {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 20px var(--shadow);
}

.num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--paper);
  font-weight: 700;
}

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

.stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-2);
}

.contact {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  gap: 12px;
}

.contact-row a {
  text-decoration: underline;
}

.contact-row:last-child {
  border-bottom: none;
}

.footer {
  padding: 24px 0 48px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
}

.bg-orbit {
  position: fixed;
  top: -200px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(196, 90, 42, 0.2), rgba(196, 90, 42, 0));
  z-index: -2;
  filter: blur(2px);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -3;
  opacity: 0.5;
}

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

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

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

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

  .footer .wrap {
    flex-direction: column;
    gap: 8px;
  }

  .lang-switch {
    justify-content: flex-start;
  }
}
