/* ============================================================
   yashaboks — private gold buyer, Kharkiv
   Direction: dark warm-charcoal luxe · gold as a living material
   Display: Playfair Display · UI: Manrope
   Signature: "live gold" foil with a travelling specular highlight
   ============================================================ */

:root {
  /* palette — warm espresso-black + real gold */
  --bg:        #14110e;
  --bg-2:      #1b1712;
  --bg-3:      #221c15;
  --card:      rgba(255, 250, 235, .035);
  --card-2:    rgba(255, 250, 235, .06);
  --ink:       #f4efe6;
  --ink-soft:  #e6ddca;
  --muted:     #b7aa93;
  --muted-2:   #8c8069;
  --gold:      #d4af37;
  --gold-bright:#f0cf74;
  --gold-hi:   #fbe9a8;
  --gold-deep: #a87b2c;
  --line:      rgba(212, 175, 55, .16);
  --line-2:    rgba(255, 255, 255, .08);
  --danger:    #e0745a;

  /* the living-gold gradient */
  --foil: linear-gradient(100deg,
    #9a6f27 0%, #d4af37 14%, #fbe9a8 30%, #e7c261 42%,
    #b98a2f 58%, #f0cf74 74%, #fbe9a8 88%, #b98a2f 100%);

  /* type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero:  clamp(1.9rem, 5.2vw, 3.4rem);
  --fs-price: clamp(3.6rem, 15vw, 8.5rem);
  --fs-h2:    clamp(1.7rem, 4.2vw, 2.9rem);
  --fs-lede:  clamp(1rem, 1.5vw, 1.18rem);

  /* layout */
  --container: 1120px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .45);
  --shadow-gold: 0 14px 40px rgba(184, 138, 47, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
ul, ol { list-style: none; padding: 0; }
input { font: inherit; }
:focus-visible { outline: 2.5px solid var(--gold-bright); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: #1a1409; padding: .6rem 1.2rem; border-radius: 0 0 10px 10px;
  z-index: 300; font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ambient gold field */
.aura {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 42% at 50% -6%, rgba(212, 175, 55, .16), transparent 62%),
    radial-gradient(46% 40% at 88% 14%, rgba(168, 123, 44, .12), transparent 60%),
    radial-gradient(44% 44% at 6% 78%, rgba(212, 175, 55, .07), transparent 60%);
}

/* ---------- the signature: live gold ---------- */
.gold-foil {
  background: var(--foil);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: foilShine 7s linear infinite;
}
.gold-foil i { font-style: normal; }
@keyframes foilShine { to { background-position: -240% 0; } }

/* ---------- shared typography ---------- */
.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-bright); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.section-title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.08;
  font-size: var(--fs-h2); letter-spacing: -.01em; color: var(--ink);
}
.lede { font-size: var(--fs-lede); color: var(--muted); max-width: 48ch; margin-top: 1.1rem; }

.section { padding-block: clamp(3.4rem, 8vw, 6rem); position: relative; }
.section-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-note { color: var(--muted); margin-top: .8rem; max-width: 54ch; }
.section-head.center .section-note { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  padding: 1rem 1.8rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.15rem; font-size: .88rem; }
.btn-gold {
  background: var(--foil); background-size: 200% 100%; color: #241802;
  box-shadow: var(--shadow-gold); background-position: 0 0;
}
.btn-gold:hover { background-position: 100% 0; box-shadow: 0 18px 46px rgba(184, 138, 47, .42); }
.btn-ghost { color: var(--gold-bright); border-color: var(--line); background: rgba(212, 175, 55, .04); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(212, 175, 55, .1); }
/* secondary emphasis — prominent gold outline without competing with the solid CTA */
.btn-gold-soft { color: var(--gold-hi); border-color: var(--gold); background: rgba(212, 175, 55, .12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .25), 0 8px 24px rgba(184, 138, 47, .18); }
.btn-gold-soft:hover { background: rgba(212, 175, 55, .2); border-color: var(--gold-bright);
  box-shadow: inset 0 0 0 1px rgba(240, 207, 116, .4), 0 12px 30px rgba(184, 138, 47, .28); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; height: 72px; }
.site-header.scrolled, .site-header.menu-open {
  background: rgba(20, 17, 14, .82); backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .35)); }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-body); font-weight: 800; font-size: 1.16rem; letter-spacing: .01em; }
.brand-sub { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; }

.main-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.main-nav a { font-size: .92rem; font-weight: 600; color: var(--muted); position: relative; padding: .2rem 0; transition: color .18s var(--ease); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--gold); transition: width .22s var(--ease); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.main-nav + .header-actions { margin-left: 1.3rem; }

.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch button {
  border: 0; background: transparent; color: var(--muted); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; padding: .32rem .6rem; border-radius: 999px; transition: background .18s var(--ease), color .18s var(--ease);
}
.lang-switch button.is-active { background: var(--gold); color: #241802; }

/* mobile nav toggle */
.nav-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; border-radius: 10px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; left: 0; top: -7px; }
.nav-toggle-bars::after  { position: absolute; left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; padding: .4rem var(--gutter) 1.5rem; background: rgba(20, 17, 14, .98); border-top: 1px solid var(--line); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); padding: .8rem .2rem; border-bottom: 1px solid var(--line-2); }
.mobile-menu a:not(.btn):hover { color: var(--gold-bright); }
.mobile-menu .mobile-write { margin-top: 1.1rem; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(2rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); text-align: center; overflow: hidden; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::before { display: none; }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-hero); line-height: 1.1; letter-spacing: -.015em; max-width: 16ch; margin-bottom: .4rem; text-wrap: balance; }

.price-hero { display: flex; align-items: baseline; justify-content: center; gap: .5rem; margin-top: .8rem; flex-wrap: wrap; line-height: .9; }
.price-hero .ph-from { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 3vw, 1.9rem); color: var(--muted); }
.price-hero .ph-amount { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-price); letter-spacing: -.02em;
  /* background-clip:text paints only inside the box — give the glyphs full vertical room so tops/bottoms aren't cut */
  line-height: 1.08; padding-block: .1em .14em;
  filter: drop-shadow(0 4px 26px rgba(212, 175, 55, .3)); }
.price-hero .ph-unit { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 3vw, 1.9rem); color: var(--muted); }
.ph-note { color: var(--muted-2); font-size: .92rem; margin-top: .5rem; letter-spacing: .01em; }

.hero-sub { color: var(--ink-soft); font-size: var(--fs-lede); max-width: 46ch; margin-top: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem .6rem; justify-content: center; margin-top: 2rem; }
.hero-chips li {
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  padding: .42rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  display: inline-flex; align-items: center; gap: .45rem;
}
.hero-chips li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(212, 175, 55, .8); }

/* ---------- how it works ---------- */
.how { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; padding: 1.6rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--card); counter-increment: step; overflow: hidden;
}
.step::after { content: counter(step, decimal-leading-zero); position: absolute; top: .5rem; right: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--gold); opacity: .14; line-height: 1; }
.step-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(212, 175, 55, .1); border: 1px solid var(--line); margin-bottom: 1rem; }
.step-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: var(--ink); margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ---------- price + calculator ---------- */
.price { background: var(--bg-2); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }

.compare { display: flex; align-items: stretch; gap: .8rem; margin-top: 2rem; }
.cmp { flex: 1; padding: 1.1rem 1.2rem; border-radius: var(--radius); border: 1px solid var(--line-2); background: var(--card); display: flex; flex-direction: column; gap: .35rem; }
.cmp-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); font-weight: 700; }
.cmp-val { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; color: var(--ink); }
.cmp-val i { font-style: normal; font-size: .78em; color: var(--muted); }
.cmp-me { border-color: var(--line); background: rgba(212, 175, 55, .06); }
.cmp-me .cmp-val i { color: var(--gold-deep); }
.cmp-vs { align-self: center; color: var(--gold); font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }

.calc { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.1rem); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.calc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--foil); }
.calc-title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-bottom: 1.2rem; }
.calc-field { display: grid; gap: .5rem; }
.calc-field > span { font-size: .84rem; font-weight: 600; color: var(--muted); }
.calc-field input {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: rgba(0, 0, 0, .25); color: var(--ink); font-size: 1.15rem; font-weight: 700; font-family: var(--font-display);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.calc-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .18); }
.calc-slider { margin-top: 1rem; }
.calc-slider input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--fill, 10%), rgba(255, 255, 255, .1) var(--fill, 10%)); }
.calc-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--foil); border: 2px solid #2a2013; box-shadow: 0 3px 10px rgba(0, 0, 0, .5); cursor: pointer; }
.calc-slider input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #f0cf74; border: 2px solid #2a2013; cursor: pointer; }
.calc-result { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .1rem; }
.calc-r-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); font-weight: 700; }
.calc-r-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 8vw, 3.4rem); line-height: 1; letter-spacing: -.02em; }
.calc-save { margin-top: .9rem; font-size: .95rem; color: var(--ink-soft); }
.calc-save b { color: var(--gold-bright); font-weight: 800; }
.calc-note { margin-top: 1rem; font-size: .78rem; color: var(--muted-2); line-height: 1.5; }

/* ---------- trust ---------- */
.trust { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tcard { padding: 1.6rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.tcard:hover { transform: translateY(-4px); border-color: var(--gold); background: var(--card-2); }
.tcard-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem;
  background: radial-gradient(circle at 35% 30%, rgba(240, 207, 116, .22), rgba(212, 175, 55, .05)); border: 1px solid var(--line); }
.tcard-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-bright); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.tcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: .45rem; }
.tcard p { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ---------- catalog ---------- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.item { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.item:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.item-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(212, 175, 55, .16), transparent 70%),
    linear-gradient(160deg, #241c12, #171310); display: grid; place-items: center; }
.item-media img { width: 100%; height: 100%; object-fit: cover; }
.item-media svg { width: 44%; height: 44%; fill: none; stroke: var(--gold-bright); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; opacity: .85;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, .3)); }
.item-proba { position: absolute; top: .7rem; left: .7rem; font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  color: #241802; background: var(--foil); background-size: 180% 100%; padding: .2rem .55rem; border-radius: 7px; letter-spacing: .02em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3); }
.item-status { position: absolute; top: .7rem; right: .7rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .24rem .55rem; border-radius: 7px; }
.item-status.available { color: #0f1a10; background: #a9d19a; }
.item-status.sold { color: var(--ink); background: rgba(255, 255, 255, .1); border: 1px solid var(--line-2); }
.item.is-sold .item-media { filter: grayscale(.55) brightness(.8); }
.item-body { padding: 1rem 1.1rem 1.15rem; }
.item-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.2; margin-bottom: .4rem; }
.item-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--muted); margin-bottom: .7rem; }
.item-meta b { color: var(--ink-soft); font-weight: 700; }
.item-price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--gold-bright); }
.item-price.deal { font-size: 1.05rem; font-style: italic; color: var(--muted); }
.item.is-hidden { display: none; }
.catalog-more { display: flex; justify-content: center; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.catalog-more[hidden] { display: none; }
.catalog-empty { text-align: center; color: var(--muted); font-size: 1.05rem; padding: 2.4rem 0; }

/* ---------- catalog photo → tap to zoom ---------- */
.item-media img { cursor: zoom-in; transition: transform .4s var(--ease); }
.item:hover .item-media img { transform: scale(1.05); }
/* small magnifier badge, shown only when there is a real photo */
.item-media:has(img)::after {
  content: ""; position: absolute; bottom: .6rem; right: .6rem;
  width: 30px; height: 30px; border-radius: 9px; pointer-events: none;
  background: rgba(20, 17, 14, .62)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbe9a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.2-4.2'/%3E%3C/svg%3E")
    center / 16px no-repeat;
  border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.item-media:has(img):hover::after,
.item-media:has(img):active::after { opacity: 1; transform: none; }

/* ---------- lightbox (fullscreen photo) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center; padding: 1.2rem;
  background: rgba(9, 7, 5, .9); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .24s var(--ease);
}
.lightbox[hidden] { display: none; } /* author display:grid would otherwise defeat [hidden] */
.lightbox.is-open { opacity: 1; }
.lightbox-img {
  max-width: min(93vw, 920px); max-height: 86vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
  transform: scale(.94); transition: transform .28s var(--ease);
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: max(1rem, env(safe-area-inset-top)); right: 1rem;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-2); background: rgba(20, 17, 14, .72); color: var(--ink);
  font-size: 1.9rem; line-height: 1; display: grid; place-items: center;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.lightbox-close:hover { background: rgba(212, 175, 55, .2); border-color: var(--gold); transform: scale(1.06); }
body.lb-open { overflow: hidden; }

/* ---------- what I buy ---------- */
.buy { background: var(--bg-2); }
.buy-chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 780px; margin-inline: auto; }
.buy-chips li {
  font-size: .95rem; font-weight: 600; color: var(--ink-soft);
  padding: .7rem 1.25rem; border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); cursor: default;
}
.buy-chips li:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-bright); }

/* ---------- contact ---------- */
.contact { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(90% 120% at 100% 0%, rgba(212, 175, 55, .1), transparent 60%), var(--bg-3);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.contact-meta { margin-top: 1.6rem; display: grid; gap: .9rem; }
.contact-meta li { display: grid; gap: .15rem; }
.cm-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-bright); font-weight: 700; }
.cm-val { color: var(--ink-soft); font-size: 1rem; }
.contact-actions { display: grid; gap: .7rem; align-content: center; }
.ca {
  display: flex; align-items: center; gap: .9rem; padding: .95rem 1.2rem; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--card); font-weight: 700; color: var(--ink);
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.ca:hover { transform: translateY(-2px); border-color: var(--gold); background: var(--card-2); }
.ca-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(212, 175, 55, .12); }
.ca-icon svg { width: 22px; height: 22px; }
.ca-text { display: flex; flex-direction: column; line-height: 1.2; }
.ca-text small { font-weight: 500; color: var(--muted); font-size: .78rem; }
.ca-primary { background: var(--foil); background-size: 200% 100%; color: #241802; border-color: transparent; box-shadow: var(--shadow-gold); }
.ca-primary .ca-icon { background: rgba(0, 0, 0, .14); }
.ca-primary .ca-text small { color: rgba(36, 24, 2, .7); }
.ca-primary:hover { background-position: 100% 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.brand-footer .brand-mark { width: 42px; height: 42px; }
.brand-footer .brand-name { font-size: 1.4rem; }
.brand-footer .brand-sub { color: var(--muted); letter-spacing: .16em; }
.footer-tagline { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.footer-socials a:hover { background: rgba(212, 175, 55, .14); border-color: var(--gold); transform: translateY(-2px); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-meta { font-size: .8rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; color: var(--muted-2); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.steps .step:nth-child(2), .trust-grid .tcard:nth-child(3n+2), .catalog-grid .item:nth-child(3n+2) { transition-delay: .08s; }
.steps .step:nth-child(3), .trust-grid .tcard:nth-child(3n), .catalog-grid .item:nth-child(3n) { transition-delay: .16s; }
.steps .step:nth-child(4) { transition-delay: .24s; }

/* language swap fade */
.lang-fade { transition: opacity .16s ease; }
.lang-fading { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 981px) { .mobile-menu { display: none !important; } }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .header-inner { height: 62px; gap: .6rem; }
  .brand-sub { display: none; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .compare { flex-direction: column; }
  .cmp-vs { transform: rotate(90deg); }
  .item-name { font-size: 1rem; }
  .header-actions .btn-sm { display: none; }
  .hero-chips li { font-size: .78rem; padding: .38rem .75rem; }
}

@media (max-width: 380px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .gold-foil { background-position: 0 0 !important; }
}
