/* MONARCH — фирменный стиль: бордо + золото на светлом фоне */

:root {
  --burgundy: #651729;
  --deep: #4B1020;
  --gold: #C89B5A;
  --light-gold: #E1C48F;
  --ivory: #F5EEE4;

  --bg: #FBF8F3;
  --surface: #FFFFFF;
  --ink: #2B1218;
  --muted: #7A6A64;
  --line: #E8DCCC;

  --shadow-sm: 0 2px 10px rgba(75, 16, 32, .06);
  --shadow-md: 0 14px 40px rgba(75, 16, 32, .10);

  --maxw: 1180px;
  --radius: 14px;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--ivory { background: var(--ivory); }
.section--burgundy { background: var(--burgundy); color: #F3E6DC; }
.section--burgundy h2, .section--burgundy h3 { color: var(--light-gold); }
.section--burgundy .lead { color: rgba(245, 238, 228, .8); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Кнопки --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .2s ease;
}
.btn--primary { background: var(--burgundy); color: var(--ivory); }
.btn--primary:hover { background: var(--deep); color: #fff; transform: translateY(-1px); }
.btn--gold { background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--deep); }
.btn--gold:hover { filter: brightness(1.06); color: var(--deep); transform: translateY(-1px); }
.btn--ghost { border-color: var(--gold); color: var(--burgundy); background: transparent; }
.btn--ghost:hover { background: rgba(200, 155, 90, .12); color: var(--burgundy); }
.section--burgundy .btn--ghost, .hero .btn--ghost { color: var(--light-gold); }
.section--burgundy .btn--ghost:hover, .hero .btn--ghost:hover { color: #fff; background: rgba(225, 196, 143, .16); }

/* --- Шапка --- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg, .logo img { width: 46px; height: auto; display: block; }
.logo__text {
  font-family: var(--sans);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: .26em;
  color: var(--burgundy);
  text-transform: uppercase;
}
.logo__sub {
  display: block;
  font-size: .55rem; letter-spacing: .2em; font-weight: 500;
  color: var(--gold); margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink);
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { color: var(--burgundy); }
.header .btn { padding: 11px 22px; font-size: .88rem; }

.burger {
  display: none; width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; padding: 0;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; height: 1.6px; width: 20px; background: var(--burgundy);
  margin: 0 auto; position: relative; transition: .2s;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }

/* --- Hero --- */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(200, 155, 90, .22), transparent 60%),
    linear-gradient(160deg, var(--burgundy) 0%, var(--deep) 100%);
  color: #F5EEE4;
  padding: 92px 0 96px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--light-gold); }
.hero p { color: rgba(245, 238, 228, .82); font-size: 1.12rem; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__mark { display: flex; justify-content: center; }
.hero__mark svg { width: min(360px, 100%); filter: drop-shadow(0 10px 30px rgba(0,0,0,.35)); }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 64px; padding-top: 34px;
  border-top: 1px solid rgba(225, 196, 143, .25);
}
.stat__num { font-family: var(--serif); font-size: 2.1rem; color: var(--light-gold); line-height: 1; }
.stat__label { font-size: .84rem; color: rgba(245, 238, 228, .7); margin-top: 8px; }

/* --- Карточки --- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--light-gold); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card__icon {
  width: 52px; height: 52px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225,196,143,.35), rgba(200,155,90,.18));
  color: var(--burgundy);
}
.card__icon svg { width: 28px; height: 28px; }

/* --- Продукты --- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: .2s;
}
.filter:hover { border-color: var(--gold); color: var(--burgundy); }
.filter.is-active { background: var(--burgundy); border-color: var(--burgundy); color: var(--ivory); }

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: .25s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--light-gold); }
.product__visual {
  height: 176px;
  background:
    radial-gradient(420px 180px at 50% 120%, rgba(200,155,90,.22), transparent 70%),
    var(--ivory);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.product__visual svg { width: 108px; height: 108px; color: var(--burgundy); opacity: .9; }
.product__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--burgundy); color: var(--light-gold);
  font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
}
.product__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-family: var(--serif); font-size: 1.28rem; color: var(--burgundy); margin: 0 0 6px; }
.product__desc { color: var(--muted); font-size: .93rem; margin: 0 0 16px; }
.product__specs { list-style: none; margin: 0 0 20px; padding: 0; font-size: .86rem; color: var(--ink); }
.product__specs li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px dashed var(--line); }
.product__specs li span:first-child { color: var(--muted); }
.product__specs li span:last-child { font-weight: 600; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-size: .85rem; color: var(--muted); }
.product__foot .btn { padding: 10px 18px; font-size: .84rem; }

/* --- Списки преимуществ --- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  box-shadow: inset 0 0 0 4px var(--surface);
}
.section--burgundy .checklist li { color: rgba(245,238,228,.86); }
.section--burgundy .checklist li::before { box-shadow: inset 0 0 0 4px var(--burgundy); }

/* --- Слои сковороды --- */
.layers { display: grid; gap: 14px; }
.layer {
  display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 18px 22px;
}
.layer__n { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.layer strong { display: block; color: var(--burgundy); }
.layer span { color: var(--muted); font-size: .92rem; }

/* --- География --- */
.geo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.geo__item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(225,196,143,.28);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.geo__item h3 { font-size: 1.2rem; margin-bottom: .3em; }
.geo__item p { color: rgba(245,238,228,.75); font-size: .92rem; margin: 0; }

/* --- Таймлайн --- */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.timeline li { position: relative; padding: 0 0 28px 30px; }
.timeline li::before {
  content: ""; position: absolute; left: -6px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--bg);
}
.timeline b { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--burgundy); }
.timeline p { margin: 4px 0 0; color: var(--muted); font-size: .95rem; }

/* --- Аккордеон / гарантия --- */
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  cursor: pointer; list-style: none;
  padding: 20px 40px 20px 0; position: relative;
  font-family: var(--serif); font-size: 1.15rem; color: var(--burgundy);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-family: var(--sans); line-height: 1;
}
.accordion details[open] summary::after { content: "–"; }
.accordion .acc__body { padding: 0 0 22px; color: var(--muted); }
.accordion .acc__body p:last-child { margin-bottom: 0; }

.terms { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.terms th, .terms td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.terms th { background: var(--ivory); color: var(--burgundy); font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.terms tr:last-child td { border-bottom: none; }
.terms td:first-child { font-weight: 600; }

/* --- Форма --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--burgundy); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px;
  transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,90,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--muted); font-size: .8rem; }
.field.has-error input, .field.has-error textarea { border-color: #B3261E; }
.field .err { color: #B3261E; font-size: .8rem; display: none; }
.field.has-error .err { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--burgundy); }
.form-note { margin-top: 18px; padding: 14px 18px; border-radius: 10px; display: none; font-size: .93rem; }
.form-note.is-ok { display: block; background: #EAF5EC; color: #1E5B2B; border: 1px solid #BFE0C6; }
.form-note.is-err { display: block; background: #FDECEA; color: #8C1D18; border: 1px solid #F3C3BD; }

.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; }
.contact-list .k { display: block; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.contact-list .v { font-size: 1.05rem; color: var(--burgundy); font-weight: 600; }

/* --- CTA --- */
.cta {
  background: linear-gradient(140deg, var(--burgundy), var(--deep));
  border-radius: 20px; padding: 56px 48px; color: #F5EEE4;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.cta h2 { color: var(--light-gold); margin-bottom: .3em; }
.cta p { color: rgba(245,238,228,.8); margin: 0; max-width: 52ch; }

/* --- Подвал --- */
.footer { background: var(--deep); color: rgba(245,238,228,.72); padding: 60px 0 28px; font-size: .92rem; }
.footer a { color: rgba(245,238,228,.72); }
.footer a:hover { color: var(--light-gold); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: var(--light-gold); font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer .logo__text { color: var(--light-gold); }
.footer__bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(225,196,143,.2);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(245,238,228,.55);
}
.footer__tagline { font-family: var(--serif); font-size: 1.05rem; color: var(--light-gold); margin-top: 14px; }

/* --- Анимация появления --- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --- Адаптив --- */
@media (max-width: 1020px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .geo { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__mark { order: -1; }
  .hero__mark svg { width: 230px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .burger { display: block; }
  .header__inner { gap: 12px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 38px 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .terms, .terms tbody, .terms tr, .terms td { display: block; width: 100%; }
  .terms thead { display: none; }
  .terms tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .terms td { border: none; padding: 6px 18px; }
  .terms td::before { content: attr(data-th); display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
}
