:root {
  color-scheme: light;
  --ink: #1c2522;
  --muted: #5f6d67;
  --line: #d9e0dc;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --clay: #b85b3f;
  --clay-soft: #f7dfd6;
  --sage: #dbe8df;
  --gold: #c29b48;
  --shadow: 0 18px 50px rgba(28, 37, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-clay {
  background: var(--clay);
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #16231f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 24, 21, 0.9), rgba(13, 24, 21, 0.55) 48%, rgba(13, 24, 21, 0.16)),
    url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 42px;
}

.hero-copy {
  width: min(690px, 100%);
  color: #fff;
}

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

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy .lede {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts div {
  min-height: 86px;
  padding: 18px;
  background: rgba(251, 250, 246, 0.12);
}

.hero-facts strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}

.hero-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2,
.split h2,
.cta-band h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-header p,
.split p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.service-card,
.step,
.faq-item,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-card .number,
.step .number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal-dark);
  font-weight: 850;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

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

.inline-action {
  margin: 18px 0 0;
}

.page-hero {
  padding: 86px 0 64px;
  background:
    linear-gradient(90deg, rgba(13, 24, 21, 0.88), rgba(13, 24, 21, 0.58)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
}

.page-hero .container {
  max-width: 960px;
}

.breadcrumb {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
}

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

.legal .breadcrumb a {
  color: var(--teal-dark);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.page-hero .lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 42px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 32px;
}

.content-block {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-block h2,
.blog-card h2,
.legal h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

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

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.sidebar-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar-panel h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.sidebar-panel p {
  color: var(--muted);
}

.sidebar-links {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.sidebar-links a {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.post-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.article {
  max-width: 820px;
}

.article img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article h2 {
  margin-top: 28px;
}

.legal {
  max-width: 860px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 48px;
  align-items: center;
}

.photo-stack {
  display: grid;
  gap: 16px;
}

.photo-main {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

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

.step {
  padding: 26px;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.93rem;
}

.lead-section {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(11, 79, 74, 0.98)),
    var(--teal-dark);
  color: #fff;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.lead-grid h2 {
  color: #fff;
}

.lead-grid p {
  color: rgba(255, 255, 255, 0.8);
}

.lead-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lead-points li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.form-panel {
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.cta-band {
  padding: 46px;
  border-radius: 8px;
  background: var(--clay-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band p {
  max-width: 670px;
  margin-bottom: 0;
  color: #6e4b3f;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-grid div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-grid a {
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: none;
}

.footer-disclaimer {
  max-width: 1120px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #6f7a76;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .nav {
    min-height: 64px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 86px 0 30px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 24, 21, 0.82), rgba(13, 24, 21, 0.78)),
      url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1100&q=82") center / cover;
  }

  .hero-facts,
  .section-header,
  .grid-3,
  .split,
  .steps,
  .lead-grid,
  .faq-grid,
  .cta-band,
  .content-layout,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    position: static;
  }

  .section {
    padding: 56px 0;
  }

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

  .cta-band {
    padding: 30px;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .container,
  .hero-inner {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-facts div {
    min-height: 72px;
    padding: 14px;
  }

  .footer-grid,
  .footer-grid div:last-child {
    display: grid;
    justify-content: start;
  }
}
