/* Seyhun mobilya — изумруд + золото + крем */
:root {
  --green: #123e33;
  --green-d: #0c2c24;
  --gold: #c8a15a;
  --gold-l: #dcbe85;
  --cream: #faf8f3;
  --ink: #1c211f;
  --soft: #6e7873;
  --line: #e6e1d6;
  --white: #ffffff;
  --r: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Golos Text', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Prata', serif; font-weight: 400; line-height: 1.18; }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- topline / header ---------- */
.topline {
  background: var(--green-d); color: #cfe0d6;
  font-size: 13px; letter-spacing: .03em;
  display: flex; justify-content: center; gap: 10px;
  padding: 7px 16px; text-align: center;
}
.tl-dot { color: var(--gold); }

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-t {
  font-family: 'Prata', serif; font-size: 22px; color: var(--green);
  letter-spacing: .04em; white-space: nowrap;
}
.logo-t em { font-style: normal; color: var(--gold); }
.logo-s { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--soft); }
.nav { display: flex; gap: 22px; margin-left: 10px; }
.nav a { font-size: 15px; color: var(--ink); position: relative; padding: 4px 0; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s;
}
.nav a:hover::after { width: 100%; }
.hdr-r { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.hdr-tel { font-weight: 600; font-size: 15px; white-space: nowrap; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: #26a95c; color: #fff; box-shadow: 0 6px 18px rgba(38, 169, 92, .25); }
.btn-wa:hover { background: #21964f; }
.btn-gold { background: var(--gold); color: var(--green-d); box-shadow: 0 8px 22px rgba(200, 161, 90, .35); }
.btn-gold:hover { background: var(--gold-l); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); }
.btn-line { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn-line:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn-line-d { border: 1.5px solid var(--green); color: var(--green); }
.btn-line-d:hover { background: var(--green); color: #fff; }
.btn-big { padding: 15px 30px; font-size: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 30, 24, .82) 0%, rgba(10, 30, 24, .55) 45%, rgba(10, 30, 24, .12) 100%);
}
.hero-in { position: relative; z-index: 1; padding: 90px 20px; color: #fff; width: 100%; }
.hero-kicker {
  display: inline-block; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-l); border: 1px solid rgba(220, 190, 133, .45);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(32px, 5.2vw, 62px); max-width: 880px; }
.hero h1 em { font-style: normal; color: var(--gold-l); }
.hero-sub { margin-top: 20px; font-size: clamp(16px, 1.6vw, 19px); max-width: 520px; color: rgba(255, 255, 255, .88); }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- статы ---------- */
.stats { background: var(--green); color: #fff; }
.stats-in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 34px; padding-bottom: 34px; gap: 20px; text-align: center;
}
.stat b { font-family: 'Prata', serif; font-weight: 400; font-size: clamp(26px, 3vw, 38px); color: var(--gold-l); display: block; }
.stat span { font-size: 13.5px; color: rgba(255, 255, 255, .75); }

/* ---------- секции ---------- */
.sec { padding: 76px 0; }
.sec-gray { background: #f2efe7; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 38px;
}
.sec-label {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.sec-label-light { color: var(--gold-l); }
.sec-link { color: var(--green); font-weight: 600; font-size: 15px; white-space: nowrap; padding-bottom: 4px; }
.sec-link:hover { color: var(--gold); }

/* ---------- категории ---------- */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  color: #fff;
}
.cat-tile:nth-child(1), .cat-tile:nth-child(2) { grid-column: span 3; aspect-ratio: 16 / 10; }
.cat-tile:nth-child(n+3) { grid-column: span 2; }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 44, 36, 0) 35%, rgba(12, 44, 36, .82) 100%);
  transition: background .3s;
}
.cat-name { position: relative; font-family: 'Prata', serif; font-size: 21px; }
.cat-desc { position: relative; font-size: 13.5px; color: rgba(255, 255, 255, .82); margin-top: 4px; }

/* ---------- карточки ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28, 33, 31, .12); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--green-d);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 999px;
}
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.card-body h3 { font-size: 20px; color: var(--green-d); }
.card-cat { font-size: 13px; color: var(--soft); }
.card-price { margin-top: 9px; font-weight: 600; font-size: 14.5px; color: var(--gold); }

/* ---------- фабрика ---------- */
.factory { position: relative; padding: 96px 0; color: #fff; overflow: hidden; }
.factory-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.factory-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 28, 22, .93), rgba(10, 28, 22, .82)); }
.factory-in { position: relative; z-index: 1; }
.factory h2 { max-width: 560px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.step {
  border: 1px solid rgba(220, 190, 133, .3); border-radius: var(--r);
  padding: 26px 24px; background: rgba(255, 255, 255, .04);
  transition: border-color .25s, background .25s;
}
.step:hover { border-color: rgba(220, 190, 133, .7); background: rgba(255, 255, 255, .07); }
.step i { font-style: normal; font-family: 'Prata', serif; font-size: 15px; color: var(--gold-l); letter-spacing: .1em; }
.step b { display: block; font-size: 19px; margin: 10px 0 8px; font-weight: 600; }
.step span { font-size: 14.5px; color: rgba(255, 255, 255, .78); }

/* ---------- отзывы ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; position: relative;
}
.rev::before {
  content: '“'; font-family: 'Prata', serif; font-size: 54px; line-height: 1;
  color: var(--gold); position: absolute; top: 14px; left: 22px; opacity: .5;
}
.rev blockquote { font-size: 16.5px; padding-top: 26px; }
.rev figcaption { margin-top: 14px; font-size: 13px; color: var(--soft); }

/* ---------- визит ---------- */
.visit { padding: 76px 0; background: #f2efe7; }
.visit-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.visit-txt p { margin: 18px 0 26px; color: var(--soft); font-size: 16px; }
.visit-img { border-radius: var(--r); overflow: hidden; box-shadow: 0 24px 60px rgba(28, 33, 31, .18); }

/* ---------- каталог ---------- */
.page-head { padding: 34px 0 0; }
.crumbs { font-size: 13.5px; color: var(--soft); margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold); }
.ph-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ph-row h1 { font-size: clamp(30px, 4vw, 44px); color: var(--green-d); }
.search {
  display: flex; align-items: center; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  min-width: 280px;
}
.search input {
  border: 0; outline: 0; padding: 11px 18px; font: inherit; font-size: 14.5px;
  background: transparent; width: 100%;
}
.search button {
  border: 0; background: transparent; color: var(--green);
  padding: 10px 16px; cursor: pointer; display: flex;
}
.search button:hover { color: var(--gold); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.chip {
  border: 1.5px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.on { background: var(--green); border-color: var(--green); color: #fff; }
.sec-cat { padding-top: 40px; }
.cat-note { margin-top: 34px; text-align: center; color: var(--soft); font-size: 14.5px; }
.empty { text-align: center; padding: 60px 20px; }
.empty p { font-size: 19px; font-family: 'Prata', serif; }
.empty-sub { font-family: 'Golos Text', sans-serif !important; color: var(--soft); font-size: 15px !important; margin: 12px 0 26px; }

/* ---------- товар ---------- */
.prod { padding-top: 30px; }
.prod-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.prod-photo { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: 0 24px 60px rgba(28, 33, 31, .14); }
.prod-photo .card-tag { top: 16px; left: 16px; }
.prod-info h1 { font-size: clamp(30px, 3.6vw, 44px); color: var(--green-d); }
.prod-desc { margin-top: 16px; font-size: 16.5px; color: var(--ink); }
.specs { width: 100%; border-collapse: collapse; margin-top: 26px; font-size: 15px; }
.specs td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.specs td:first-child { color: var(--soft); width: 42%; }
.prod-price { margin-top: 26px; font-family: 'Prata', serif; font-size: 26px; color: var(--gold); }
.prod-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.prod-hint { margin-top: 14px; font-size: 13.5px; color: var(--soft); }

/* ---------- footer ---------- */
.ftr { background: var(--green-d); color: rgba(255, 255, 255, .85); margin-top: 40px; }
.ftr-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-top: 56px; padding-bottom: 40px;
}
.f-logo { font-size: 24px; color: #fff; margin-bottom: 14px; }
.f-logo em { color: var(--gold-l); }
.ftr-brand p { font-size: 14.5px; color: rgba(255, 255, 255, .7); max-width: 300px; }
.ftr-inst { display: inline-block; margin-top: 14px; color: var(--gold-l); font-weight: 600; }
.ftr-inst:hover { color: #fff; }
.ftr-h {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 14px; font-weight: 600;
}
.ftr-col p { font-size: 14.5px; margin-bottom: 10px; }
.ftr-col a:hover { color: var(--gold-l); }
.ftr-btm {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px; padding-bottom: 24px; font-size: 13px; color: rgba(255, 255, 255, .55);
}

/* ---------- wa fab ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #26a95c; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(38, 169, 92, .4);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ---------- мобилка ---------- */
@media (max-width: 960px) {
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 20px 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; font-size: 16px; }
  .burger { display: block; }
  .hdr-tel { display: none; }
  .logo-t { font-size: 19px; }
  .stats-in { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .cats { grid-template-columns: 1fr 1fr; }
  .cat-tile, .cat-tile:nth-child(n) { grid-column: span 1; aspect-ratio: 4 / 3; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .visit-in { grid-template-columns: 1fr; gap: 30px; }
  .prod-grid { grid-template-columns: 1fr; gap: 30px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .topline { font-size: 12px; }
  .topline span:first-child, .topline .tl-dot { display: none; }
  .hero { min-height: 78vh; }
  .btn-wa { padding: 10px 16px; font-size: 14px; }
  .grid-3 { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .cat-tile, .cat-tile:nth-child(n) { aspect-ratio: 16 / 10; }
  .sec { padding: 54px 0; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 26px; }
  .search { min-width: 100%; }
  .ftr-grid { grid-template-columns: 1fr; }
  .wa-fab { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}
