/* ============================================
   HONEY ILYA — fine-art food photography
   В духе Aurore Honey × Le Labo × Maison du Miel
   ============================================ */

:root {
  /* Тёмная ось */
  --bg-deep: #0A0705;
  --bg-espresso: #14100A;
  --bg-card: #1A1410;
  --divider: #2A1E12;

  /* Холодный графит — для featured-блока */
  --bg-cold: #1C1E23;
  --bg-cold-soft: #24272D;
  --divider-cold: #34383F;

  /* Янтарные */
  --gold-dark: #C8852A;
  --gold-liquid: #E0A437;
  --gold-light: #F5C76A;
  --ochre-deep: #8B4E14;

  /* Сливочные */
  --cream: #F4ECD8;
  --cream-soft: #EADDBF;
  --paper: #EFE4CB;
  --text-dark: #1A120B;

  /* Акценты */
  --sealing-wax: #7A1F0F;

  /* Типографика — Prata + IBM Plex Sans + IBM Plex Mono */
  --font-serif: "Prata", "Cormorant Garamond", Georgia, serif;
  --font-sans: "IBM Plex Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
  background-color: var(--bg-deep);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Film grain ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* ---------- Общие плашки ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow--dark { color: var(--ochre-deep); }

/* ---------- CTA — прямоугольник + «ветер по мёду» ---------- */
/* Базовая кнопка: ghost — прозрачный фон, контур, субтильная рябь.
   .cta--solid — залитая золотом, такая же спокойная рябь. */

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border: 1px solid var(--gold-dark);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 500ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 700ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Тихая рябь — широкий мягкий свет-глиссандо по всей поверхности, очень медленно */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 30%,
    rgba(224, 164, 55, 0.0) 45%,
    rgba(224, 164, 55, 0.18) 50%,
    rgba(224, 164, 55, 0.0) 55%,
    transparent 70%,
    transparent 100%
  );
  background-size: 260% 100%;
  background-position: -80% 0;
  pointer-events: none;
  animation: cta-breeze 9s ease-in-out infinite;
}

/* Очень тонкий eye-line снизу (намёк на уровень мёда) */
.cta::after {
  content: "";
  position: absolute;
  left: 14%; right: 14%;
  bottom: 6px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(224, 164, 55, 0.35) 50%, transparent 100%);
  transform: scaleX(0.7);
  transform-origin: center;
  opacity: 0.45;
  pointer-events: none;
  animation: cta-eyeline 9s ease-in-out infinite;
}

@keyframes cta-breeze {
  0%   { background-position: -80% 0; }
  100% { background-position: 180% 0; }
}

@keyframes cta-eyeline {
  0%, 100% { transform: scaleX(0.7); opacity: 0.35; }
  50%      { transform: scaleX(1.0); opacity: 0.6; }
}

.cta:hover {
  color: var(--bg-deep);
  border-color: var(--gold-liquid);
  background-color: var(--gold-dark);
}

/* На hover рябь становится светлее и продолжает двигаться, но не ускоряется резко */
.cta:hover::before {
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 245, 215, 0.0) 45%,
    rgba(255, 245, 215, 0.35) 50%,
    rgba(255, 245, 215, 0.0) 55%,
    transparent 70%,
    transparent 100%
  );
}

.cta:hover::after {
  background: linear-gradient(90deg, transparent 0%, rgba(14,10,6,0.35) 50%, transparent 100%);
  opacity: 0.5;
}

/* ---- Solid — залитая золотом кнопка, спокойная рябь ---- */
.cta--solid {
  color: var(--bg-deep);
  border-color: var(--gold-dark);
  background-color: var(--gold-dark);
  background-image:
    linear-gradient(110deg, #B87625 0%, #C8852A 30%, #D3913A 50%, #C8852A 70%, #B87625 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 180, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  animation: cta-solid-drift 14s ease-in-out infinite;
  transition:
    box-shadow 700ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Очень медленный drift — ветер на мёде: фон едва дрейфует */
@keyframes cta-solid-drift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

.cta--solid::before {
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 245, 215, 0.0) 47%,
    rgba(255, 245, 215, 0.28) 50%,
    rgba(255, 245, 215, 0.0) 53%,
    transparent 65%,
    transparent 100%
  );
  background-size: 260% 100%;
  animation: cta-breeze 11s ease-in-out infinite;
}

.cta--solid::after {
  background: linear-gradient(90deg, transparent 0%, rgba(14,10,6,0.2) 50%, transparent 100%);
  opacity: 0.4;
}

.cta--solid:hover {
  background-color: var(--gold-liquid);
  border-color: var(--gold-liquid);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 14px 34px -12px rgba(224, 164, 55, 0.55);
  transform: translateY(-1px);
}

.cta--solid:hover::before {
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 250, 230, 0.0) 45%,
    rgba(255, 250, 230, 0.5) 50%,
    rgba(255, 250, 230, 0.0) 55%,
    transparent 70%,
    transparent 100%
  );
}

.cta__arrow {
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta__arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.cta:hover .cta__arrow { width: 30px; transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .cta, .cta::before, .cta::after, .cta--solid { animation: none; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(10,7,5,0.6) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--paper);
}
.nav__logo-sub {
  display: inline-block;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  text-transform: uppercase;
  vertical-align: middle;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav__link { position: relative; transition: color 200ms ease; }
.nav__link:hover { color: var(--gold-liquid); }
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold-liquid);
  transition: width 280ms ease;
}
.nav__link:hover::after { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--paper);
  padding: 84px 48px 48px;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,7,5,0.85) 0%, rgba(10,7,5,0.45) 45%, transparent 80%),
    linear-gradient(180deg, rgba(10,7,5,0.5) 0%, transparent 20%, transparent 75%, rgba(10,7,5,0.7) 100%);
  pointer-events: none;
}

.hero__meta {
  position: relative;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  align-self: start;
}
.hero__meta-divider {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold-dark);
  vertical-align: middle;
  margin: 0 12px;
}

.hero__text {
  position: relative;
  z-index: 3;
  max-width: 680px;
  align-self: center;
  padding: 32px 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(42px, 7.2vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 40px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-liquid);
  font-weight: 400;
}

.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.6;
  writing-mode: vertical-rl;
}

/* ---------- MANIFESTO (сливочная) ---------- */
.manifesto {
  position: relative;
  background: var(--cream);
  color: var(--text-dark);
  padding: 160px 48px;
  overflow: hidden;
}

.manifesto::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.15 0 0 0 0.3 0'/></filter><rect width='100%' height='100%' filter='url(%23p)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.manifesto__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: center;
}

.manifesto__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-espresso);
}
.manifesto__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.manifesto__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.02;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.manifesto__title em {
  font-style: italic;
  color: var(--ochre-deep);
}

.manifesto__text p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 540px;
}

.manifesto__quote {
  font-style: italic;
  color: var(--ochre-deep) !important;
  font-size: 22px !important;
  border-left: 1px solid var(--ochre-deep);
  padding-left: 24px;
  margin-top: 32px !important;
}

.manifesto__sig {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ochre-deep);
  text-transform: uppercase;
}

/* ---------- CATALOG ---------- */
.catalog {
  padding: 160px 48px 140px;
  background: var(--bg-deep);
}

.catalog__header {
  max-width: 1320px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}

.catalog__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 0.95;
  color: var(--paper);
  margin-top: 0;
}
.catalog__title em {
  font-style: italic;
  color: var(--gold-liquid);
}

.catalog__filters {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  flex-wrap: wrap;
}
.catalog__filter {
  opacity: 0.5;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: all 280ms ease;
}
.catalog__filter.is-active,
.catalog__filter:hover {
  opacity: 1;
  border-bottom-color: var(--gold-dark);
  color: var(--gold-light);
}

.catalog__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg-deep);
  border: 1px solid var(--divider);
}

.card {
  position: relative;
  background: var(--bg-deep);
  padding: 28px 28px 32px;
  transition: all 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  outline: 1px solid var(--divider);
  outline-offset: -1px;
}
.card:hover {
  background: var(--bg-espresso);
  outline-color: var(--gold-dark);
}

.card__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  margin-bottom: 28px;
  overflow: hidden;
}
.card__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card__visual img { transform: scale(1.04); }

.card__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.card__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.0;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card__region {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0.82;
}

.card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
}

.card__price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--paper);
}
.card__price small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-left: 6px;
}

.card__stock {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.6;
}
.card__stock.low {
  color: var(--sealing-wax);
  opacity: 0.95;
}
.card__stock.low::before {
  content: "● ";
  color: var(--sealing-wax);
}

/* ---------- FEATURED / PDP teaser ---------- */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--bg-cold);
  color: var(--paper);
}

.featured__visual {
  position: relative;
  overflow: hidden;
  background: #000;
}
.featured__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured__text {
  padding: 140px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.featured__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 20px;
}
.featured__title em {
  font-style: italic;
  color: var(--gold-liquid);
}

.featured__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 48px;
  opacity: 0.85;
}

.featured__passport {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper);
  padding: 28px 0;
  border-top: 1px solid var(--divider-cold);
  border-bottom: 1px solid var(--divider-cold);
  margin-bottom: 36px;
}
.passport__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.passport__row span:first-child {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
}
.passport__row span:last-child {
  color: var(--paper);
}

.featured__notes {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.82;
  margin-bottom: 40px;
}
.featured__notes strong {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* ---------- STEPS — светлый разделитель ---------- */
.steps {
  position: relative;
  background: var(--cream);
  color: var(--text-dark);
  padding: 160px 48px;
  overflow: hidden;
}

.steps::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='p2'><feTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.15 0 0 0 0.25 0'/></filter><rect width='100%' height='100%' filter='url(%23p2)'/></svg>");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.steps__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.steps__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 96px;
  letter-spacing: -0.01em;
}
.steps__title em {
  color: var(--ochre-deep);
  font-style: italic;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.step {
  border-top: 1px solid rgba(139, 78, 20, 0.3);
  padding-top: 28px;
}

.step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ochre-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.step__desc {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dark);
  opacity: 0.82;
  margin-bottom: 28px;
}

.step__month {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ochre-deep);
  text-transform: uppercase;
}

/* ---------- PROCESS ---------- */
.process {
  position: relative;
  min-height: 90vh;
  padding: 180px 48px;
  background: var(--bg-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.process__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7) saturate(0.9);
}
.process__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,7,5,0.75) 0%, rgba(10,7,5,0.35) 100%);
  z-index: 1;
}

.process__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.process__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.18;
  color: var(--paper);
  margin-bottom: 48px;
  max-width: 900px;
}
.process__quote em {
  color: var(--gold-liquid);
  font-style: italic;
}

.process__sig {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 160px 48px;
  background: var(--bg-deep);
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 84px);
  color: var(--paper);
  margin-bottom: 72px;
  line-height: 1;
}
.faq__title em {
  font-style: italic;
  color: var(--gold-liquid);
}

.faq__item {
  border-bottom: 1px solid var(--divider);
  padding: 32px 0;
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--paper);
  width: 100%;
  text-align: left;
  padding: 0;
  transition: color 280ms ease;
}
.faq__q:hover { color: var(--gold-liquid); }

.faq__q-plus {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gold-dark);
  transition: transform 380ms ease;
}
.faq__item.is-open .faq__q-plus { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms ease, padding 480ms ease;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.82;
  max-width: 720px;
}
.faq__item.is-open .faq__a {
  max-height: 400px;
  padding-top: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-espresso);
  border-top: 1px solid var(--divider);
  padding: 80px 48px 40px;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--divider);
}

.footer__logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 20px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  opacity: 0.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
}

.footer__list a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--paper);
  opacity: 0.7;
  transition: all 280ms ease;
}
.footer__list a:hover {
  opacity: 1;
  color: var(--gold-liquid);
}

.footer__contact-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper);
  margin-bottom: 10px;
  opacity: 0.82;
}

.footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--paper);
  opacity: 0.4;
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav { padding: 12px 24px; }
  .nav__links { gap: 24px; font-size: 11px; }

  .hero { padding: 80px 28px 40px; }
  .hero__inner { min-height: calc(100vh - 120px); }
  .hero__text { max-width: 100%; padding: 20px 0; }
  .hero__scroll { display: none; }

  .manifesto { padding: 100px 28px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto__portrait { aspect-ratio: 4 / 5; max-width: 520px; }

  .catalog { padding: 100px 28px; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .featured { grid-template-columns: 1fr; min-height: 0; }
  .featured__visual { aspect-ratio: 4 / 3; }
  .featured__text { padding: 80px 28px; max-width: 100%; }

  .process { padding: 120px 28px; min-height: 70vh; }

  .steps { padding: 100px 28px; }
  .steps__title { margin-bottom: 60px; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .faq { padding: 100px 28px; }

  .footer { padding: 60px 28px 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .catalog__grid { grid-template-columns: 1fr; }
  .catalog__header { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .card__name { font-size: 32px; }
  .featured__text { padding: 60px 24px; }
  .steps__grid { grid-template-columns: 1fr; }

  /* ---- Hero — мобильный layout: фото сверху, текст ниже, кнопка прибита к низу экрана ---- */
  .hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .hero__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 52vh;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    z-index: 1;
  }
  .hero__vignette { display: none; }
  .hero__inner {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 28px 24px 32px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
    background: var(--bg-deep);
  }
  .hero__meta {
    order: 1;
    margin-bottom: 16px;
  }
  .hero__text {
    order: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 100%;
    align-self: stretch;
  }
  .hero__eyebrow {
    margin-bottom: 12px;
  }
  .hero__title {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.02;
    margin-bottom: 20px;
  }
  .hero .cta {
    margin-top: auto;
    align-self: flex-start;
    padding: 18px 32px;
  }
  .hero__scroll { display: none; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
