:root {
  --bg: #f8f6f1;
  --surface: #ffffff;
  --surface-soft: #fcfbf8;
  --text: #2d2a26;
  --muted: #6e665d;
  --accent: #8aa35b;
  --accent-dark: #6f8747;
  --line: #e7e0d5;
  --shadow: 0 12px 28px rgba(63, 52, 39, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #fcfbf8 0%, var(--bg) 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: 0.45rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(231, 224, 213, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-size: 0.98rem;
  padding: 0.25rem 0;
}
.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--text);
}
.hero {
  padding: 4rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  background: #edf2e3;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
h3 { font-size: 1.2rem; }
.lead p {
  font-size: 1.05rem;
  color: #3d3832;
}
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.button {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.button:hover,
.button:focus-visible { background: var(--accent-dark); }
.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #cfc4b3;
  background: #fdfcf9;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.portrait-card,
.section-card,
.info-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.portrait-card { padding: 1rem; }
.portrait-card img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait-name {
  text-align: center;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 1.02rem;
}
.section { padding: 1rem 0 3rem; }
.section-card { padding: 2rem; }
.section-intro { margin-bottom: 1.4rem; color: var(--muted); }
.focus-grid,
.two-col-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}
.focus-grid,
.two-col-grid,
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.focus-item,
.info-card,
.price-item {
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  min-height: 100%;
}
.focus-item,
.price-item strong { font-weight: 700; }
.muted { color: var(--muted); }
.contact-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3f7ea 0%, #fbfaf6 100%);
  border: 1px solid #dfe7cf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-box p { margin: 0; font-size: 1.03rem; }
.page-hero {
  padding: 3rem 0 1.5rem;
}
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.stack { display: grid; gap: 1.3rem; }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.info-card { padding: 1.5rem; }
.info-card address { font-style: normal; }
.form-card { padding: 1.5rem; }
.form-row { display: grid; gap: 0.5rem; margin-bottom: 1rem; }
label { font-weight: 700; font-size: 0.96rem; }
input,
textarea {
  width: 100%;
  border: 1px solid #d7cfbf;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}
input:focus,
textarea:focus {
  outline: 2px solid rgba(138, 163, 91, 0.18);
  border-color: var(--accent);
}
textarea { min-height: 180px; resize: vertical; }
.form-note { font-size: 0.92rem; color: var(--muted); }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}
.alert {
  display: none;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
}
.alert-success {
  display: block;
  background: #edf6e6;
  border: 1px solid #cfe0bb;
}
.alert-error {
  display: block;
  background: #fbefef;
  border: 1px solid #e3c1c1;
}
.legal-block + .legal-block { margin-top: 2rem; }
.legal-block p:last-child,
.legal-block ul:last-child { margin-bottom: 0; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.small { font-size: 0.95rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .portrait-card { max-width: 460px; }
}
@media (max-width: 720px) {
  .header-inner {
    padding: 0.75rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav { justify-content: flex-start; }
  .hero { padding-top: 2.4rem; }
  .section-card,
  .info-card,
  .form-card { padding: 1.3rem; }
  .focus-grid,
  .two-col-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-box { align-items: flex-start; }
}
