:root {
  --bg: #f4efe6; --ink: #1c1915; --muted: #5c574e;
  --green: #1f4d3a; --green-hover: #163828;
  --card: #fffdf8; --line: #e4ddd0; --cyan: #2bb3d4;
  --header-h: 76px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { background: var(--bg); color: var(--ink); font-family: "Segoe UI", system-ui, sans-serif; line-height: 1.55; }
a { color: var(--green); }
.inner { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 221, 208, 0.8);
}
.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 40px; width: auto; display: block; }
nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: .95rem; }
nav a { color: var(--ink); text-decoration: none; font-weight: 600; }
nav a:hover { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 650; border: 0; cursor: pointer; font-size: 1rem;
}
.btn.solid, form button { background: var(--green); color: #fff; }
.btn.solid:hover, form button:hover { background: var(--green-hover); }
.btn.ghost { background: var(--card); color: var(--green); border: 1.5px solid var(--green); }

.hero {
  position: relative;
  min-height: min(66vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: 36px 0 48px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 50%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244,239,230,.94) 0%, rgba(244,239,230,.72) 38%, rgba(244,239,230,.12) 68%, rgba(244,239,230,0) 100%);
}
.hero .inner { position: relative; z-index: 1; }

.kicker { letter-spacing: .14em; text-transform: uppercase; font-size: 12px; font-weight: 700; color: var(--green); margin: 0 0 12px; }
h1 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.03em; line-height: 1.1; margin: 0 0 12px; }
.tag { font-family: Georgia, serif; font-size: clamp(1.2rem, 3vw, 1.55rem); color: var(--muted); margin: 0 0 20px; }
.lead { color: var(--muted); max-width: 36em; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

section { padding: 64px 0; }
section[id] { scroll-margin-top: var(--header-h); }
section.alt { background: var(--card); }
h2 { font-family: Georgia, serif; font-weight: 500; font-size: 1.9rem; margin: 0 0 18px; }
.about p { max-width: 46em; color: var(--muted); }
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  counter-reset: svc;
}
.card {
  grid-column: span 3;
  counter-increment: svc;
  position: relative;
  background: #fff;
  border: 1px solid rgba(28, 25, 21, 0.06);
  border-radius: 12px;
  padding: 22px 22px 24px;
  box-shadow: 0 1px 0 rgba(28, 25, 21, 0.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: counter(svc, decimal-leading-zero);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.card:nth-child(n+5) { grid-column: span 4; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 77, 58, 0.22);
  box-shadow: 0 18px 40px -24px rgba(28, 25, 21, 0.35);
}
.note { max-width: 40em; }
.note h3 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.note p { color: var(--muted); margin: 0 0 14px; }
.note p:last-child { margin-bottom: 0; }
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: start;
}
.facts { display: grid; gap: 18px; margin: 28px 0 0; padding: 0; }
.facts dt {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 4px;
}
.facts dd { margin: 0; color: var(--muted); }
.form { display: grid; gap: 8px; max-width: 480px; }
label { font-size: .88rem; font-weight: 650; }
input, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff; }
.hp { position: absolute; left: -9999px; }
.form-ok, .form-err {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 650;
}
.form-ok {
  color: #143d2c;
  background: #dceee4;
  border: 1px solid var(--green);
}
.form-err {
  color: #6b1d1d;
  background: #f6e4e4;
  border: 1px solid #8a2b2b;
}
footer {
  padding: 48px 0 0;
  color: var(--muted);
  font-size: .92rem;
  border-top: 1px solid var(--line);
  background: #efeae1;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px 48px;
  align-items: start;
  padding-bottom: 40px;
}
.foot p { margin: 0 0 6px; }
.foot strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.foot-label {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 12px;
}
.foot a { color: var(--ink); text-decoration: none; font-weight: 600; }
.foot a:hover { color: var(--green); }
.copybar { border-top: 1px solid rgba(28, 25, 21, 0.08); }
.copy {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  color: #8a8378;
  font-size: .8rem;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .card, .card:nth-child(n+5) { grid-column: auto; }
  .card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .top { flex-wrap: wrap; padding: 10px 0; }
  nav { width: 100%; gap: 12px; }
  .hero { min-height: 56vh; }
  .grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .foot { grid-template-columns: 1fr; gap: 28px; }
  .logo { height: 36px; }
  .hero-shade {
    background: linear-gradient(180deg, rgba(244,239,230,.2) 0%, rgba(244,239,230,.88) 58%, rgba(244,239,230,.96) 100%);
  }
}
