:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --ink: #181716;
  --muted: #615f5a;
  --line: #e5ded2;
  --accent: #8a6a3f;
  --accent-dark: #604522;
  --soft: #efe7dc;
  --shadow: 0 20px 60px rgba(24, 23, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 70px auto 24px;
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  gap: 34px;
  align-items: center;
}

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

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

h1 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

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

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.14rem;
  margin-bottom: 28px;
}

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

.button {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(96, 69, 34, 0.18);
}

.primary:hover {
  background: #4f381b;
}

.secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card-topline {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), #d6c5a7);
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hero-card li {
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}

.hero-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 4px;
  top: 22px;
}

.trust-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 24px auto 0;
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-around;
  font-weight: 800;
  font-size: 0.94rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 98px auto 0;
}

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

.section-heading p:not(.eyebrow),
.split-section p,
.proof-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
  color: var(--accent-dark);
}

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

.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

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

.proof-section {
  margin-top: 98px;
}

.proof-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 34px;
  padding: 42px;
}

.proof-card .eyebrow,
.proof-card p {
  color: #e7d7bd;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.proof-grid div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 8px;
}

.proof-grid span {
  color: #d8cab5;
  font-size: 0.94rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 90px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(138,106,63,0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-note {
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

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

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

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .trust-strip,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    font-size: 0.86rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    margin-top: 42px;
  }

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

  .split-section,
  .proof-card,
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .trust-strip {
    justify-content: flex-start;
  }
}
