:root {
  --bg: #f2eadf;
  --surface: #f8f2e8;
  --surface-soft: #e6d9c8;
  --logo-bg: #efe4d4;
  --logo-bronze: #5a2329;
  --text: #2f2120;
  --text-soft: #6b5850;
  --gold: #6b2b32;
  --gold-dark: #4b1c22;
  --rose: #9a8068;
  --line: #d8c7b3;
  --shadow: 0 12px 36px rgba(47, 23, 20, .14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fbf6ee, var(--bg) 35%);
  line-height: 1.55;
}
img { max-width: 100%; display: block; border-radius: 16px; }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 72px 0; }
.section-soft { background: var(--surface-soft); border-block: 1px solid var(--line); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: none;
  background: var(--logo-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--logo-bronze) 20%, var(--line));
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 56px;
  width: auto;
  border-radius: 0;
}
.menu { display: flex; gap: 24px; color: var(--text-soft); font-weight: 500; }

.hero { padding: 84px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.kicker { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; font-weight: 600; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h1 span { color: var(--gold-dark); }
.lead { color: var(--text-soft); max-width: 58ch; }

.hero-media img { box-shadow: var(--shadow); border: 1px solid var(--line); }

.hero-actions, .cta-grid .btn { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #fff;
}
.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 14px rgba(44, 26, 10, .06);
}
.card p { margin: 0; color: var(--text-soft); }

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.showcase figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.showcase figcaption {
  padding: 10px 6px 4px;
  color: var(--text-soft);
  font-size: .95rem;
}

.metrics { text-align: center; }
.metric-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metric-grid div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 12px;
}
.metric-grid strong {
  display: block;
  font-size: 1.65rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.metric-grid span { color: var(--text-soft); font-size: .95rem; }

.section-cta {
  background: linear-gradient(180deg, #f5ede2 0%, #e9dcca 100%);
  border-top: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.cta-grid p { color: var(--text-soft); }
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--text-soft);
}
.lead-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 1rem;
  background: #fff;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.feedback {
  min-height: 22px;
  margin: 10px 2px 0;
  font-size: .92rem;
  color: var(--gold-dark);
}

@media (max-width: 900px) {
  .menu { display: none; }
  .hero-grid, .cta-grid { grid-template-columns: 1fr; }
  .cards, .showcase { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .brand img { height: 44px; }
}
@media (max-width: 620px) {
  .cards, .showcase, .metric-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
