:root {
  --bg: #f5f2e8;
  --surface: #fffdf8;
  --surface-2: #f0ebdc;
  --text: #22201a;
  --muted: #6a665a;
  --line: #d7cfbc;
  --primary: #556b2f;
  --primary-dark: #405021;
  --accent: #b6862c;
  --shadow: 0 16px 40px rgba(34, 32, 26, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(215, 207, 188, 0.8);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center; color: white; font-size: 20px;
  box-shadow: var(--shadow);
}
.brand small { display: block; color: var(--muted); font-weight: 600; font-size: 12px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); }
.button, button {
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 14px 22px; font-weight: 700; font-size: 15px;
  transition: .2s ease;
}
.button.primary, button.primary { background: var(--primary); color: white; }
.button.primary:hover, button.primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button.secondary { background: white; color: var(--primary-dark); border: 1px solid var(--line); }
.button.secondary:hover { border-color: var(--primary); }
.hero { padding: 56px 0 28px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch;
}
.hero-copy, .hero-visual, .card, .list-card, .cta-box, .feature, .form-box, .ad-card, .service-hero, .service-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy { padding: 44px; }
.eyebrow, .tag {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700;
  background: var(--surface-2); color: var(--primary-dark); margin-bottom: 14px;
}
.hero h1 { font-size: clamp(34px, 4.5vw, 62px); line-height: 1.05; margin: 0 0 18px; }
.lead { color: var(--muted); font-size: 18px; max-width: 62ch; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat { background: var(--surface-2); border-radius: 18px; padding: 18px; }
.stat strong { display: block; font-size: 28px; }
.stat span { color: var(--muted); font-size: 14px; }
.hero-visual { overflow: hidden; position: relative; min-height: 100%; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.94); border-radius: 20px; padding: 16px 18px; max-width: 320px;
  border: 1px solid rgba(215, 207, 188, 0.95);
}
.hero-badge strong { display: block; margin-bottom: 6px; }
.section { padding: 34px 0; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 20px; }
.section-head h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); }
.section-head p { color: var(--muted); max-width: 70ch; }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card, .feature, .list-card, .ad-card, .service-box, .form-box { padding: 26px; }
.card h3, .feature h3, .ad-card h3, .service-box h3 { margin-top: 0; margin-bottom: 10px; font-size: 22px; }
.card p, .feature p, .ad-card p, .service-box p, .meta, .small { color: var(--muted); }
.icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--primary-dark); font-size: 23px; margin-bottom: 18px;
}
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo {
  overflow: hidden; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow);
}
.photo img { width: 100%; height: 260px; object-fit: cover; }
.photo figcaption { padding: 14px 16px; color: var(--muted); font-size: 14px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.feature-list li {
  list-style: none; margin: 0; padding: 14px 16px; border-radius: 16px;
  background: var(--surface-2); color: var(--primary-dark); font-weight: 700;
}
.ad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ad-card img { height: 220px; width: 100%; object-fit: cover; border-radius: 18px; margin-bottom: 16px; }
.price { color: var(--primary-dark); font-size: 28px; font-weight: 800; margin: 8px 0 10px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; }
.meta-pill {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--surface-2);
  color: var(--primary-dark); font-weight: 700; font-size: 13px;
}
.cta-box {
  padding: 30px; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  background: linear-gradient(135deg, rgba(85,107,47,0.08), rgba(182,134,44,0.12));
}
.service-hero {
  padding: 34px; display: grid; grid-template-columns: 1fr .9fr; gap: 24px; align-items: center;
}
.service-hero img { width: 100%; height: 320px; object-fit: cover; border-radius: 20px; }
.breadcrumbs { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.checks { padding: 0; margin: 18px 0 0; }
.checks li { list-style: none; padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid var(--line); }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
label { display: block; font-weight: 700; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: white;
  font: inherit; color: var(--text); margin-bottom: 14px;
}
textarea { min-height: 150px; resize: vertical; }
.footer { padding: 28px 0 60px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 22px; }
.footer h4 { margin: 0 0 10px; color: var(--text); }
.kicker { color: var(--accent); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.notice { font-size: 13px; color: var(--muted); margin-top: 8px; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse; background: var(--surface); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--surface-2); }
.mobile-toggle { display: none; }
@media (max-width: 980px) {
  .hero-grid, .service-hero, .form-grid, .footer-grid, .grid-3, .grid-2, .photo-grid, .ad-grid { grid-template-columns: 1fr; }
  .feature-list, .stats { grid-template-columns: 1fr; }
  .hero-copy { padding: 28px; }
  .hero-visual img { min-height: 340px; }
}
@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  .mobile-toggle { display: inline-flex; }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding-top: 12px; }
  .nav-links.open { display: flex; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
