:root {
  --bg: #f7f4ee;
  --bg-soft: #fffdf8;
  --ink: #1d1a17;
  --muted: #5b534c;
  --line: #e8dfd2;
  --brand: #b54e1e;
  --brand-strong: #943f17;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(35, 28, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 10%, #fbe6d0 0%, transparent 45%), radial-gradient(circle at 85% 0%, #f7dcc8 0%, transparent 42%),
    var(--bg);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--brand-strong);
}

.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
}

.bg-shape-a {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -100px;
  background: rgba(217, 139, 92, 0.24);
  filter: blur(2px);
}

.bg-shape-b {
  width: 280px;
  height: 280px;
  left: -110px;
  top: 42%;
  background: rgba(148, 63, 23, 0.1);
}

.site-header,
main,
.site-footer {
  width: min(1080px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  min-height: 2.5rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: block;
  box-shadow: 0 8px 16px rgba(25, 18, 12, 0.12);
}

.brand-wordmark {
  width: auto;
  height: 1.38rem;
  display: block;
}

.site-nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero {
  margin-top: 1rem;
  margin-bottom: 2.75rem;
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fff9f1 0%, #fffdf9 100%);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  max-width: 18ch;
}

.hero-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.btn-solid:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: #fff;
}

.btn-outline {
  color: var(--brand);
  border: 1px solid #d8b89d;
  background: #fff7ef;
}

.section {
  margin: 0 0 2.4rem;
}

.section-heading {
  margin-bottom: 1rem;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
}

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

.card,
.step,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 10px 24px rgba(35, 28, 20, 0.05);
}

.card,
.step {
  padding: 1.1rem 1rem;
}

.card p,
.step p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.section-alt {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1rem;
}

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

.step {
  position: relative;
  padding-top: 1.7rem;
}

.step::before {
  position: absolute;
  top: 0.7rem;
  left: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #f3d8c3;
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step:nth-child(1)::before {
  content: "1";
}

.step:nth-child(2)::before {
  content: "2";
}

.step:nth-child(3)::before {
  content: "3";
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.contact {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fff6ec 100%);
  padding: 1.6rem 1.1rem;
}

.contact p {
  margin: 0.55rem auto 1rem;
  max-width: 48ch;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  display: block;
}

.footer-wordmark {
  width: auto;
  height: 1.16rem;
  display: block;
}

.site-footer p {
  margin: 0.2rem 0;
}

@media (min-width: 720px) {
  .hero {
    padding: 2.2rem 2rem;
  }

  .section-alt {
    padding: 1.45rem 1.25rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
