:root {
  color-scheme: light;
  --background: #f6f1e8;
  --surface: #fffaf0;
  --surface-strong: #17130f;
  --text: #211b16;
  --muted: #6f6256;
  --line: rgba(33, 27, 22, 0.14);
  --accent: #b66a2d;
  --accent-dark: #7c431c;
  --shadow: 0 24px 70px rgba(53, 39, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(182, 106, 45, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, var(--background) 44%, #efe5d7 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

.nav,
.hero,
.section,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  line-height: 0;
}

.brand img {
  display: block;
  width: min(220px, 58vw);
  height: auto;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 76px);
  padding: 90px 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.legal-page h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--surface-strong);
  color: #fffaf0;
  box-shadow: 0 14px 34px rgba(33, 27, 22, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.66);
  color: var(--text);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
}

.card-label {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  font-size: 1.08rem;
  font-weight: 750;
}

.hero-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.section {
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split > p,
.contact p,
.service-card p,
.steps p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.cards,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.steps article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.72);
}

.process {
  border-top: 1px solid var(--line);
}

.steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  border-radius: 34px;
  padding: 42px;
  background: var(--surface-strong);
  color: #fffaf0;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 250, 240, 0.72);
}

.business-details {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.82);
  font-style: normal;
}

.business-details span:first-child {
  color: #fffaf0;
  font-weight: 800;
}

.business-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact .button.primary {
  background: #fffaf0;
  color: var(--text);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

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

.legal-content a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-updated {
  font-weight: 750;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 66px 0;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps article {
    min-height: auto;
  }

  .contact {
    padding: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero-card,
  .service-card,
  .steps article {
    border-radius: 22px;
    padding: 24px;
  }
}
