:root {
  --ink: #17211d;
  --muted: #5e6963;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #d9ddd5;
  --accent: #9b3d2d;
  --accent-dark: #742b21;
  --sage: #dce5d9;
  --blue: #2f5f73;
  --gold: #c48b32;
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 44px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand-text {
  max-width: 360px;
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.section-band,
.section-wrap {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 44px);
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: none;
  background:
    linear-gradient(115deg, rgba(251,250,247,0.94), rgba(251,250,247,0.78) 46%, rgba(220,229,217,0.66)),
    repeating-linear-gradient(135deg, rgba(47,95,115,0.12) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #f7efe5, #dce5d9 58%, #e8edf0);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 780px;
}

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

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 670px;
  color: #3f4944;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  border-color: #bfc7bd;
}

.hero-panel,
.address-box,
.contact-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
}

.panel-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.panel-line:last-child {
  border-bottom: 0;
}

.panel-line span,
.fact span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.panel-line strong,
.fact strong {
  display: block;
  line-height: 1.35;
}

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

.section-heading.wide {
  max-width: 900px;
}

.section-heading p,
.copy-columns p,
.intro-grid p,
.visit-copy p,
.contact-card p,
.service-card p,
.readiness-list p,
.steps span {
  color: var(--muted);
}

.intro-grid,
.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 52px);
  font-size: 1.05rem;
}

.services,
.process,
.readiness,
.contact {
  background: #eef2ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

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

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.address-box {
  padding: 28px;
}

address {
  margin-bottom: 18px;
  font-style: normal;
  color: var(--muted);
}

.text-link {
  font-weight: 800;
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 220px;
  padding: 26px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.readiness-list,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.readiness-list div,
.fact {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 44px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .visit,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .steps,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .readiness-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand-text {
    max-width: 260px;
  }

  .section-band,
  .section-wrap {
    padding: 48px 18px;
  }

  .card-grid,
  .steps,
  .trust-grid,
  .intro-grid,
  .copy-columns {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .address-box,
  .contact-card,
  .service-card,
  .readiness-list div,
  .fact,
  .steps li {
    box-shadow: none;
  }

  .actions,
  .actions.centered {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}