:root {
  --ink: #1a1f1c;
  --paper: #f5f1ea;
  --paper-2: #ebe5d8;
  --terra: #b8553a;
  --terra-deep: #8a3e2a;
  --moss: #4a5d3a;
  --gold: #c8a55b;
  --rule: #2a2f2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--terra);
}

/* NAV */
nav.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(26, 31, 28, 0.12);
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--terra);
  border-radius: 50%;
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

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

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

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.7rem 1.3rem;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--terra) !important;
}

/* HERO */
.hero {
  padding: 5rem 2rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184, 85, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 300;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
  color: rgba(26, 31, 28, 0.78);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 31, 28, 0.15);
  flex-wrap: wrap;
}

.hero-meta .stat {
  display: flex;
  flex-direction: column;
}

.hero-meta .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-meta .stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 31, 28, 0.6);
  margin-top: 0.3rem;
}

.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--paper);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  color: var(--ink);
  padding: 1rem 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--ink);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 31, 28, 0.4)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'><defs><linearGradient id='sky' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23d4c5a8'/><stop offset='1' stop-color='%23b8553a' stop-opacity='0.3'/></linearGradient></defs><rect width='400' height='500' fill='url(%23sky)'/><polygon points='80,260 200,160 320,260 320,420 80,420' fill='%231a1f1c'/><polygon points='80,260 200,160 320,260' fill='%238a3e2a'/><rect x='180' y='320' width='40' height='100' fill='%23c8a55b'/><rect x='110' y='290' width='40' height='40' fill='%23c8a55b' opacity='0.7'/><rect x='250' y='290' width='40' height='40' fill='%23c8a55b' opacity='0.7'/></svg>")
      center/cover;
}

.hero-visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--paper);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  z-index: 2;
}

.hero-visual-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--paper);
  margin-bottom: 0.7rem;
}

.hero-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--paper);
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  z-index: 2;
}

/* SITUATIONS */
section.situations {
  background: var(--ink);
  color: var(--paper);
  padding: 6rem 2rem;
}

.situations-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.situations-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.situations h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
}

.situations-head p {
  font-size: 1.05rem;
  color: rgba(245, 241, 234, 0.75);
  max-width: 540px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.2);
}

.sit-card {
  padding: 2.5rem 1.5rem 2rem 0;
  border-right: 1px solid rgba(245, 241, 234, 0.2);
  border-bottom: 1px solid rgba(245, 241, 234, 0.2);
  padding-right: 2rem;
  padding-left: 1.5rem;
  transition: background 0.3s;
}

.sit-card:nth-child(4n) {
  border-right: none;
}

.sit-card:hover {
  background: rgba(184, 85, 58, 0.08);
}

.sit-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.sit-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--paper);
}

.sit-card p {
  font-size: 0.92rem;
  color: rgba(245, 241, 234, 0.7);
}

/* PROCESS */
section.process {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.process-head {
  text-align: center;
  margin-bottom: 4rem;
}

.process-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--rule);
  opacity: 0.2;
}

.step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border: 1px solid var(--ink);
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.step p {
  color: rgba(26, 31, 28, 0.7);
  font-size: 0.95rem;
}

/* WHY */
section.why {
  background: var(--paper-2);
  padding: 6rem 2rem;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.why-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(26, 31, 28, 0.15);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list .why-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--terra);
  font-size: 1.2rem;
}

.why-list h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.why-list p {
  font-size: 0.95rem;
  color: rgba(26, 31, 28, 0.7);
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 2rem;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(245, 241, 234, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTENT PAGES */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.content-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.content-page .lead {
  font-size: 1.25rem;
  color: rgba(26, 31, 28, 0.7);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.content-page h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-page h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.content-page p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.content-page ul,
.content-page ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.content-page strong {
  font-weight: 600;
  color: var(--ink);
}

.content-page a {
  color: var(--terra);
  text-decoration: underline;
}

.content-page a:hover {
  color: var(--terra-deep);
}

/* FORM */
.form-section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.form-head {
  text-align: center;
  margin-bottom: 3rem;
}

.form-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.8rem;
}

.form-head p {
  margin-top: 1rem;
  color: rgba(26, 31, 28, 0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

form.lead-form {
  background: var(--paper);
  border: 1px solid rgba(26, 31, 28, 0.15);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(26, 31, 28, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 31, 28, 0.2);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terra);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.consent-block {
  background: var(--paper-2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--terra);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  align-items: start;
}

.consent-row:last-child {
  margin-bottom: 0;
}

.consent-row input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--terra);
}

.consent-row label {
  font-size: 0.85rem;
  color: rgba(26, 31, 28, 0.85);
  line-height: 1.55;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: rgba(26, 31, 28, 0.65);
  margin: 1.5rem 0 2rem;
  line-height: 1.6;
}

.form-disclaimer a {
  color: var(--terra);
}

.submit-btn {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  width: 100%;
}

.submit-btn:hover {
  background: var(--terra);
}

.other-contact {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 31, 28, 0.15);
  text-align: center;
}

.other-contact h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.other-contact p {
  font-size: 1.05rem;
  color: rgba(26, 31, 28, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}

.footer-brand .logo {
  color: var(--paper);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: rgba(245, 241, 234, 0.65);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.75);
  line-height: 1.9;
}

.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  color: rgba(245, 241, 234, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--terra);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* MOBILE */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .situations-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sit-card:nth-child(4n) {
    border-right: 1px solid rgba(245, 241, 234, 0.2);
  }
  .sit-card:nth-child(2n) {
    border-right: none;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-grid::before {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  form.lead-form {
    padding: 1.8rem;
  }
}

@media (max-width: 640px) {
  .situation-grid {
    grid-template-columns: 1fr;
  }
  .sit-card {
    border-right: none !important;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
