:root {
  --cream: #faf4ec;
  --paper: #fffaf4;
  --rose: #b03a48;
  --rose-deep: #8c2c38;
  --gold: #b8925a;
  --dark: #3c2826;
  --ink: #2a1c1b;
  --muted: #7a635c;
  --line: rgba(184, 146, 90, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 7vw;
  background: rgba(250, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700; letter-spacing: 0.14em;
  color: var(--rose); font-size: 1.15rem;
}
.logo span {
  display: block; font-size: 0.62rem; letter-spacing: 0.28em;
  color: var(--gold); font-weight: 500;
}
.nav nav { display: flex; gap: 22px; font-size: 0.92rem; color: var(--muted); }
.nav nav a:hover { color: var(--rose); }

.btn {
  display: inline-block;
  background: var(--rose); color: #fff;
  padding: 12px 20px; border-radius: 999px;
  border: 0; font: inherit; cursor: pointer;
}
.btn:hover { background: var(--rose-deep); }
.btn-ghost {
  background: transparent; color: var(--dark);
  border: 1px solid var(--gold);
}
.btn-sm { padding: 8px 14px; font-size: 0.88rem; }

.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
  padding: 64px 7vw 40px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold); font-size: 0.76rem; margin-bottom: 12px;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 4.4vw, 4.1rem); line-height: 1.08; color: var(--dark); }
h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.15; }
.lead { margin-top: 18px; color: var(--muted); max-width: 36rem; font-size: 1.05rem; }
.lead.ru { color: var(--rose); font-style: italic; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual { position: relative; }
.hero-visual > img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 28px; box-shadow: 0 24px 50px rgba(60, 40, 38, 0.18);
}
.float-card {
  position: absolute; left: -36px; bottom: -28px;
  width: 210px; background: var(--paper);
  padding: 10px; border-radius: 18px;
  box-shadow: 0 16px 32px rgba(60, 40, 38, 0.16);
}
.float-card img { height: 150px; width: 100%; object-fit: cover; border-radius: 12px; }
.float-card p { font-size: 0.82rem; padding: 8px 4px 2px; color: var(--muted); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin: 64px 7vw 20px;
  padding: 28px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 20px;
}
.stats div { padding: 8px 12px; }
.stats strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.4rem; }
.stats span { color: var(--muted); font-size: 0.9rem; }

.section { padding: 80px 7vw; }
.section-head { max-width: 40rem; margin-bottom: 36px; }
.section-head p { color: var(--muted); margin-top: 10px; }
.section-head.light h2, .section-head.light p { color: #f6eee6; }
.section-head.light .eyebrow { color: #e3c48a; }

.grid { display: grid; gap: 22px; }
.products { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
}
.card img { height: 240px; width: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 22px; }
.card-body h3 { font-size: 1.45rem; }
.ru-name { color: var(--rose); font-size: 0.92rem; margin: 4px 0 8px; }
.card-body p { color: var(--muted); font-size: 0.95rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery figcaption {
  padding: 8px 10px 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

.split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
}
.ticks { margin-top: 20px; list-style: none; color: var(--muted); }
.ticks li { padding: 8px 0 8px 22px; position: relative; }
.ticks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.mosaic {
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; min-height: 180px; }
.mosaic img:first-child { grid-row: 1 / span 2; min-height: 420px; }

.band { background: var(--dark); color: #f6eee6; }
.three { grid-template-columns: repeat(3, 1fr); }
.tile {
  background: rgba(255, 250, 244, 0.06);
  border: 1px solid rgba(184, 146, 90, 0.25);
  border-radius: 18px; padding: 24px;
}
.tile h3 { margin-bottom: 8px; font-size: 1.5rem; }
.tile p { color: #d7c4b8; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.note { margin-top: 16px; font-size: 0.9rem; color: var(--muted); }
.form {
  display: grid; gap: 12px; background: var(--paper);
  padding: 24px; border-radius: 20px; border: 1px solid var(--line);
}
.form label { display: grid; gap: 6px; font-size: 0.86rem; color: var(--muted); }
.form input, .form textarea {
  font: inherit; padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
}
.thanks { color: var(--rose); }

footer {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 28px 7vw 40px; border-top: 1px solid var(--line); color: var(--muted);
}

@media (max-width: 980px) {
  .hero, .split, .contact, .products, .three, .stats { grid-template-columns: 1fr 1fr; }
  .nav nav { display: none; }
  .hero-visual > img { height: 420px; }
}
@media (max-width: 680px) {
  .hero, .split, .contact, .products, .three, .stats, .mosaic { grid-template-columns: 1fr; }
  .float-card { position: static; width: auto; margin-top: 14px; }
  .hero { padding-top: 32px; }
}
