:root {
  --ink: #2b211c;
  --muted: #6b5c53;
  --brand: #b0553a;
  --brand-dark: #8e4029;
  --accent: #a8762a;
  --sand: #fdf7f1;
  --sand-deep: #f7ece1;
  --line: #ecdccd;
  --radius: 14px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

figure { margin: 0; }

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

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

/* 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: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--brand-dark); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--sand) 0%, #fff 100%);
  padding: 76px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1em;
}

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

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover { background: var(--brand-dark); }

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

.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.hero-figure {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(120, 60, 40, .45);
}

/* Sections */
.section {
  padding: 88px 0;
  scroll-margin-top: 74px;
}

.section-alt {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.two-col .section-head { margin-bottom: 0; }

.two-col + .cards { margin-top: 48px; }

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-reverse { grid-template-columns: 1fr 0.85fr; }

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-deep);
}

.portrait-wide { aspect-ratio: 4 / 3; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.card h3 {
  color: var(--brand);
  margin-bottom: .5em;
}

.card p { color: var(--muted); }

.card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: .95rem;
}

.card li { margin-bottom: 8px; }

/* Tags */
.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.tags li {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .94rem;
}

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

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

/* Contact */
.contact {
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.contact .lead {
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin: 0 auto;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 34px 0 18px;
}

.contact-links a {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
}

.contact-links a:hover { background: #fff; color: var(--brand); }

.fine {
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

.footer-help {
  max-width: 640px;
  margin-bottom: 32px;
}

.footer-help h3 { margin-bottom: .4em; }

.footer-help p {
  color: var(--muted);
  margin: 0;
  font-size: .96rem;
}

.footer-meta {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

@media (max-width: 880px) {
  .hero { padding: 56px 0 48px; }
  .hero-inner,
  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-figure { order: -1; }
  .cards,
  .steps { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
}
