/* ============================================================
   СИМВОЛЪ — православный ювелирный дом
   Ivory site · indigo bands · gold accents · straight corners
   ============================================================ */

@import url('fonts.css?v=1');

/* ---------- Tokens ---------- */
:root {
  --gold: #A8792A;
  --gold-light: #C09449;
  --gold-dim: rgba(168, 121, 42, .35);
  --ivory: #F5F0E6;
  --ivory-deep: #ECE5D4;
  --indigo: #1E2A4A;
  --indigo-deep: #161F38;
  --garnet: #6B1622;
  --anthracite: #2B2B2B;
  --plate: #101520;
  --text: var(--anthracite);
  --text-soft: #6B6355;
  --text-on-dark: #F5F0E6;
  --text-on-dark-soft: rgba(245, 240, 230, .72);
  --line: #DCD3BF;
  --line-on-dark: rgba(245, 240, 230, .16);
  --container: 1280px;
  --header-h: 72px;
  --radius: 0;
  --transition: .3s ease;
  --font-display: 'Oranienbaum', 'Old Standard TT', Georgia, serif;
  --font-body: 'Literata', 'PT Serif', Georgia, serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold-dim); }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Shared type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.prose { max-width: 68ch; }
.prose p { font-size: 17px; line-height: 1.75; }
.prose p + p { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.4;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { background: var(--gold); color: var(--ivory); }

.btn--on-dark { color: var(--text-on-dark); }
.btn--on-dark:hover { background: var(--gold); color: var(--indigo-deep); }

.text-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color var(--transition);
}
.text-link:hover { border-color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--indigo);
  z-index: 100;
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: 0 4px 20px rgba(10, 14, 26, .35); }

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header__nav { display: flex; gap: 26px; align-items: center; grid-row: 1; }
.header__nav--left { grid-column: 1; justify-content: flex-start; }
.header__nav--right { grid-column: 3; justify-content: flex-end; }

.nav-link {
  position: relative;
  padding: 6px 0;
  color: var(--text-on-dark);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.header__logo { grid-column: 2; grid-row: 1; display: block; padding: 0 18px; }
.header__logo img { height: 44px; width: auto; }

/* Hamburger */
.hamburger {
  display: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex-direction: column;
  gap: 6px;
  padding: 10px 2px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); right: 0; bottom: 0; left: 0;
  background: var(--indigo-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 44px 32px 60px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
}
.mobile-menu.active { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--text-on-dark);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu__label {
  padding-bottom: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.mobile-menu__label + .mobile-menu__label { margin-top: 36px; }

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--deep { background: var(--ivory-deep); }
.section--indigo { background: var(--indigo); color: var(--text-on-dark); }

.section__head { text-align: center; margin-bottom: 56px; }
.section__title { font-size: clamp(30px, 4vw, 44px); }
.section__head .eyebrow { color: var(--text-soft); margin-bottom: 14px; }
.section--indigo .section__head .eyebrow { color: var(--gold-light); }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
}

/* Ornament marks (inline SVG, currentColor) */
.ornament-mark {
  display: block;
  width: 44px;
  height: auto;
  margin: 0 auto 20px;
  color: var(--gold);
  opacity: .4;
}

.loza-divider {
  display: flex;
  justify-content: center;
  padding: 10px 24px;
  color: var(--gold);
  opacity: .4;
}
.loza-divider svg { width: 220px; max-width: 60vw; height: auto; }

/* ---------- Hero (index) ---------- */
.hero {
  position: relative;
  min-height: calc(85vh - var(--header-h));
  background: var(--indigo);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__ornament {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%);
  width: min(540px, 85vw);
  height: auto;
  color: var(--gold);
  opacity: .06;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 90px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow { color: var(--gold-light); }
.hero h1 {
  margin-top: 26px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.08;
  max-width: 14ch;
}
.hero__cta { margin-top: 44px; }

/* ---------- Index: philosophy teaser ---------- */
.philosophy-teaser { text-align: center; }
.philosophy-teaser .prose { margin: 0 auto; }
.philosophy-teaser .prose p { font-size: 18px; }
.philosophy-teaser .text-link { margin-top: 34px; }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  opacity: 1;
}
@media (max-width: 1280px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }

.product-card { display: block; }
.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--plate);
  overflow: hidden;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color var(--transition);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.product-card:hover .product-card__image { outline-color: var(--gold); }
.product-card:hover .product-card__image img { transform: scale(1.02); }

.product-card__category {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.product-card__name {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) { .product-card__name { font-size: 20px; } }
.product-card__materials {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-soft);
}
.product-card__variants {
  margin-top: 6px;
  font-size: 12px;
  color: var(--gold);
}

/* ---------- Index: category tiles ---------- */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .category-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .category-tiles { gap: 16px; } }

.category-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--plate);
  overflow: hidden;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color var(--transition);
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12% 12% 20%;
  opacity: .92;
  transition: transform var(--transition);
}
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 21, 32, .88), rgba(16, 21, 32, 0) 52%);
}
.category-tile__name {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-on-dark);
}
.category-tile:hover { outline-color: var(--gold); }
.category-tile:hover img { transform: scale(1.02); }

/* ---------- Mission band ---------- */
.mission .container { max-width: calc(68ch + 48px); text-align: center; }
.mission__statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
}
.mission__body {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-on-dark-soft);
  text-align: left;
}
.mission__body + .mission__body { margin-top: 22px; }

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; gap: 44px; } }

.principle__num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.principle h3 { margin: 16px 0 10px; font-size: 22px; }
.principle p { font-size: 15px; color: var(--text-soft); max-width: 40ch; }

/* ---------- Flagship split ---------- */
.flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .flagship { grid-template-columns: 1fr; gap: 40px; } }

.flagship__image {
  background: var(--plate);
  aspect-ratio: 4 / 3;
}
.flagship__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9%;
}
.flagship__text .eyebrow { color: var(--text-soft); }
.flagship__text h2 { margin-top: 14px; font-size: clamp(28px, 3.4vw, 40px); }
.flagship__line {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
}
.flagship__text p { margin-top: 16px; font-size: 16px; color: var(--text-soft); max-width: 46ch; }
.flagship__cta { margin-top: 32px; }

/* ---------- Page banner (catalog) ---------- */
.page-banner {
  background: var(--indigo);
  color: var(--text-on-dark);
  text-align: center;
  padding: 76px 24px 68px;
}
.page-banner h1 { font-size: clamp(34px, 5vw, 54px); }
.page-banner__subtitle {
  margin: 14px auto 0;
  max-width: 52ch;
  font-size: 15px;
  color: var(--text-on-dark-soft);
}

/* ---------- Catalog filter ---------- */
.catalog-section { padding: 56px 0 96px; }
@media (max-width: 640px) { .catalog-section { padding: 40px 0 64px; } }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 28px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text-soft);
}
.breadcrumbs a { transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 9px; color: var(--line); }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  padding: 36px 0 80px;
}
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; } }

.product-detail__image {
  background: var(--plate);
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color var(--transition);
}
.product-detail__image:hover { outline-color: var(--gold-dim); }
.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.product-detail__thumb {
  width: 72px;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: none;
  background: var(--plate);
  cursor: pointer;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color var(--transition);
}
.product-detail__thumb:hover { outline-color: var(--gold-dim); }
.product-detail__thumb.active { outline-color: var(--gold); }
.product-detail__thumb:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__category {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.product-detail__info h1 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3.6vw, 42px);
}
.product-detail__materials { font-size: 14px; color: var(--text-soft); }

.variant-picker { margin-top: 28px; }
.variant-picker__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.variant-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.variant-chip:hover,
.variant-chip.active { border-color: var(--gold); color: var(--gold); }

.scripture {
  margin-top: 30px;
  padding: 6px 0 6px 20px;
  border-left: 2px solid var(--gold);
}
.scripture p {
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
}
.scripture__source {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.engraving-note { margin-top: 20px; font-size: 14px; color: var(--text-soft); }

.product-structured {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
  font-size: 14px;
}
.product-structured__row { display: flex; gap: 14px; align-items: baseline; }
.product-structured__key {
  flex: 0 0 96px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.product-detail__price {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 21px;
}
.product-detail__cta { margin-top: 18px; }

.product-notfound { text-align: center; padding: 120px 24px 140px; }
.product-notfound h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.product-notfound p { color: var(--text-soft); margin-bottom: 30px; }

/* Meaning / specs sections */
.meaning-section { padding: 72px 0; }
.meaning-section .section__head { margin-bottom: 40px; }
.meaning-section .prose { margin: 0 auto; }

.specs-section { padding: 0 0 88px; }
.specs {
  max-width: 68ch;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}
.specs__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.specs__row dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-top: 3px;
}
@media (max-width: 600px) { .specs__row { grid-template-columns: 1fr; gap: 4px; } }

.related-section { padding: 0 0 96px; }
.related-section .section__head { margin-bottom: 44px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 21, 32, .95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 46px;
  line-height: 1;
  padding: 10px 18px;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox__nav:hover { color: var(--gold); }
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }

/* ---------- About page ---------- */
.about-hero {
  background: var(--indigo);
  color: var(--text-on-dark);
  text-align: center;
  padding: 118px 24px 108px;
}
.about-hero__word {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 112px);
  line-height: 1;
}
.about-hero__def {
  margin: 26px auto 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-dark-soft);
}

.about-why .prose { margin: 0 auto; }
.about-longform { padding-top: 0; }
.about-longform .prose { margin: 0 auto; }
.about-longform .loza-divider { margin: 44px 0; }

.about-cta { text-align: center; }
.about-cta__line {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 32px;
}

/* ---------- Contacts page ---------- */
.contact-page { padding: 84px 0 110px; }
.contact-page__inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.contact-page h1 { font-size: clamp(32px, 4.6vw, 48px); margin-bottom: 26px; }
.contact-page__text p { font-size: 17px; line-height: 1.75; }
.contact-page__text p + p { margin-top: 18px; }

.placeholder-note {
  margin-top: 34px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-soft);
}

.contact-links { margin-top: 14px; border-top: 1px solid var(--line); }
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--transition);
}
.contact-row:hover { color: var(--gold); }
.contact-row__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.contact-row__value { font-size: 15px; text-align: right; }

/* ---------- Footer ---------- */
.footer {
  background: var(--indigo);
  color: var(--text-on-dark);
}
/* Top edge: meander tile repeated horizontally (gold at 35% ≈ --gold-dim) */
.footer__meander {
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cg fill='none' stroke='%23A8792A' stroke-width='1.5'%3E%3Cpath d='M0 10.5 H24'/%3E%3Cpath d='M3 10.5 V1.5 H21 V7.5 H9 V4.5 H15'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 28px 14px;
  background-position: center top;
  opacity: .35;
  margin-top: -14px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 66px 24px 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; gap: 36px; } }

.footer__logo img { width: 156px; height: auto; }
.footer__tagline {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-on-dark-soft);
}

.footer__title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-on-dark-soft);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold-light); }
.footer__note {
  margin-top: 12px;
  font-size: 12px;
  font-style: italic;
  color: var(--text-on-dark-soft);
  opacity: .75;
}

.footer__bottom {
  border-top: 1px solid var(--line-on-dark);
}
.footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-on-dark-soft);
}

/* ---------- Fade-in on scroll (только при работающем JS) ---------- */
html.js .fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js .fade-in.visible { opacity: 1; transform: none; }

#featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { #featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero__ornament, .product-card__image img, .category-tile img { transition: none; }
}
