/* ============ TOKENS ============ */
:root {
  --olive-dark:   #44432f;
  --olive:        #5c5a40;
  --olive-light:  #6b6a4f;
  --cream:        #ece7df;
  --cream-2:      #f3efe8;
  --ink:          #1a1814;
  --paper:        #fffdf9;
  --honey:        #c79a3f;
  --honey-soft:   #d9b86a;
  --text-dark:    #2a271f;
  --text-mute:    #7c7361;
  --text-light:   #e8e3d6;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.btn--light  { background: var(--cream); color: var(--ink); }
.btn--light:hover  { background: #fff; }
.btn--ghost  { background: transparent; color: var(--text-light); border-color: rgba(232,227,214,.5); }
.btn--ghost:hover  { border-color: var(--honey-soft); color: var(--honey-soft); }
.btn--dark   { background: var(--ink); color: var(--text-light); }
.btn--dark:hover   { background: var(--honey); color: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("/img/hero-bcg.jpg") no-repeat center / cover;
    /*linear-gradient(115deg, rgba(40,40,28,.94) 0%, rgba(40,40,28,.55) 55%, rgba(40,40,28,.15) 100%),*/
    /*radial-gradient(circle at 78% 42%, rgba(199,154,63,.35), transparent 45%),*/
    /*linear-gradient(160deg, #3b3a2a 0%, #2a2a1d 100%);*/
  color: var(--text-light);
  overflow: hidden;
}

/* nav */
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 2.2rem 1.5rem;
}
.nav__list {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav__list a {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: .85;
  transition: color .25s, opacity .25s;
}
.nav__list a:hover { color: var(--honey-soft); opacity: 1; }

/* hero glowing candle on the right */
.hero__media {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(ellipse 30% 22% at 50% 46%, rgba(255,214,140,.9), rgba(255,180,80,.25) 40%, transparent 70%),
    radial-gradient(circle at 50% 30%, rgba(255,230,170,.5), transparent 30%);
  pointer-events: none;
}
.hero__media::before {
  /* candle flame */
  content: "";
  position: absolute;
  top: 38%; left: 50%;
  width: 26px; height: 70px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 70%, #fff7e0 0%, #ffd166 45%, #ff9e3d 75%, transparent 100%);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  filter: blur(2px);
  animation: flame 2.8s ease-in-out infinite alternate;
}
.hero__media::after {
  /* candle body */
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 90px; height: 230px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #e8c878 0%, #cba14a 50%, #a87f33 100%);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 0 60px rgba(255,190,90,.35), inset -14px 0 24px rgba(120,86,30,.45), inset 14px 0 20px rgba(255,225,160,.35);
}
@keyframes flame {
  from { transform: translateX(-50%) scaleY(1)    rotate(-1.5deg); opacity: .92; }
  to   { transform: translateX(-50%) scaleY(1.12) rotate(1.5deg);  opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4vh 2.5rem 6rem;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 90px);
  text-transform: capitalize;
}
.hero__content { max-width: 740px; }
.hero__eyebrow {
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 1.4rem;
}
.hero__brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 8.5rem);
  letter-spacing: .12em;
  line-height: .95;
}
.hero__tagline {
  font-size: .9rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  margin: 1.2rem 0 1.8rem;
  color: var(--honey-soft);
}
.hero__text {
  font-size: 1rem;
  font-weight: 300;
  max-width: 420px;
  opacity: .9;
  margin-bottom: 2.6rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ ABOUT ============ */
.about {
  position: relative;
  background: var(--cream);
  padding: 6rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.about__symbol {
  position: absolute;
  top: 18%;
  font-family: var(--serif);
  font-size: 16rem;
  color: rgba(120,110,80,.07);
  user-select: none;
  line-height: 1;
}
.about__symbol--left  { left: 3%; }
.about__symbol--right { right: 3%; }

.section__mark {
  color: var(--honey);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.about__lead {
  position: relative;
  max-width: 1240px;
  margin: 2.2rem auto 0;
}
.about__lead p {
  color: var(--text-mute);
  font-size: 20px;
  margin-bottom: 1rem;
}

.features {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem;
  margin-top: 4rem;
}
.feature {
  max-width: 170px;
  position: relative;
}
.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.75rem; top: 10%;
  width: 1px; height: 80%;
  background: rgba(120,110,80,.2);
}
.feature__icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--honey);
}
.feature__title {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.feature__sub {
  font-size: .76rem;
  color: var(--text-mute);
}

/* ============ MASTER ============ */
.master {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}
.master__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,210,130,.5), transparent 45%),
    linear-gradient(160deg, #6a5836 0%, #3a3022 60%, #241d14 100%);
  box-shadow: 30px 30px 0 -10px var(--cream), 0 30px 60px rgba(0,0,0,.25);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.master__seal {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: .2em;
  color: var(--text-light);
  background: rgba(20,18,14,.6);
  padding: .6rem .9rem;
  margin: 1.4rem;
  border: 1px solid rgba(217,184,106,.4);
}
.master__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}
.master__rule {
  display: block;
  width: 60px; height: 2px;
  background: var(--honey);
  margin: 1.4rem auto 2rem;
}
.master__intro {
  color: var(--text-mute);
  margin-bottom: 1.8rem;
  font-size: 1.02rem;
}
.master__list { margin-bottom: 2.2rem; }
.master__list li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(120,110,80,.14);
  font-size: .92rem;
}
.master__dot { color: var(--honey); width: 1.4rem; text-align: center; }

/* ============ COLLECTIONS ============ */
.collections {
  position: relative;
  /*background: var(--olive);*/
  background: var(--olive);
  color: var(--text-light);
  padding: 6rem 2rem 7rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  --parallax-strength: 220px; /* ход фона в каждую сторону; JS читает это значение */
  --parallax-shift: 0px;
}
/* фоновый слой параллакса: выше секции на 2 * strength, смещается при скролле */
.collections::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--parallax-strength));
  height: calc(100% + 2 * var(--parallax-strength));
  z-index: -1;
  background: url('/img/paralax.png') no-repeat center / cover;
  transform: translate3d(0, var(--parallax-shift), 0);
  will-change: transform;
}
/* контент поверх фонового слоя */
.collections > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .collections::before { transform: none; }
}
.collections .card{
  padding: 0;
  flex-direction: column;
}
.collections .card .card__body{
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, rgba(20,16,10,.1) 0%, rgba(20,16,10,.85) 100%) !important;
  height: 100%;
}
.collections__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.collections__subtitle {
  color: var(--honey-soft);
  font-size: .9rem;
  letter-spacing: .12em;
  margin: 1.2rem 0 3.5rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1180px;
  margin: 0 auto;
}
.card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  text-align: left;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  transition: transform .35s ease;
}
.collections .card .card__body::before {
  /*content: "";*/
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,.1) 0%, rgba(20,16,10,.85) 100%);
}
.card:hover { transform: translateY(-8px); }
/*.card--1 { background-image: radial-gradient(circle at 50% 35%, rgba(255,200,110,.45), transparent 50%), linear-gradient(160deg,#6b5836,#2c2418); }*/
/*.card--2 { background-image: radial-gradient(circle at 50% 35%, rgba(255,200,110,.40), transparent 50%), linear-gradient(160deg,#5d4f33,#241d12); }*/
/*.card--3 { background-image: radial-gradient(circle at 50% 35%, rgba(255,200,110,.45), transparent 50%), linear-gradient(160deg,#735f3a,#2c2316); }*/
/*.card--4 { background-image: radial-gradient(circle at 50% 35%, rgba(255,200,110,.40), transparent 50%), linear-gradient(160deg,#564a30,#1f1910); }*/
.card__body { position: relative; z-index: 1; }
.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.card__text { font-size: .82rem; opacity: .85; }
.collections__mark { color: var(--honey-soft); margin-top: 3.2rem; font-size: 1.1rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--text-light);
  padding: 4.5rem 2.5rem 2rem;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: .12em;
}
.footer__tag { color: var(--text-mute); font-size: .85rem; margin-top: .6rem; }
.footer__nav { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a, .footer__contacts a, .footer__contacts p {
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--text-light);
  opacity: .8;
  transition: color .25s;
}
.footer__nav a:hover, .footer__contacts a:hover { color: var(--honey-soft); opacity: 1; }
.footer__contacts { display: flex; flex-direction: column; gap: .7rem; }
.footer__copy {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero__media { width: 100%; opacity: .45; }
  .hero__inner { min-height: calc(100vh - 80px); }
  .master { grid-template-columns: 1fr; gap: 3rem; }
  .master__photo { max-width: 420px; margin: 0 auto; box-shadow: 20px 20px 0 -8px var(--cream), 0 20px 40px rgba(0,0,0,.25); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .nav__list { gap: 1.1rem; }
  .nav__list a { font-size: .6rem; }
  .features { gap: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
}

/* =====================================================================
   INNER PAGES
   ===================================================================== */

/* ---------- TOPBAR (inner pages) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2.5rem;
  background: rgba(26,24,20,.97);
  color: var(--text-light);
  border-bottom: 1px solid rgba(217,184,106,.18);
}
.topbar__logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: .1em;
}
.topbar__nav {
  display: flex;
  gap: 1.9rem;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar__nav a {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .82;
  transition: color .25s, opacity .25s;
}
.topbar__nav a:hover,
.topbar__nav a[aria-current="page"] { color: var(--honey-soft); opacity: 1; }
.topbar__cart {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar__cart:hover { color: var(--honey-soft); }
.topbar__badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--honey);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 500;
}

/* ---------- PAGE HEAD ---------- */
.pagehead {
  background:
    radial-gradient(circle at 80% 30%, rgba(199,154,63,.28), transparent 55%),
    linear-gradient(150deg, #3b3a2a 0%, #2a2a1d 100%);
  color: var(--text-light);
  padding: 4rem 2.5rem 3.4rem;
  text-align: center;
}
.pagehead__crumbs {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 1rem;
}
.pagehead__crumbs a:hover { color: var(--honey-soft); }
.pagehead__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pagehead__lead {
  max-width: 560px;
  margin: 1.2rem auto 0;
  font-size: .98rem;
  opacity: .85;
}

/* ---------- WRAP ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 4.5rem 2.5rem; }
.wrap--narrow { max-width: 820px; }

/* ---------- CATALOG ---------- */
.catalog__bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.chip {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  border: 1px solid rgba(120,110,80,.3);
  border-radius: 999px;
  color: var(--text-mute);
  cursor: pointer;
  transition: all .25s;
}
.chip:hover, .chip--active { background: var(--ink); color: var(--text-light); border-color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.6rem;
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition: transform .3s ease;
}
.product:hover { transform: translateY(-6px); }
.product__thumb {
  /*aspect-ratio: 3 / 4;*/
  background:
    radial-gradient(circle at 50% 38%, rgba(255,205,120,.5), transparent 52%),
    linear-gradient(160deg, #6b5836, #2c2418);
  position: relative;
  overflow: hidden;
  display: block;
}
.product__thumb--2 { background: radial-gradient(circle at 50% 40%, rgba(255,205,120,.45), transparent 52%), linear-gradient(160deg,#5d4f33,#241d12); }
.product__thumb--3 { background: radial-gradient(circle at 50% 36%, rgba(255,205,120,.5), transparent 52%), linear-gradient(160deg,#735f3a,#2c2316); }
.product__thumb--4 { background: radial-gradient(circle at 50% 40%, rgba(255,205,120,.45), transparent 52%), linear-gradient(160deg,#564a30,#1f1910); }
.product__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--honey);
  color: var(--ink);
  padding: .3rem .7rem;
}
.product__info { padding: 1.1rem .2rem 0; flex: 1; display: flex; flex-direction: column; }
.product__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .3rem;
}
.product__desc { font-size: .8rem; color: var(--text-mute); margin-bottom: 1rem; }
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product__price { font-size: 1.15rem; letter-spacing: .04em; }
.product__price span { font-size: .8rem; color: var(--text-mute); }

.btn--sm { padding: .7rem 1.2rem; font-size: .64rem; }

/* ---------- PRODUCT DETAIL ---------- */
.pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
.pd__gallery { display: flex; flex-direction: column; gap: 1rem; }
.pd__main {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,210,130,.55), transparent 52%),
    linear-gradient(160deg, #6b5836, #2c2418);
  box-shadow: 0 25px 55px rgba(0,0,0,.22);
}
.pd__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.pd__thumb {
  aspect-ratio: 1;
  background: linear-gradient(160deg,#5d4f33,#241d12);
  cursor: pointer;
  opacity: .7;
  transition: opacity .25s;
}
.pd__thumb:hover { opacity: 1; }
.pd__cat {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.pd__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.pd__price { font-size: 1.8rem; margin-bottom: 1.6rem; }
.pd__desc { color: var(--text-mute); margin-bottom: 1.8rem; }
.pd__props { margin-bottom: 2rem; }
.pd__props li {
  display: flex;
  justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(120,110,80,.16);
  font-size: .9rem;
}
.pd__props span:first-child { color: var(--text-mute); }
.pd__buy { display: flex; gap: 1rem; align-items: stretch; flex-wrap: wrap; }

/* quantity stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(120,110,80,.35); }
.qty button {
  width: 2.8rem; height: 100%;
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer;
  color: var(--text-dark);
}
.qty button:hover { background: var(--cream); }
.qty input {
  width: 3rem; text-align: center;
  border: none; font-family: var(--sans); font-size: 1rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- PROSE (delivery / payment / partnership) ---------- */
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: .04em;
  margin: 2.6rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-mute); font-size: 1rem; margin-bottom: .9rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--honey); font-size: .8rem; top: .2rem; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin: 2.5rem 0;
}
.tile {
  padding: 2rem 1.6rem;
  background: var(--cream-2);
  border: 1px solid rgba(120,110,80,.14);
}
.tile__icon { font-size: 1.8rem; color: var(--honey); margin-bottom: .8rem; }
.tile__title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .5rem; }
.tile__text { font-size: .86rem; color: var(--text-mute); }

/* ---------- FORMS ---------- */
.form { display: grid; gap: 1.2rem; }
.form--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: .95rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(120,110,80,.3);
  background: var(--paper);
  color: var(--text-dark);
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--honey);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- CONTACTS ---------- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.contacts-info { display: grid; gap: 1.6rem; }
.contacts-info__item h3 {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .4rem;
}
.contacts-info__item p, .contacts-info__item a { font-size: 1.1rem; font-family: var(--serif); }
.contacts-info__item a:hover { color: var(--honey); }
.map {
  margin-top: 3rem;
  aspect-ratio: 21 / 9;
  background:
    repeating-linear-gradient(45deg, rgba(120,110,80,.05) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #ddd6c8, #cfc6b3);
  display: grid;
  place-items: center;
  color: var(--text-mute);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .75rem;
}

/* ---------- CART ---------- */
.cart { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.cart__list { display: grid; gap: 1.2rem; }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(120,110,80,.16);
}
.cart-item__img {
  aspect-ratio: 3/4;
  background: radial-gradient(circle at 50% 40%, rgba(255,205,120,.5), transparent 55%), linear-gradient(160deg,#6b5836,#2c2418);
}
.cart-item__name { font-family: var(--serif); font-size: 1.25rem; }
.cart-item__meta { font-size: .78rem; color: var(--text-mute); margin-top: .2rem; }
.cart-item__right { display: flex; align-items: center; gap: 1.4rem; }
.cart-item__price { font-size: 1.05rem; min-width: 5.5rem; text-align: right; }
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-mute); font-size: 1.2rem; line-height: 1;
  transition: color .2s;
}
.cart-item__remove:hover { color: #a3452f; }

.summary {
  background: var(--cream-2);
  border: 1px solid rgba(120,110,80,.16);
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.summary__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--text-mute);
}
.summary__row--total {
  border-top: 1px solid rgba(120,110,80,.22);
  margin-top: .6rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}
.summary .btn { width: 100%; text-align: center; margin-top: 1.4rem; }
.cart-empty { text-align: center; color: var(--text-mute); padding: 3rem 0; }

/* ---------- RESPONSIVE (inner) ---------- */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .pd { grid-template-columns: 1fr; }
  .cart { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .topbar { flex-wrap: wrap; padding: .9rem 1.2rem; }
  .topbar__nav { order: 3; width: 100%; gap: 1rem; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .form--2 { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .wrap { padding: 3rem 1.3rem; }
}
@media (max-width: 460px) {
  .grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item__right { grid-column: 1 / -1; justify-content: space-between; }
}

/* =====================================================================
   HOME — доп. блоки (слайдер, лид, отзывы, мероприятия, FAQ)
   ===================================================================== */

/* ---------- 4. SLIDER (Swiper) ---------- */
.slider { max-width: 1180px; margin: 0 auto; padding: 5.5rem 2.5rem; }
.slider__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}
.slider__head .section__title { text-align: left; }
.slider__head .section__mark { margin-bottom: .6rem; }
.slider__all {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
  transition: color .25s;
}
.slider__all:hover { color: var(--honey); }

.products-swiper { padding: .5rem .3rem 3.5rem; }
.products-swiper .product { height: 100%; }
.products-swiper .swiper-pagination { bottom: 0; }
.products-swiper .swiper-pagination-bullet { background: var(--text-mute); }
.products-swiper .swiper-pagination-bullet-active { background: var(--honey); }
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  color: var(--ink);
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 50%;
  transition: background .25s, color .25s;
}
.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover { background: var(--honey); color: #fff; }
.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }

/* ---------- 6. LEAD FORM ---------- */
.lead {
  background:
    radial-gradient(circle at 15% 40%, rgba(199,154,63,.30), transparent 55%),
    linear-gradient(150deg, #3b3a2a 0%, #2a2a1d 100%);
  color: var(--text-light);
}
.lead__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.lead__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.lead__text p { opacity: .85; max-width: 420px; }
.lead__form { display: grid; gap: 1.1rem; }
.lead__form .field label { color: var(--text-light); opacity: .7; }
.lead__form .field input {
  background: rgba(255,255,255,.06);
  border-color: rgba(232,227,214,.25);
  color: var(--text-light);
}
.lead__form .field input::placeholder { color: rgba(232,227,214,.45); }
.lead__form .field input:focus { border-color: var(--honey-soft); }
.lead__consent {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: .7;
}
.lead__consent input { accent-color: var(--honey); }

/* ---------- 7. REVIEWS ---------- */
.reviews {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}
.reviews__subtitle { color: var(--text-mute); margin: 1rem 0 3.2rem; letter-spacing: .04em; }
.reviews__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review {
  background: var(--paper);
  padding: 2.2rem 1.9rem;
  text-align: left;
  border: 1px solid rgba(120,110,80,.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review__stars { color: var(--honey); letter-spacing: .15em; font-size: .95rem; }
.review blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-dark);
}
.review figcaption { font-size: .82rem; color: var(--text-mute); margin-top: auto; }
.review figcaption span { color: var(--text-dark); font-weight: 500; }

/* ---------- 8. EVENTS ---------- */
.events { background: var(--paper); }
.events__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
}
.events__subtitle { color: var(--text-mute); margin: 1rem 0 3rem; letter-spacing: .04em; }
.events__list { display: grid; gap: 1.1rem; text-align: left; }
.event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 1.5rem 1.8rem;
  background: var(--cream-2);
  border: 1px solid rgba(120,110,80,.14);
  transition: transform .25s, border-color .25s;
}
.event:hover { transform: translateX(4px); border-color: var(--honey-soft); }
.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: var(--ink);
  color: var(--text-light);
  border-radius: 4px;
}
.event__day { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.event__mon { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; margin-top: .2rem; }
.event__title { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .3rem; }
.event__meta { font-size: .78rem; color: var(--honey); letter-spacing: .04em; margin-bottom: .3rem; }
.event__text { font-size: .84rem; color: var(--text-mute); }

/* ---------- 9. FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2.5rem 7rem;
  text-align: center;
}
.faq__list { margin-top: 3rem; text-align: left; }
.faq__item {
  border-bottom: 1px solid rgba(120,110,80,.2);
  padding: .4rem 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem .5rem 1.3rem 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--honey);
  font-size: 1.5rem;
  font-family: var(--sans);
  transition: transform .25s;
}
.faq__item[open] summary { color: var(--honey); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 2rem 1.4rem .2rem;
  color: var(--text-mute);
  font-size: .98rem;
}

/* ---------- RESPONSIVE (home extra) ---------- */
@media (max-width: 900px) {
  .lead__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .slider__head { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .event { grid-template-columns: auto 1fr; }
  .event .btn { grid-column: 2; justify-self: start; }
}
