:root {
  --wood-900: #2e2118;
  --wood-800: #3f2d1f;
  --wood-700: #553c26;
  --wood-500: #8a5f33;
  --wood-300: #c99a63;
  --sand-100: #f7f2ec;
  --sand-200: #ece1d4;
  --paper: #ffffff;
  --ink: #241b14;
  --ink-soft: #5c4c3f;
  --line: #ddcfbf;
  --wrap: 1120px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

p { margin: 0 0 1em; }

a { color: var(--wood-700); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.small { font-size: .875rem; color: var(--ink-soft); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--wood-700);
  color: var(--sand-100);
  font-family: Georgia, serif;
  font-size: 1rem;
  letter-spacing: .04em;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 1rem; }
.brand-text small { color: var(--ink-soft); font-size: .78rem; letter-spacing: .04em; }

.nav { display: flex; gap: 28px; }

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover { color: var(--wood-700); border-bottom-color: var(--wood-300); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .12s ease, background-color .12s ease;
}

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

.btn-primary { background: var(--wood-700); color: var(--sand-100); }
.btn-primary:hover { background: var(--wood-800); }

.btn-ghost { border-color: var(--line); color: var(--wood-700); }
.btn-ghost:hover { border-color: var(--wood-300); background: var(--sand-100); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--sand-100), var(--paper));
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--wood-500);
  margin-bottom: 18px;
}

.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.15rem); }

.lead { font-size: 1.09rem; color: var(--ink-soft); max-width: 52ch; }

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

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}

.hero-facts li { position: relative; padding-left: 16px; }

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wood-300);
}

.hero-art { margin: 0; }

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -18px rgba(46, 33, 24, .45);
}

/* ---------- Sections ---------- */

.section { padding: 88px 0; }
.section-alt { background: var(--sand-100); border-block: 1px solid var(--line); }

.section-title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); text-align: center; }
.section-title.left { text-align: left; }

.section-intro {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}

/* ---------- Cards ---------- */

.cards { display: grid; gap: 28px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
}

.card h3 { font-size: 1.4rem; }
.card-accent { border-top: 4px solid var(--wood-700); }

.ticks { list-style: none; margin: 20px 0; padding: 0; }

.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: .96rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .45em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--wood-500);
  border-bottom: 2px solid var(--wood-500);
  transform: rotate(-45deg);
}

.card-foot {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.step-no {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--wood-300);
  margin-bottom: 10px;
}

.steps h3 { font-size: 1.12rem; margin-bottom: .4em; }
.steps p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* ---------- Split / quote ---------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.stats div { display: flex; flex-direction: column; }
.stats strong { font-family: Georgia, serif; font-size: 1.6rem; color: var(--wood-700); }
.stats span { font-size: .85rem; color: var(--ink-soft); }

.quote {
  background: var(--sand-100);
  border-left: 4px solid var(--wood-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 34px 32px;
}

.quote blockquote { margin: 0; }

.quote p {
  font-family: Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.55;
}

.quote footer { font-size: .87rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.section-dark { background: var(--wood-900); color: var(--sand-200); }
.section-dark .section-title { color: var(--sand-100); }
.section-dark .lead { color: #cbb9a6; }

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}

.section-dark .btn-primary { background: var(--wood-300); color: var(--wood-900); }
.section-dark .btn-primary:hover { background: #d9ac74; }

.contact-card {
  font-style: normal;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.contact-card h3 {
  font-family: inherit;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--wood-300);
  margin-bottom: .5em;
}

.contact-card h3 + p { margin-bottom: 1.5em; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card .small { color: #a99683; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--wood-800);
  color: #c4b3a2;
  padding: 30px 0;
  font-size: .9rem;
}

.site-footer strong { color: var(--sand-200); }
.site-footer a { color: var(--wood-300); }
.footer-inner p { margin: 0 0 6px; }
.footer-inner p:last-child { margin-bottom: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-inner,
  .split,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 520px; margin-inline: auto; }
  .cards.two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; padding-block: 12px; min-height: 0; }
  .nav { gap: 18px; width: 100%; overflow-x: auto; }
  .steps { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  .btn { width: 100%; text-align: center; }
  .cta-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
