:root {
  --ink: #17211b;
  --muted: #516258;
  --green: #1f5a3d;
  --green-2: #2f7654;
  --sand: #f4efe4;
  --cream: #fff9ea;
  --clay: #8f4b28;
  --clay-2: #b45f35;
  --line: #ded5c3;
  --leaf-soft: #edf5e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 27, 0.12);
  --shadow-soft: 0 10px 28px rgba(23, 33, 27, 0.09);
}

* { 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(--cream);
  line-height: 1.65;
}

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(31, 90, 61, .32);
  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, 249, 234, .96);
  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: .55rem 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;
}

.phone {
  display: inline-block;
  background: var(--clay);
  color: var(--white) !important;
  padding: .48rem .72rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(143, 75, 40, .18);
}

.hero {
  padding: 4.7rem 0 3.6rem;
  background:
    radial-gradient(circle at 83% 22%, rgba(180, 95, 53, .13), transparent 28%),
    linear-gradient(115deg, #fff6dc 0%, #e2f0df 58%, #dceef2 100%);
  border-bottom: 6px solid var(--green);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 2rem;
  align-items: center;
}

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

.band .eyebrow { color: #f7d8bc; }

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -.035em;
}

h1 { max-width: 880px; font-size: clamp(2.3rem, 7vw, 4.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.lead {
  max-width: 720px;
  color: #354239;
  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: 10px;
  padding: .85rem 1.1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}

.btn.primary { background: var(--green); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--green); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.band .btn.secondary { border-color: var(--white); }

.panel,
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px 28px 8px 28px;
  padding: 1.25rem;
  box-shadow: 0 1px 0 rgba(23, 33, 27, .03);
}

.panel { box-shadow: var(--shadow); }
.card.accent { background: var(--leaf-soft); }

.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; }

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

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

.list { margin: 0; padding-left: 1.1rem; }
.list li { margin-bottom: .55rem; }

.band {
  background: var(--green);
  color: var(--white);
}

.band a { color: var(--white); }
.band .card { color: var(--ink); }
.band .card a { color: var(--green); font-weight: 800; }

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

.photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  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: 12px;
  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: 8px;
  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: #121a15;
  color: #e8eee9;
  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: 3rem 0;
  background: 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: 16px;
  margin-bottom: .8rem;
  padding: 1rem;
}

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

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

  .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; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 2.25rem; }
  .panel { margin-top: 1.5rem; }
  section { padding: 2.5rem 0; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .nav { display: block; }
  .brand-logo { width: 142px; }
  .footer-logo { width: 168px; }
  nav ul { gap: .6rem; }
  nav a { font-size: .9rem; }
  .phone { padding: .55rem .75rem; }
  .btn { width: 100%; }
}

@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; }
}
