/* ============================================================
   МИСТЭО · landing styles
   Palette derived from the brand emblem:
   espresso #15110b / #231c14, copper #ab774f, bronze #674a32,
   warm cream paper #f6efe1
   ============================================================ */

:root {
  --espresso: #15110b;
  --espresso-2: #1d1810;
  --bark: #231c14;
  --bronze: #674a32;
  --copper: #ab774f;
  --copper-soft: #c8995f;
  --copper-glow: rgba(171, 119, 79, 0.35);

  --cream: #f6efe1;
  --cream-2: #efe5d2;
  --paper: #f3ead7;

  --ink: #2b2114;
  --ink-soft: #5f5238;
  --ink-faint: #8a7c63;

  --on-dark: #efe3cf;
  --on-dark-soft: #c2b298;
  --on-dark-faint: #8a7a60;

  --line: rgba(103, 74, 50, 0.18);
  --line-dark: rgba(200, 153, 95, 0.18);

  /* Premium gold leaf gradient for rings, rules, accents */
  --gold: linear-gradient(135deg, #f4dca6 0%, #d6a566 38%, #ab774f 64%, #8a5f3c 100%);
  --gold-soft: linear-gradient(135deg, #f7e6c4, #d8ad72 55%, #b1814f);

  --serif: "Cormorant Garamond", Georgia, serif;
  --motto: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Soft elevation shadows */
  --shadow-sm: 0 6px 18px -10px rgba(43, 33, 20, 0.4);
  --shadow-md: 0 24px 50px -28px rgba(43, 33, 20, 0.5);
  --shadow-lg: 0 44px 90px -40px rgba(21, 17, 11, 0.6);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--copper);
  color: var(--cream);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Typography helpers ---------- */
.eyebrow,
.section-kicker,
.panel-tag,
.parchment-label {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1.1rem;
}
.section-kicker--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
/* Kicker icon — small, framed coin to match the medallion language */
.section-kicker-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.42rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #fffdf8 0%, #f1e6d1 72%, #e7d8bd 100%);
  box-shadow:
    inset 0 0 0 1px rgba(171, 119, 79, 0.22),
    0 6px 16px -8px rgba(43, 33, 20, 0.45);
}

/* ============================================================
   MEDALLION — single unified icon frame used everywhere
   ============================================================ */
.medallion {
  --m-size: clamp(72px, 7.5vw, 92px);
  position: relative;
  flex: none;
  display: inline-grid;
  place-items: center;
  width: var(--m-size);
  height: var(--m-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #fffdf8 0%, #f2e7d2 68%, #e6d6bb 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(171, 119, 79, 0.16),
    0 16px 32px -16px rgba(43, 33, 20, 0.5);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
/* hairline gold ring drawn with a masked gradient border */
.medallion::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  padding: 1px;
  background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  pointer-events: none;
}
.medallion img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(43, 33, 20, 0.18));
}
/* dark-section variant */
.section--dark .medallion,
.medallion--dark {
  background: radial-gradient(circle at 32% 26%, #2c2316 0%, #1c160e 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(200, 153, 95, 0.24),
    0 18px 38px -18px rgba(0, 0, 0, 0.7);
}
.section--dark .medallion img,
.medallion--dark img {
  filter:
    drop-shadow(0 0 8px rgba(200, 153, 95, 0.28))
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  --pad-x: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--solid {
  background: linear-gradient(135deg, #d8aa6a 0%, var(--copper) 45%, var(--bronze) 100%);
  color: #fff5e6;
  box-shadow: 0 14px 34px -16px var(--copper-glow), inset 0 1px 0 rgba(255, 244, 222, 0.35);
}
/* sweeping sheen on hover */
.btn--solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 248, 232, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px var(--copper-glow), inset 0 1px 0 rgba(255, 244, 222, 0.45);
  filter: brightness(1.05);
}
.btn--solid:hover::after {
  left: 130%;
}

.btn--outline {
  border-color: var(--bronze);
  color: var(--bronze);
}
.btn--outline:hover {
  background: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--outline-light {
  border-color: var(--on-dark-soft);
  color: var(--on-dark);
}
.btn--outline-light:hover {
  background: var(--on-dark);
  color: var(--espresso);
  border-color: var(--on-dark);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  --pad-y: 0.7rem;
  --pad-x: 1.3rem;
}
.btn--ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(246, 239, 225, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(21, 17, 11, 0.6);
  padding: 0.55rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.brand-logo {
  height: 46px;
  width: auto;
  opacity: 0.96;
  transition: height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.site-header.scrolled .brand-logo {
  height: 38px;
  opacity: 1;
}

.header-cta {
  --pad-y: 0.7rem;
  --pad-x: 1.25rem;
  font-size: 0.72rem;
  flex: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(0.6rem, 1.3vw, 1.3rem);
  margin-left: auto;
  margin-right: clamp(0.7rem, 1.4vw, 1.2rem);
}
.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.35s var(--ease);
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--copper);
}
.nav a[aria-current="page"]::after {
  width: 100%;
}
.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(95% 85% at 82% 8%, rgba(200, 153, 95, 0.34) 0%, transparent 58%),
    radial-gradient(75% 65% at 8% 92%, rgba(103, 74, 50, 0.14) 0%, transparent 52%),
    radial-gradient(60% 50% at 50% 40%, rgba(246, 239, 225, 0.9) 0%, transparent 70%),
    linear-gradient(158deg, #faf4e8 0%, var(--cream) 38%, var(--cream-2) 72%, #e6d9c4 100%);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding: 9rem 0 5rem;
}

/* Hero photo backdrop (images/hero-bg.jpg — the amber resin still-life).
   The photograph anchors the right side as a rich golden feature and
   dissolves into clean cream on the left, where the headline lives.
   Tune --hero-bg-opacity / the filter to taste. */
.hero {
  --hero-bg-opacity: 0.94;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.03) brightness(0.98);
  opacity: var(--hero-bg-opacity);
  pointer-events: none;
}
/* Warm cream scrim: solid down the left for headline contrast, a cream
   band across the top so the fixed header/logo stay readable, and a soft
   halo around the emblem so the dark logo reads over the amber. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      rgba(246, 239, 225, 0.6) 11%,
      rgba(246, 239, 225, 0) 25%),
    linear-gradient(102deg,
      var(--cream) 0%,
      rgba(246, 239, 225, 0.96) 26%,
      rgba(246, 239, 225, 0.55) 42%,
      rgba(246, 239, 225, 0) 58%),
    radial-gradient(54% 52% at 79% 48%,
      rgba(246, 239, 225, 0.74) 0%,
      rgba(246, 239, 225, 0.34) 44%,
      transparent 72%),
    linear-gradient(180deg,
      transparent 60%,
      rgba(230, 217, 196, 0.34) 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  right: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(200, 153, 95, 0.28) 0%, transparent 62%);
  filter: blur(28px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero-title .hero-flow {
  font-style: italic;
  display: inline-block;
  background: linear-gradient(
    105deg,
    var(--bronze) 0%,
    var(--copper-soft) 22%,
    #ecd09a 42%,
    var(--copper) 58%,
    #f5e4be 78%,
    var(--copper-soft) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    hero-float 7s ease-in-out infinite,
    hero-shimmer 8s ease-in-out infinite;
}
.hero-flow--offset {
  animation-delay: -3.5s, -2.2s;
}

.hero-lead {
  margin-top: 1.8rem;
  max-width: 50ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 300;
}

.hero-motto {
  margin-top: 1.6rem;
  font-family: var(--motto);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  color: var(--bronze);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.hero-actions--center {
  justify-content: center;
}

/* Emblem */
.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.emblem-art {
  position: relative;
  width: 86%;
  filter: drop-shadow(0 22px 44px rgba(43, 33, 20, 0.16));
  animation: float 7s ease-in-out infinite;
}
.emblem-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(
    circle,
    rgba(248, 242, 230, 0.86) 0%,
    rgba(246, 239, 225, 0.62) 48%,
    rgba(246, 239, 225, 0.18) 70%,
    transparent 82%
  );
  -webkit-backdrop-filter: blur(7px) saturate(1.05);
  backdrop-filter: blur(7px) saturate(1.05);
  box-shadow:
    0 30px 70px -34px rgba(21, 17, 11, 0.5),
    inset 0 0 40px rgba(246, 239, 225, 0.5);
}
.emblem-ring::after {
  content: "";
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  border: 1px dashed rgba(103, 74, 50, 0.28);
  animation: spin 60s linear infinite;
}

/* translateX compensates for the logo art being drawn ~6% left of
   the SVG viewBox centre, so it sits concentric with the rings */
@keyframes float {
  0%, 100% { transform: translate(5.8%, 0); }
  50% { transform: translate(5.8%, -14px); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(3px); }
  50% { transform: translateY(-3px); }
}
@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  background: var(--bark);
  color: var(--on-dark);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.statement-text {
  font-family: var(--motto);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.32;
  max-width: 22ch;
  margin: 0 auto;
}
.statement-text strong {
  color: var(--copper-soft);
  font-weight: 400;
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
}
.section--cream {
  background: var(--cream-2);
}

/* ---------- Section backgrounds ---------- */
.section--craft,
.section--philosophy,
.section--offer,
.section--benefits,
.section--audience,
.section--care,
.section--maturation {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--offer {
  margin-top: -1px;
}
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section--craft > .container,
.section--philosophy > .container,
.section--offer > .container,
.section--benefits > .container,
.section--audience > .container,
.section--care > .container,
.section--maturation > .container {
  position: relative;
  z-index: 1;
}
.section--dark.section--philosophy,
.section--dark.section--care {
  background: transparent;
}

/* ---- Shared photo backdrop recipe ----
   ::before = the photograph (warm-toned, softly out of focus)
   ::after  = the colour wash / scrim that guarantees text contrast      */
.section-bg::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
/* LIGHT chapter base */
.section--craft,
.section--maturation,
.section--benefits,
.section--audience {
  background: var(--cream);
}
/* DARK chapter base */
.section--offer,
.section--philosophy,
.section--care {
  background: var(--espresso);
}

/* TECHNOLOGY — light */
.section-bg--craft::before {
  background-image: url("../images/bg-technology.jpg");
  filter: blur(3px) saturate(0.78) sepia(0.32) brightness(1.04);
  opacity: 0.5;
}
.section-bg--craft::after {
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      rgba(246, 239, 225, 0.74) 22%,
      rgba(244, 236, 220, 0.66) 55%,
      rgba(239, 229, 210, 0.92) 100%),
    radial-gradient(60% 50% at 84% 12%, rgba(171, 119, 79, 0.12) 0%, transparent 60%);
}

/* PHILOSOPHY — dark */
.section-bg--philosophy::before {
  background-image: url("../images/bg-philosophy.jpg");
  filter: blur(3px) saturate(0.85) sepia(0.35) brightness(0.66) contrast(1.02);
  opacity: 0.62;
}
.section-bg--philosophy::after {
  background:
    linear-gradient(105deg,
      rgba(18, 14, 9, 0.9) 0%,
      rgba(21, 17, 11, 0.78) 38%,
      rgba(28, 22, 14, 0.5) 66%,
      rgba(21, 17, 11, 0.62) 100%),
    radial-gradient(70% 60% at 78% 30%, rgba(171, 119, 79, 0.18) 0%, transparent 60%);
}

/* OFFER — dark showcase (the photo is already a rich amber still-life) */
.section-bg--offer::before {
  background-image: url("../images/bg-offer.jpg");
  background-position: center 30%;
  filter: blur(2px) saturate(1.02) brightness(0.7) contrast(1.04);
  opacity: 0.7;
}
.section-bg--offer::after {
  background:
    linear-gradient(180deg,
      var(--espresso) 0%,
      rgba(21, 17, 11, 0.86) 14%,
      rgba(24, 19, 12, 0.6) 40%,
      rgba(24, 19, 12, 0.62) 70%,
      var(--espresso) 100%),
    radial-gradient(60% 50% at 18% 10%, rgba(171, 119, 79, 0.16) 0%, transparent 58%);
}

/* BENEFITS — light */
.section-bg--benefits::before {
  background-image: url("../images/bg-benefits.jpg");
  filter: blur(4px) saturate(0.5) sepia(0.55) brightness(1.05);
  opacity: 0.34;
}
.section-bg--benefits::after {
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      rgba(245, 238, 224, 0.8) 30%,
      rgba(243, 235, 219, 0.78) 60%,
      rgba(239, 229, 210, 0.94) 100%),
    radial-gradient(60% 50% at 16% 18%, rgba(171, 119, 79, 0.1) 0%, transparent 58%);
}

/* AUDIENCE — light */
.section-bg--audience::before {
  background-image: url("../images/bg-audience.jpg");
  filter: blur(4px) saturate(0.62) sepia(0.42) brightness(1.05);
  opacity: 0.3;
}
.section-bg--audience::after {
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      rgba(245, 238, 224, 0.82) 30%,
      rgba(243, 235, 219, 0.8) 60%,
      rgba(239, 229, 210, 0.94) 100%),
    radial-gradient(60% 50% at 82% 16%, rgba(171, 119, 79, 0.1) 0%, transparent 58%);
}

/* MATURATION — light */
.section-bg--maturation::before {
  background-image: url("../images/bg-maturation.jpg");
  filter: blur(4px) saturate(0.62) sepia(0.4) brightness(1.04);
  opacity: 0.3;
}
.section-bg--maturation::after {
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      rgba(245, 238, 224, 0.82) 28%,
      rgba(243, 235, 219, 0.8) 60%,
      rgba(239, 229, 210, 0.94) 100%),
    radial-gradient(60% 50% at 50% 14%, rgba(171, 119, 79, 0.1) 0%, transparent 58%);
}

/* CARE — dark */
.section-bg--care::before {
  background-image: url("../images/bg-care.jpg");
  filter: blur(3px) saturate(0.78) sepia(0.42) brightness(0.6) contrast(1.03);
  opacity: 0.55;
}
.section-bg--care::after {
  background:
    linear-gradient(180deg,
      var(--espresso) 0%,
      rgba(21, 17, 11, 0.82) 16%,
      rgba(28, 22, 14, 0.58) 45%,
      rgba(24, 19, 12, 0.72) 78%,
      var(--espresso) 100%),
    radial-gradient(64% 52% at 78% 24%, rgba(171, 119, 79, 0.16) 0%, transparent 60%);
}

/* Elegant gold hairline at the seams between dark & light chapters */
.section--craft::before,
.section--care::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 153, 95, 0.55), transparent);
  z-index: 2;
}

.section--dark {
  background: radial-gradient(120% 120% at 20% 0%, #241b11 0%, var(--espresso) 60%);
  color: var(--on-dark);
}
.section--dark .section-title {
  color: #fff;
}
.section--dark .section-sub {
  color: var(--on-dark-soft);
}

/* ---------- Offerings cards ---------- */
.section--offer .section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section--offer .section-kicker {
  color: var(--copper-soft);
}
.section--offer .section-title {
  color: var(--on-dark);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  position: relative;
  padding: clamp(2.4rem, 3.4vw, 3.2rem) clamp(1.75rem, 2.5vw, 2.25rem);
  background: linear-gradient(160deg, #fffaf0 0%, var(--cream) 48%, var(--cream-2) 100%);
  border: 1px solid rgba(171, 119, 79, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
  overflow: hidden;
}
/* hairline gold frame inset */
.card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(171, 119, 79, 0.16);
  pointer-events: none;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(var(--copper-soft), var(--bronze));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(171, 119, 79, 0.38);
}
.card:hover::before {
  transform: scaleY(1);
}
.card-medallion {
  --m-size: clamp(88px, 9vw, 108px);
  margin: 0 auto 1.5rem;
}
.card:hover .card-medallion {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(171, 119, 79, 0.16),
    0 22px 40px -18px rgba(43, 33, 20, 0.55);
}
/* compact medallion for list rows (benefits, audience) */
.medallion--sm {
  --m-size: 58px;
}
.medallion--sm img {
  width: 60%;
  height: 60%;
}
/* glyph medallion (care section) */
.medallion--glyph {
  font-size: 1.55rem;
  line-height: 1;
  color: var(--copper-soft);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.card-text {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 26ch;
  margin: 0 auto;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.section--philosophy .section-kicker {
  color: var(--copper-soft);
}
.section--philosophy .section-title {
  color: var(--on-dark);
  text-shadow: 0 2px 18px rgba(21, 17, 11, 0.35);
}
.section--philosophy .lead-muted {
  margin-top: 1.4rem;
  color: rgba(239, 227, 207, 0.94);
  font-size: 1.12rem;
  font-weight: 300;
  max-width: 48ch;
}
.lead-muted {
  margin-top: 1.4rem;
  color: var(--on-dark-soft);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 48ch;
}
.feature-list {
  list-style: none;
  margin-top: 2.4rem;
  display: grid;
  gap: 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--on-dark-soft);
  font-weight: 300;
}
.feature-list .medallion {
  --m-size: 62px;
}
.section--philosophy .feature-list li {
  color: rgba(206, 191, 166, 0.95);
}
.feature-body {
  display: block;
  line-height: 1.45;
}
.feature-name {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Devise card (manifest) */
.devise {
  position: relative;
}
.devise-card {
  position: relative;
  text-align: center;
  padding: clamp(2.6rem, 5vw, 3.6rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: linear-gradient(
    155deg,
    var(--paper) 0%,
    var(--cream-2) 52%,
    #e4d5bc 100%
  );
  border: 1px solid rgba(103, 74, 50, 0.32);
  box-shadow:
    0 44px 80px -36px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  overflow: hidden;
}
.devise-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(171, 119, 79, 0.38);
  border-radius: 2px;
  pointer-events: none;
}
.devise-logo {
  display: block;
  width: clamp(200px, 38vw, 280px);
  height: auto;
  margin: 0 auto 0.3rem;
  /* SVG art sits ~6% left of viewBox centre — same fix as hero emblem */
  transform: translateX(5.8%);
}
.devise .parchment-label {
  display: block;
  margin-top: 0;
  color: var(--bronze);
}
.devise-quote {
  font-family: var(--motto);
  font-weight: 300;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.14;
  margin: 1rem 0 1.4rem;
  color: var(--ink);
}
.devise-rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.devise-sign {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ============================================================
   CRAFT / TECHNOLOGY
   ============================================================ */
.section--craft .section-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section--craft .section-kicker {
  color: var(--copper);
}
.section--craft .section-title {
  color: var(--ink);
  text-shadow: none;
}
.section--craft .section-sub {
  color: var(--ink-soft);
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.craft-text p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.section--craft .craft-text p {
  color: rgba(43, 33, 20, 0.88);
  font-size: 1.12rem;
}
.craft-text strong {
  color: var(--ink);
  font-weight: 600;
}
.section--craft .why h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--espresso);
}
.why {
  margin-top: 2rem;
}
.why h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.section--craft .craft-text .dash-list li {
  color: rgba(43, 33, 20, 0.82);
}
.craft-panel .dash-list li,
.craft-panel .dash-list--light li {
  color: var(--on-dark-soft);
}
.dash-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}
.dash-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--copper);
  transform: rotate(45deg);
}
.dash-list--light li {
  color: var(--on-dark-soft);
}

/* Panel (myth/fact) */
.craft-panel {
  background: linear-gradient(150deg, var(--bark), var(--espresso));
  color: var(--on-dark);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 70px -40px rgba(21, 17, 11, 0.6);
}
.panel-tag {
  display: inline-block;
  margin-bottom: 1rem;
}
.panel-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  line-height: 1.16;
}
.panel-myth {
  margin-top: 1.2rem;
  color: var(--on-dark-faint);
}
.panel-myth em {
  color: var(--copper-soft);
  font-style: italic;
}
.panel-fact {
  margin: 0.6rem 0 1.4rem;
  color: var(--on-dark-soft);
}
.panel-note {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  color: var(--on-dark-soft);
  font-size: 0.98rem;
}
.panel-note strong {
  color: var(--copper-soft);
}
.panel-note b {
  color: #fff;
}

/* Maturation timeline */
.section--maturation .maturation-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section--maturation .section-kicker {
  color: var(--copper-soft);
}
.section--maturation .maturation-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--espresso);
  line-height: 1.18;
  margin-top: 0.6rem;
  text-shadow: 0 1px 0 rgba(246, 239, 225, 0.6);
}
.maturation-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.maturation-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--ink);
  line-height: 1.18;
  margin-top: 0.6rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 2px solid var(--line);
}
.step::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}
.section--maturation .step {
  padding-top: 2.4rem;
}
.section--maturation .step h4 {
  color: var(--espresso);
  font-size: 1.35rem;
}
.section--maturation .step p {
  color: rgba(43, 33, 20, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}
.step .medallion {
  margin-bottom: 1.1rem;
}
.step h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.slogan {
  position: relative;
  text-align: center;
  max-width: 38ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--paper), var(--cream-2));
  box-shadow: 0 24px 52px -34px rgba(43, 33, 20, 0.22);
}
.slogan::before,
.slogan::after {
  content: "";
  display: block;
  width: clamp(52px, 14vw, 80px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.slogan::before {
  margin-bottom: 1.2rem;
}
.slogan::after {
  margin-top: 1.2rem;
}
.slogan-kicker {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
}
.slogan-text {
  margin: 0;
  font-family: var(--motto);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.38;
  color: var(--ink-soft);
}
.slogan-text strong {
  color: var(--copper);
  font-weight: 400;
}
.slogan--dark {
  border-color: var(--line-dark);
  background: linear-gradient(155deg, rgba(171, 119, 79, 0.12), rgba(21, 17, 11, 0.38));
  box-shadow: 0 32px 64px -36px rgba(0, 0, 0, 0.55);
}
.slogan--dark .slogan-text {
  color: var(--on-dark-soft);
}
.slogan--dark .slogan-text strong {
  color: var(--copper-soft);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.section--benefits .section-kicker {
  color: var(--copper);
}
.benefits-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2.5rem;
}
.benefits-grid li {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  color: var(--ink);
}
.section--benefits .benefits-grid li {
  color: rgba(35, 28, 20, 0.92);
  font-size: 1.1rem;
  line-height: 1.5;
}
.benefits-grid li .medallion {
  align-self: center;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.section--audience .section-kicker {
  color: var(--copper);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.audience-grid p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(160deg, #fffaf0 0%, var(--cream) 55%, var(--cream-2) 100%);
  border: 1px solid rgba(171, 119, 79, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.audience-grid p:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(171, 119, 79, 0.4);
}

/* ============================================================
   CARE
   ============================================================ */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.care-card {
  text-align: center;
  padding: 2.6rem 1.4rem;
  border: 1px solid rgba(200, 153, 95, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(62, 48, 31, 0.62) 0%, rgba(21, 17, 11, 0.52) 100%);
  box-shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.7);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    background 0.45s var(--ease);
}
.care-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 153, 95, 0.5);
  background: linear-gradient(165deg, rgba(80, 60, 38, 0.5) 0%, rgba(30, 23, 14, 0.4) 100%);
}
.care-card .medallion {
  --m-size: 74px;
  margin: 0 auto 1.3rem;
}
.care-card:hover .medallion {
  transform: translateY(-2px);
}
.care-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.care-card p {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  font-weight: 300;
}
/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative;
  background: var(--bark);
  color: var(--on-dark);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(5rem, 11vw, 9rem);
  text-align: center;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--copper-glow) 0%, transparent 62%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  max-width: 800px;
}
.final-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin: 1rem 0 1.6rem;
}
.final-text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--on-dark-soft);
  font-weight: 300;
  max-width: 60ch;
  margin: 0 auto 2.6rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--cream-2) 55%,
    #e4d5bc 100%
  );
  color: var(--ink-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-logo {
  width: clamp(108px, 17vw, 140px);
  height: auto;
  margin-bottom: 1.2rem;
  transform: translateX(5.8%);
}
.footer-brand p {
  max-width: 38ch;
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
  width: fit-content;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--copper);
}
.footer-site {
  font-family: var(--serif);
  font-size: 1.3rem !important;
  color: var(--ink) !important;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.footer-bottom span:last-child {
  font-family: var(--motto);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger children within grids */
.cards-grid .card:nth-child(2),
.timeline .step:nth-child(2),
.care-grid .care-card:nth-child(2),
.audience-grid p:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .card:nth-child(3),
.timeline .step:nth-child(3),
.care-grid .care-card:nth-child(3),
.audience-grid p:nth-child(3) { transition-delay: 0.16s; }
.care-grid .care-card:nth-child(4),
.audience-grid p:nth-child(4) { transition-delay: 0.24s; }
.benefits-grid li:nth-child(even) { transition-delay: 0.08s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 761px) {
  .section--offer {
    margin-top: clamp(-5rem, -7vw, -6.5rem);
    padding-top: calc(clamp(4.5rem, 10vw, 8.5rem) + clamp(5rem, 7vw, 6.5rem));
  }
  .section-bg--offer::before,
  .section-bg--offer::after {
    top: clamp(-5rem, -7vw, -6.5rem);
  }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-emblem {
    max-width: 320px;
    margin: 0.5rem auto 0;
  }
  /* Single column: keep the amber as a soft, even backdrop behind
     full-width text rather than a right-side feature. */
  .hero { --hero-bg-opacity: 0.5; }
  .hero::before { background-position: center; }
  .hero::after {
    background:
      linear-gradient(180deg,
        var(--cream) 0%,
        rgba(246, 239, 225, 0.82) 18%,
        rgba(246, 239, 225, 0.7) 55%,
        rgba(239, 229, 210, 0.86) 100%),
      radial-gradient(70% 55% at 50% 42%, rgba(246, 239, 225, 0.5) 0%, transparent 70%);
  }
  .philosophy-inner { grid-template-columns: 1fr; }
  .parchment-paper { transform: rotate(-1deg); }
  .craft-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1180px) {
  .nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.4rem clamp(20px, 5vw, 56px) 2rem;
    background: rgba(246, 239, 225, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px -20px rgba(21, 17, 11, 0.5);
    gap: 1.2rem;
  }
  .nav.open a { font-size: 1rem; white-space: normal; }
}

@media (max-width: 760px) {
  .aromas { background-attachment: scroll; }

  .cards-grid,
  .timeline,
  .benefits-grid,
  .audience-grid,
  .care-grid { grid-template-columns: 1fr; }

  .care-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-emblem { max-width: 250px; }
  .hero-actions .btn { flex: 1 1 auto; }

  /* ---- Hero background: mobile ----
     The hero photo is a landscape macro that crops poorly in portrait.
     Hide it entirely and let the CSS gradient (warm cream + amber radials)
     carry the background on its own — it looks cleaner without the photo. */
  .hero::before { display: none; }
  .hero::after  { display: none; }

  /* ---- Section backgrounds: mobile ----
     Remove the negative inset bleed and the zoom scale — parallax
     expansion isn't needed on mobile and costs extra GPU memory.
     Per-section filter/opacity values stay intact. */
  .section-bg::before {
    inset: 0;
    transform: none;
  }
}

@media (max-width: 460px) {
  .care-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-flow {
    color: var(--copper-soft);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   AROMAS PAGE — "Наши ароматы"
   ============================================================ */
.page-intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(7.5rem, 12vw, 10.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(72% 60% at 82% 0%, rgba(200, 153, 95, 0.2) 0%, transparent 60%),
    radial-gradient(60% 50% at 6% 100%, rgba(103, 74, 50, 0.1) 0%, transparent 56%),
    linear-gradient(180deg, #faf4e8 0%, var(--cream) 46%, var(--cream-2) 100%);
}
.page-intro > .container {
  position: relative;
  z-index: 1;
}
/* decorative alchemy-paper backdrop behind the intro */
.section-bg--aromas-intro::before {
  background-image: url("../images/aromas_bg/bg6.png");
  filter: blur(1px) saturate(0.92) brightness(1.05);
  opacity: 0.6;
}
.section-bg--aromas-intro::after {
  background:
    linear-gradient(180deg,
      rgba(250, 244, 232, 0.62) 0%,
      rgba(246, 239, 225, 0.6) 46%,
      rgba(239, 229, 210, 0.94) 100%),
    radial-gradient(58% 48% at 80% 4%, rgba(171, 119, 79, 0.12) 0%, transparent 60%);
}
.page-intro-head {
  max-width: 760px;
  margin: 0 auto clamp(2.6rem, 5vw, 3.6rem);
  text-align: center;
}
.page-intro-head .section-kicker {
  color: var(--copper);
}
.page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 0.6rem;
}
.page-subtitle {
  margin: 1.2rem auto 0;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-soft);
}

/* Papyrus intro card */
.papyrus {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  isolation: isolate;
  padding: clamp(2.8rem, 5.5vw, 4.8rem) clamp(1.8rem, 6vw, 5.5rem) clamp(2.6rem, 5vw, 4.2rem);
  color: #36281a;
  background-image: url("../images/papyrus.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  box-shadow:
    0 48px 90px -42px rgba(21, 17, 11, 0.62),
    inset 0 0 0 1px rgba(103, 74, 50, 0.22);
}
/* warm wash to calm the paper texture and lift text contrast */
.papyrus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(82% 74% at 50% 32%, rgba(245, 237, 222, 0.62) 0%, rgba(240, 231, 214, 0.32) 58%, rgba(232, 221, 200, 0.12) 100%);
  border-radius: 3px;
}
/* hand-inked frame */
.papyrus::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(103, 74, 50, 0.3);
  border-radius: 2px;
  pointer-events: none;
}
.papyrus-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 0.7rem;
}
.about-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #8a5f3c 0%, #ab774f 34%, #d6a566 64%, #8a5f3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-flourish {
  display: block;
  width: 88px;
  height: 1px;
  margin: 1rem auto 1.6rem;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  position: relative;
}
.about-flourish::after {
  content: "❧";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-size: 1.1rem;
  color: var(--copper);
  background: transparent;
  padding: 0 0.5rem;
}
.about-text {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.72;
  color: #3a2c1b;
}
.about-text + .about-text {
  margin-top: 1.1rem;
}
/* clothing-care advice — deliberately quiet, fine print */
.care-note {
  margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
  padding-top: 1.4rem;
  max-width: 60ch;
  border-top: 1px solid rgba(103, 74, 50, 0.24);
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(74, 58, 38, 0.74);
}
.care-note b {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(74, 58, 38, 0.85);
}

/* Aroma list */
.aromas {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    linear-gradient(180deg,
      rgba(239, 229, 210, 0.92) 0%,
      rgba(246, 239, 225, 0.85) 10%,
      rgba(245, 238, 223, 0.82) 50%,
      rgba(246, 239, 225, 0.85) 90%,
      rgba(239, 229, 210, 0.92) 100%),
    url("../images/aromas_bg/bg7.png") center top / cover fixed,
    var(--cream);
}
.aromas-list {
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
}
.aroma {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.aroma--reverse {
  grid-template-columns: 1.08fr 0.92fr;
}
.aroma--reverse .aroma-figure {
  order: 2;
}

.aroma-figure {
  position: relative;
  margin: 0;
}
.aroma-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.aroma-figure::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 239, 225, 0.28);
  border-radius: 6px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.aroma-figure::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, var(--copper-glow) 0%, transparent 62%);
  filter: blur(26px);
  opacity: 0.7;
}

.aroma-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.aroma-name span {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--bronze);
  margin-top: 0.3rem;
}
.aroma-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.34;
  color: var(--copper);
  margin: 1rem 0 1.6rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--copper);
}
.aroma-subhead {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  margin: 1.8rem 0 0.4rem;
}
.aroma-text {
  font-size: 1.02rem;
  line-height: 1.74;
  font-weight: 300;
  color: var(--ink-soft);
}
.aroma-text + .aroma-text {
  margin-top: 0.9rem;
}
.aroma-text em {
  font-style: italic;
  color: var(--bronze);
}
.aroma-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 1.4rem;
}

/* Volumes + price CTA */
.aroma-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.volumes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.volumes-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
}
.volume-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.volume {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(103, 74, 50, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bronze);
}
.aroma-buy .btn {
  margin-left: auto;
}

/* Closing CTA band on gold-veined marble */
.aromas-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.aromas-cta > .container {
  position: relative;
  z-index: 1;
}
.section-bg--cta::before {
  background-image: url("../images/aromas_bg/bg3.png");
  filter: saturate(1.06) brightness(1.02);
  opacity: 0.72;
}
.section-bg--cta::after {
  background:
    radial-gradient(62% 64% at 50% 50%, rgba(247, 240, 226, 0.78) 0%, rgba(246, 239, 225, 0.42) 48%, transparent 100%),
    linear-gradient(180deg, var(--cream) 0%, rgba(246, 239, 225, 0.24) 26%, rgba(246, 239, 225, 0.24) 72%, var(--cream) 100%);
}
.aromas-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.aromas-cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.8rem 0 1.2rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.aromas-cta-text {
  max-width: 54ch;
  margin: 0 auto 2.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .aroma,
  .aroma--reverse {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 5vw, 2.4rem);
  }
  .aroma--reverse .aroma-figure {
    order: 0;
  }
  .aroma-figure {
    max-width: 460px;
    margin: 0 auto;
  }
  .aroma-img {
    aspect-ratio: 3 / 4;
  }
  .aroma-buy .btn {
    margin-left: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  .papyrus {
    padding-left: clamp(1.4rem, 6vw, 2rem);
    padding-right: clamp(1.4rem, 6vw, 2rem);
  }
  .papyrus::after { inset: 9px; }
}

/* ============================================================
   ARTICLES — "Журнал" (SEO)
   ============================================================ */
.articles {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 9vw, 7rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.article-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--paper) 0%, var(--cream-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
}
.article-card-body .section-kicker {
  color: var(--copper);
}
.article-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.16;
  color: var(--ink);
}
.article-excerpt {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--ink-soft);
}
.article-more {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
}

/* Single article page */
.article-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(60% 50% at 84% 0%, rgba(200, 153, 95, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #faf4e8 0%, var(--cream) 52%, var(--cream-2) 100%);
}
.article-page > .container {
  position: relative;
  z-index: 1;
}
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
}
.article-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.article-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 0.6rem;
}
.article-meta {
  margin-top: 1.1rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.article-body {
  font-size: 1.08rem;
  line-height: 1.82;
  font-weight: 300;
  color: var(--ink-soft);
}
.article-body > * + * {
  margin-top: 1.2rem;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--ink);
  margin-top: 2.6rem;
}
.article-body strong {
  color: var(--ink);
  font-weight: 600;
}
.article-body ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  padding-left: 0;
}
.article-body li {
  position: relative;
  padding-left: 1.6rem;
}
.article-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}
.article-body blockquote {
  border-left: 2px solid var(--copper);
  padding-left: 1.3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
}
.article-cta {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
  padding-top: clamp(2rem, 4vw, 2.6rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.article-cta p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ORDER MODAL
   ============================================================ */
.omodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  visibility: hidden;
}
.omodal.is-open {
  pointer-events: auto;
  visibility: visible;
}
.omodal__bg {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 11, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  cursor: pointer;
}
.omodal.is-open .omodal__bg { opacity: 1; }
.omodal__wrap {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: 0 40px 120px -20px rgba(21, 17, 11, 0.7),
              0 0 0 1px rgba(171, 119, 79, 0.18);
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s var(--ease), opacity 0.38s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--copper-soft) transparent;
}
.omodal.is-open .omodal__wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.omodal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  color: var(--ink-faint);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.omodal__close:hover { color: var(--ink); background: var(--cream-2); }
.omodal__kicker {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.omodal__h {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.omodal__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

/* progress dots */
.oprogress {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}
.oprogress__dot {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.3s;
}
.oprogress__dot.done { background: var(--copper-soft); }
.oprogress__dot.active { background: var(--copper); }

/* steps */
.ostep { display: none; }
.ostep.is-active { display: block; }

/* entry choice buttons */
.ochoices {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.ochoice {
  width: 100%;
  justify-content: center;
}

/* form fields */
.ofield { margin-bottom: 1rem; }
.ofield__label {
  display: block;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.ofield__input,
.ofield__select,
.ofield__textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 0.82rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.ofield__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ab774f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}
.ofield__input:focus,
.ofield__select:focus,
.ofield__textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.ofield__input.has-error,
.ofield__select.has-error { border-color: #c0392b; }
.ofield__textarea {
  resize: vertical;
  min-height: 78px;
}
.ofield__input--other { margin-top: 0.6rem; }

/* volume radio chips */
.ovols { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.ovol { position: relative; display: block; }
.ovol input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ovol__label {
  display: block;
  padding: 0.42rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.ovol input:checked + .ovol__label {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--cream);
}
.ovol__label:hover { border-color: var(--copper-soft); }

/* карта аромата sections */
.ocard-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.ocard-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ocard-h {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.22rem;
}
.ocard-q {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.ocard-hint {
  font-size: 0.79rem;
  color: var(--ink-faint);
  margin-bottom: 0.55rem;
}
.ocheckgroup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.onotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.ochk,
.orad {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  cursor: pointer;
}
.ochk input,
.orad input {
  margin-top: 0.2rem;
  accent-color: var(--copper);
  flex-shrink: 0;
}
.ochk span { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.35; }
.orad span  { font-size: 0.9rem;  color: var(--ink-soft); }
.ochk span b {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
}
.ochk span em {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  color: var(--ink-faint);
}
.oradio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin-top: 0.75rem;
}

/* modal footer nav */
.omodal__nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.omodal__nav .btn--back { margin-right: auto; }

/* thank you screen */
.othanks {
  text-align: center;
  padding: 0.5rem 0 0.2rem;
}
.othanks__icon {
  display: block;
  font-size: 2.4rem;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.othanks__h {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.othanks__p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 1.6rem;
}

/* responsive */
@media (max-width: 560px) {
  .ochoices { grid-template-columns: 1fr; }
  .onotes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .onotes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AROMA CATALOG NUMBER TAG
   ============================================================ */
.aroma-catalog-num {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-top: 0.3rem;
}

/* Caption under aroma photo */
.aroma-caption {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--bronze);
}

/* "Узнать цену" — refined outline button for aroma cards */
.btn--price {
  --pad-y: 0.8rem;
  --pad-x: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--copper);
  color: var(--copper);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.38s var(--ease), background 0.38s var(--ease), transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}
.btn--price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease);
  z-index: 0;
}
.btn--price span,
.btn--price {
  position: relative;
  z-index: 1;
}
.btn--price:hover {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px var(--copper-glow);
}
.btn--price:hover::before {
  transform: scaleX(1);
}

/* Mobile: uniform image sizes */
@media (max-width: 860px) {
  .aroma-figure {
    width: 100%;
  }
}
