:root {
  --ink: #2b241d;
  --ink-soft: #5a4f43;
  --cream: #faf5ee;
  --cream-deep: #f1e8db;
  --paper: #fffdfa;
  --rust: #c1502e;
  --rust-dark: #9c3e22;
  --line: #e4d9c8;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(43, 36, 29, 0.06), 0 8px 24px -12px rgba(43, 36, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--rust-dark);
}

/* Hero */

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(ellipse 700px 380px at 85% -10%, rgba(193, 80, 46, 0.10), transparent 60%),
    var(--cream);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust-dark);
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 600;
  max-width: 16ch;
  line-height: 1.12;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 22px 0 34px;
}

.btn-primary {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-1px);
}

/* Client note */

.client-note {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.client-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.client-note strong {
  color: var(--ink);
}

.client-note a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s ease;
}

.client-note a:hover {
  text-decoration-color: var(--rust);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  margin-right: 10px;
}

/* Sections */

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--cream-deep);
}

.section h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 600;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
  font-size: 1.02rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  box-shadow: var(--shadow);
}

.price-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0;
}

.price-tag {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--rust-dark);
  margin: 0;
  white-space: nowrap;
}

.price-tag span {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.price-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Steps */

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

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease;
}

.contact-item:hover {
  border-color: var(--rust);
}

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-value {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Legal */

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.legal-col h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.legal-col ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.legal-col li {
  margin-bottom: 10px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Responsive */

@media (max-width: 760px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 56px 0 44px;
  }

  .section {
    padding: 56px 0;
  }

  .pricing-grid,
  .steps,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-name {
    font-size: 0.98rem;
  }
}
