:root {
  --bg: #ffffff;
  --text: #1c2230;
  --muted: #5d6678;
  --primary: #8d6a2f;
  --primary-dark: #6f5323;
  --line: #e8ebf1;
  --card: #ffffff;
  --soft: #f7f8fb;
  --shadow: 0 18px 45px rgba(20, 32, 57, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { font-weight: 700; letter-spacing: .04em; font-size: 1rem; }
.brand span { display: block; font-size: 1.08rem; color: var(--primary-dark); }
.nav { display: flex; gap: 24px; color: var(--muted); }
.nav a:hover { color: var(--primary-dark); }
.header-phone {
  padding: 12px 18px; border-radius: 999px; background: var(--primary); color: #fff; font-weight: 700;
  box-shadow: var(--shadow);
}
.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(141,106,47,0.10), transparent 32%),
    radial-gradient(circle at right 20%, rgba(141,106,47,0.08), transparent 28%),
    linear-gradient(180deg, #fff, #fbfbfd 60%, #fff);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block; padding: 8px 12px; border-radius: 999px; background: #f4efe5; color: var(--primary-dark);
  font-size: .86rem; font-weight: 700; letter-spacing: .03em;
}
.hero h1 {
  margin: 18px 0 10px; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: .98;
}
.hero h1 span { display: block; color: var(--primary-dark); }
.hero-name { font-size: 1.18rem; font-weight: 700; margin: 0 0 14px; }
.hero-text { font-size: 1.05rem; color: var(--muted); max-width: 720px; }
.hero-values { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.hero-values span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
  border-radius: 999px; font-weight: 700; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; border-color: var(--line); }
.visual-card {
  background: linear-gradient(180deg, #fff, #faf7f2); border: 1px solid #ede5d5; border-radius: 28px; box-shadow: var(--shadow);
  padding: 28px; position: relative;
}
.visual-card img { width: 100%; max-width: 420px; margin: 0 auto; }
.visual-badge {
  position: absolute; left: 24px; right: 24px; bottom: 24px; background: rgba(28,34,48,.92); color: #fff; text-align: center;
  padding: 12px 14px; border-radius: 16px; font-weight: 700;
}
.section { padding: 32px 0 72px; }
.intro-card, .contact-panel, .info-card, .value-box {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
}
.intro-card {
  padding: 28px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: center;
}
.section-heading { margin-bottom: 28px; }
.section-heading.center { text-align: center; }
.section-heading h2, .intro-card h2, .values-copy h2, .contact-main h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 12px 0; }
.section-heading p, .intro-card p, .values-copy p, .contact-side p { color: var(--muted); }
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.info-card { padding: 26px 22px; }
.icon-wrap {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 16px;
  background: #f4efe5; margin-bottom: 14px;
}
.info-card h3 { margin: 0 0 8px; }
.info-card p { margin: 0; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.values-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-box { padding: 28px; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; }
.value-number { font-size: 3rem; font-weight: 700; color: #dbc89f; line-height: 1; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.contact-panel { padding: 30px; }
.contact-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.contact-phone {
  display: inline-block; font-size: 1.35rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 18px;
}
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted);
}
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; background: var(--primary); color: #fff; box-shadow: var(--shadow);
  border-radius: 999px; min-height: 56px; padding: 0 18px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700;
}
@media (max-width: 960px) {
  .hero-grid, .intro-card, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid, .values-boxes { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { flex-wrap: wrap; justify-content: center; padding: 14px 0; }
}
@media (max-width: 640px) {
  .container { width: min(1120px, calc(100% - 20px)); }
  .nav { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 18px; }
  .cards-grid, .values-boxes { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; justify-content: center; padding: 16px 0; }
  .floating-call strong { display: none; }
}
