:root {
  --ink: #0f172a;
  --muted: #4d5d55;
  --primary: #1e3a5f;
  --primary-2: #274e77;
  --green: #1f5a3d;
  --green-2: #2f7654;
  --sand: #f4efe4;
  --cream: #fffaf0;
  --clay: #a16207;
  --clay-2: #854d0e;
  --mist: #e9eef5;
  --sky: #dceef2;
  --line: #cbd5c9;
  --leaf-soft: #edf5e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.09);
  --shadow-tight: 0 6px 18px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 238, 242, .55), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #f8fafc 48%, #fffaf0 100%);
  line-height: 1.65;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

main > .page-hero:only-child {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}

a { color: var(--green); }
a:hover { color: var(--clay); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(30, 58, 95, .34);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; }
figure { margin: 0; }

.skip {
  position: absolute;
  left: -999px;
  top: .5rem;
  z-index: 10;
  background: var(--white);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 10px;
}

.skip:focus { left: .75rem; }

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  padding: .62rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
  flex: 0 0 auto;
}

.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: .85rem;
  background: #fff9ea;
  border-radius: 10px;
  padding: .25rem .4rem;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a,
.btn,
label,
summary,
button {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

nav a {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  padding: .34rem .45rem;
  transition: background-color .18s ease, color .18s ease;
}

nav a:hover { background: rgba(31, 90, 61, .09); }

.phone {
  display: inline-block;
  background: var(--green);
  color: var(--white) !important;
  padding: .52rem .76rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(31, 90, 61, .18);
}

.phone:hover { background: var(--primary); color: var(--white) !important; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 4.2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(161, 98, 7, .18), transparent 26rem),
    radial-gradient(circle at 14% 8%, rgba(31, 90, 61, .14), transparent 24rem),
    linear-gradient(120deg, #fff6dd 0%, #edf5e8 48%, #dceef2 100%);
  border-bottom: 1px solid rgba(31, 90, 61, .22);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--clay), var(--primary));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(1.3rem, 4vw, 3.2rem);
  align-items: center;
}

.eyebrow {
  color: var(--clay-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.band .eyebrow { color: #f7d8bc; }

h1,
h2,
h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -.05em;
}

h1 { max-width: 920px; font-size: clamp(2.45rem, 7vw, 5.25rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.15rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.lead {
  max-width: 750px;
  color: #263c34;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  min-height: 48px;
  padding: .82rem 1.18rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn.primary {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(161, 98, 7, .22);
}

.btn.primary:hover { background: var(--clay-2); border-color: var(--clay-2); }
.btn.secondary { background: var(--white); color: var(--primary); border-color: rgba(30, 58, 95, .45); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.band .btn.secondary { border-color: var(--white); }

.route-note {
  max-width: 760px;
  margin-top: 1rem;
  border: 1px solid rgba(31, 90, 61, .14);
  border-left: 5px solid var(--clay);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  padding: .85rem 1rem;
  font-size: .96rem;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.05rem;
}

.signal-strip span,
.kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(30, 58, 95, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  padding: .52rem .66rem;
  text-transform: uppercase;
}

.panel,
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.2vw, 1.45rem);
  box-shadow: 0 1px 0 rgba(23, 33, 27, .03);
}

.panel { box-shadow: var(--shadow); }
.hero-panel { position: relative; }
.card.accent { background: linear-gradient(145deg, var(--leaf-soft), #fffaf0); }

.section-head {
  max-width: 820px;
  margin-bottom: 1.35rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.narrow { max-width: 720px; }

.context-note {
  background: linear-gradient(135deg, rgba(31, 90, 61, .08), rgba(180, 95, 53, .08));
  border: 1px solid rgba(31, 90, 61, .16);
  border-radius: 18px;
  margin-top: 1.35rem;
  padding: 1rem;
}

.context-note h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: .45rem;
}

.context-note p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: .7rem;
}

.context-note a {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}

section { padding: 3.5rem 0; }

.story-section { background: rgba(255, 255, 255, .42); }

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

.context-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.context-card {
  min-height: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.context-card:hover,
.anchor-card:hover {
  border-color: rgba(30, 58, 95, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.context-card h3 { margin-top: .9rem; }

.context-card p,
.anchor-card p,
.step-card p { color: var(--muted); }

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.split-feature { align-items: center; }

.list { margin: 0; padding-left: 1.1rem; }
.list li { margin-bottom: .55rem; }
.list li::marker { color: var(--clay); }

.check-list li { padding-left: .1rem; }

.band {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, .12), transparent 20rem),
    linear-gradient(135deg, var(--primary), var(--green));
  color: var(--white);
}

.band a { color: var(--white); }
.band .card { color: var(--ink); }
.band .card a { color: var(--green); font-weight: 800; }
.service-band .card { box-shadow: 0 18px 36px rgba(0, 0, 0, .14); }
.feature-cards .card { display: flex; flex-direction: column; }
.feature-cards .card a { margin-top: auto; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  position: relative;
  border: 1px solid rgba(30, 58, 95, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  padding: 1.35rem;
  box-shadow: var(--shadow-tight);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.step-card h3 { margin-bottom: .65rem; }

.trust-note {
  margin-top: 1.2rem;
}

.trust-note p { margin-bottom: 0; }

.final-cta .two { align-items: center; }

.notice {
  border-left: 5px solid var(--clay);
  background: #fff2df;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.photo-card.compact {
  margin-bottom: 1rem;
  box-shadow: none;
}

.photo-card.compact img { aspect-ratio: 16 / 10; }

.photo-card figcaption {
  background: #fffdf7;
  color: var(--muted);
  font-size: .88rem;
  padding: .75rem .9rem;
}

form { display: grid; gap: .8rem; }
label { display: block; font-weight: 800; }

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
  margin-top: .3rem;
  padding: .8rem;
}

input::placeholder,
textarea::placeholder { color: #6c7a70; }

textarea { min-height: 130px; }
button { cursor: pointer; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--green);
}

.consent {
  background: #f7ecd8;
  border-left: 4px solid var(--clay);
  border-radius: 14px;
  font-size: .9rem;
  padding: .75rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.footer {
  background: #101820;
  color: #e8eee9;
  flex-shrink: 0;
  padding: 2.5rem 0;
}

.footer a { color: #e8eee9; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1.5rem;
}

.small { color: var(--muted); font-size: .92rem; }
.footer .small { color: #bdc9c0; }
.footer-links { margin-top: 1rem; font-size: .9rem; }
.crumbs { margin-bottom: 1rem; color: var(--muted); font-size: .9rem; }

.page-hero {
  padding: 3.35rem 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(161, 98, 7, .12), transparent 22rem),
    linear-gradient(135deg, #fff8e8, #e9f2e8);
  border-bottom: 1px solid var(--line);
}

.content { max-width: 850px; }

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: .8rem;
  padding: 1rem;
  box-shadow: var(--shadow-tight);
}

summary { cursor: pointer; font-weight: 800; }

@media (max-width: 1050px) {
  .context-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .hero-grid,
  .two,
  .footer-grid { display: block; }

  .step-grid { grid-template-columns: 1fr; }

  .context-grid { grid-template-columns: 1fr; }

  .nav {
    align-items: flex-start;
    padding: .45rem 0;
  }

  .brand-logo { width: 138px; }

  nav ul { justify-content: flex-end; margin-top: 0; gap: .42rem; }
  nav a { font-size: .82rem; }
  .phone { padding: .38rem .55rem; }
  .contact-hero-visual { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 2.35rem; }
  .panel { margin-top: 1.5rem; }
  .section-head { margin-bottom: 1rem; }
  section { padding: 2.5rem 0; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .nav { display: flex; align-items: center; flex-wrap: wrap; }
  .brand-logo { width: 132px; }
  .footer-logo { width: 168px; }
  nav ul { flex: 1 1 100%; justify-content: flex-start; gap: .36rem; }
  nav a { font-size: .78rem; padding: .26rem .34rem; }
  .phone { margin-left: auto; padding: .42rem .58rem; }
  .btn { width: 100%; }
  .actions { gap: .65rem; }
  .signal-strip span { flex: 1 1 calc(50% - .55rem); justify-content: center; }
  .panel,
  .card,
  .step-card { border-radius: 18px; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .nav {
    display: flex;
    align-items: center;
    padding: .28rem 0;
  }

  .brand-logo { width: 118px; }
  nav ul { gap: .32rem; margin-top: 0; }
  nav a { font-size: .75rem; line-height: 1.1; }
  .phone { padding: .28rem .45rem; }
}
