/* ============================================================
   RARE STATE — premium editorial storefront
   Palette: warm ivory, near-black ink, muted bronze metallic.
   ============================================================ */

/* ---------- Fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #faf7f0;
  --ivory-2: #f1ebdd;
  --paper: #fffdf8;
  --ink: #141110;
  --ink-2: #1d1916;
  --ink-3: #292320;
  --bronze: #c0924e;
  --bronze-bright: #d9b071;
  --bronze-deep: #7d5b29;
  --muted: #6e6559;
  --muted-light: #a89e8f;
  --line: rgba(20, 17, 16, 0.14);
  --line-strong: rgba(20, 17, 16, 0.32);
  --line-light: rgba(250, 247, 240, 0.16);
  --wa: #25d366;
  --wa-deep: #128c4b;
  --tg: #2aabee;
  --tg-deep: #1274a8;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --shell: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 0.35rem;
  --ease: cubic-bezier(0.22, 0.65, 0.25, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--bronze-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--dark :focus-visible,
.site-footer :focus-visible { outline-color: var(--bronze-bright); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--ivory);
  padding: 0.6rem 1.1rem; z-index: 300;
  font-size: 0.9rem; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout shell ---------- */
.shell {
  width: min(var(--shell), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--tint { background: var(--ivory-2); }

/* ---------- Micro label + section heads ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bronze-deep);
}
.section--dark .kicker { color: var(--bronze-bright); }
.kicker::before {
  content: ""; width: 2.4rem; height: 1px;
  background: currentColor; opacity: 0.65;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin: 1.1rem 0 1.2rem;
}
.section-head .lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  max-width: 40rem;
}
.section--dark .section-head .lead { color: var(--muted-light); }
.section-head em, .hero-title em {
  font-style: italic; color: var(--bronze-deep);
}
.section--dark .section-head em, .hero-title em { color: var(--bronze-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: var(--ink-3); }
.btn--ivory { background: var(--ivory); color: var(--ink); }
.btn--ivory:hover { background: #ffffff; }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }
.section--dark .btn--outline { border-color: rgba(250,247,240,0.4); color: var(--ivory); }
.section--dark .btn--outline:hover { border-color: var(--ivory); }
.btn--bronze { background: var(--bronze); color: var(--ink); }
.btn--bronze:hover { background: var(--bronze-bright); }

/* Channel buttons — brand colours, dark text for contrast */
.btn--wa { background: var(--wa); color: #0c1a10; }
.btn--wa:hover { background: #3fe07c; }
.btn--tg { background: var(--tg); color: #081820; }
.btn--tg:hover { background: #4cbdf4; }
.btn--wa svg, .btn--tg svg { flex: none; }

/* Disabled / pending channel (e.g. Telegram awaiting its link) */
.is-pending {
  opacity: 0.45; cursor: not-allowed; pointer-events: none;
  filter: saturate(0.4);
}

.link-quiet {
  font-size: 0.92rem; font-weight: 500;
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 4px; text-decoration-color: var(--line-strong);
}
.link-quiet:hover { color: var(--ink); text-decoration-color: var(--ink); }
.section--dark .link-quiet { color: var(--muted-light); }
.section--dark .link-quiet:hover { color: var(--ivory); text-decoration-color: var(--ivory); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--ivory);
}
.site-header.is-scrolled,
.site-header.header--solid {
  background: rgba(250, 247, 240, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.05rem; gap: 1.5rem;
}
.wordmark {
  display: inline-flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--serif); font-weight: 600;
  font-size: 1.32rem; letter-spacing: 0.015em;
  text-decoration: none; line-height: 1;
}
.wordmark .mark {
  width: 0.62rem; height: 0.62rem; flex: none;
  background: var(--bronze);
  transform: rotate(45deg) translateY(-1px);
  align-self: center;
}
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.4rem); }
.site-nav a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; position: relative; padding-block: 0.3rem;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .nav-cta {
  border: 1px solid currentColor; border-radius: var(--radius);
  padding: 0.5rem 1.05rem; transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink); }

.nav-toggle {
  display: none; width: 2.75rem; height: 2.75rem;
  align-items: center; justify-content: center;
  border: 1px solid currentColor; border-radius: var(--radius);
}
.nav-toggle svg { width: 1.2rem; height: 1.2rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 2.8rem);
  text-decoration: none; padding-block: 0.55rem;
  border-bottom: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a span { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--bronze-bright); }
.mobile-nav .mobile-nav-foot { margin-top: 2.2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted-light); }
.mobile-nav .mobile-nav-foot a { all: unset; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--ink); color: var(--ivory);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(16, 13, 11, 0.97) 0%, rgba(16, 13, 11, 0.9) 30%,
    rgba(16, 13, 11, 0.45) 58%, rgba(16, 13, 11, 0.18) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(7rem, 14vh, 10rem) clamp(4rem, 9vh, 7rem);
  max-width: 44rem;
}
.hero-title {
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  margin: 1.4rem 0 1.5rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(250, 247, 240, 0.82);
  max-width: 34rem; margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.4rem; }
.hero-note { font-size: 0.86rem; color: rgba(250,247,240,0.55); }
.hero-note a { color: rgba(250,247,240,0.8); text-underline-offset: 3px; }

.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line-light);
  background: rgba(16, 13, 11, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  overflow: hidden;
}
.hero-strip ul {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 46s linear infinite;
  padding-block: 0.85rem;
}
.hero-strip li {
  display: inline-flex; align-items: center; gap: 1.6rem;
  padding-inline: 1.6rem;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(250, 247, 240, 0.66);
}
.hero-strip li::after {
  content: ""; width: 0.42rem; height: 0.42rem;
  background: var(--bronze); transform: rotate(45deg); flex: none;
}
@media (prefers-reduced-motion: reduce) { .hero-strip ul { animation: none; } }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
}
.cat-card { position: relative; display: flex; flex-direction: column; text-decoration: none; }
.cat-card:nth-child(1) { grid-column: span 7; }
.cat-card:nth-child(2) { grid-column: span 5; }
.cat-card:nth-child(3) { grid-column: span 5; }
.cat-card:nth-child(4) { grid-column: span 7; }
.cat-card:nth-child(5) { grid-column: span 12; }
.cat-card:nth-child(1) .cat-frame { aspect-ratio: 16 / 11; }
.cat-card:nth-child(2) .cat-frame,
.cat-card:nth-child(3) .cat-frame { aspect-ratio: 4 / 3.4; }
.cat-card:nth-child(4) .cat-frame { aspect-ratio: 16 / 11; }
.cat-card:nth-child(5) .cat-frame { aspect-ratio: 21 / 9; }

.cat-frame {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink-2);
}
.cat-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cat-card:hover .cat-frame img { transform: scale(1.045); }
.cat-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,13,11,0.42), rgba(16,13,11,0) 45%);
  opacity: 0.9; transition: opacity 0.4s var(--ease);
}
.cat-tag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(16, 13, 11, 0.72); color: rgba(250,247,240,0.85);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0.32rem 0.7rem; border-radius: 2rem;
}
.cat-body { padding-top: 1.15rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.cat-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.cat-body h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.cat-num {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--bronze-deep); flex: none;
}
.cat-body p { color: var(--muted); font-size: 0.97rem; max-width: 34rem; }
.cat-link {
  margin-top: auto; padding-top: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
}
.cat-link .arr { color: var(--bronze-deep); transition: transform 0.25s var(--ease); }
.cat-card:hover .cat-link .arr { transform: translateX(5px); }
.cat-link::after {
  content: ""; position: absolute; inset: 0;
}
.cat-footnote {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.95rem; max-width: 46rem;
}

/* ---------- Sell section (dark) ---------- */
.sell-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.sell-sticky { position: sticky; top: 7rem; }
.sell-sticky .actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.sell-note { margin-top: 1.3rem; font-size: 0.88rem; color: var(--muted-light); max-width: 26rem; }
.send-list { counter-reset: send; }
.send-list li {
  counter-increment: send;
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.2rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line-light);
}
.send-list li:first-child { border-top: 1px solid var(--line-light); }
.send-list li::before {
  content: "0" counter(send);
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem; color: var(--bronze-bright);
  line-height: 1.4;
}
.send-list h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; margin-bottom: 0.25rem; }
.send-list p { font-size: 0.93rem; color: var(--muted-light); }

/* ---------- Buy section ---------- */
.buy-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.buy-points { display: grid; gap: 0; }
.buy-points li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  padding-block: 1.15rem; border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.buy-points li:first-child { border-top: 1px solid var(--line); }
.buy-points .dot {
  width: 0.5rem; height: 0.5rem; background: var(--bronze);
  transform: rotate(45deg); margin-top: 0.55rem;
}
.buy-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  display: flex; flex-direction: column; gap: 0.95rem;
  box-shadow: 0 24px 60px -32px rgba(20, 17, 16, 0.35);
}
.buy-panel h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.buy-panel > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.6rem; }
.buy-panel .btn { width: 100%; }
.buy-panel .link-quiet { align-self: center; margin-top: 0.2rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.about-copy p + p { margin-top: 1.2rem; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.fact-list { border-top: 1px solid var(--line); }
.fact-list li {
  display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem;
  padding-block: 0.95rem; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.fact-list dt { color: var(--muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 0.2rem; }
.fact-list dd { margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.4rem;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze-deep); }
.faq-item summary .plus {
  flex: none; width: 1.9rem; height: 1.9rem;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item summary .plus svg { width: 0.8rem; height: 0.8rem; }
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--bronze); border-color: var(--bronze); }
.faq-item .faq-a { padding: 0 3.4rem 1.5rem 0; color: var(--muted); max-width: 44rem; }
.faq-item .faq-a a { color: var(--ink); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.contact-card {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem; text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px); border-color: var(--line-strong);
  box-shadow: 0 18px 44px -26px rgba(20, 17, 16, 0.4);
}
.contact-card .badge {
  flex: none; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center; color: #0c1a10;
}
.contact-card .badge svg { width: 1.35rem; height: 1.35rem; }
.contact-card .badge--wa { background: var(--wa); }
.contact-card .badge--tg { background: var(--tg); color: #081820; }
.contact-card .badge--mail { background: var(--ink); color: var(--ivory); }
.contact-card .badge--tel { background: var(--bronze); color: var(--ink); }
.contact-card h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; }
.contact-card p { font-size: 0.9rem; color: var(--muted); }
.contact-card .arr { margin-left: auto; color: var(--bronze-deep); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--ivory); }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand .wordmark { margin-bottom: 1.1rem; }
.footer-brand p { color: var(--muted-light); font-size: 0.93rem; max-width: 22rem; }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze-bright); margin-bottom: 1.15rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(250,247,240,0.82); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: var(--bronze-bright); }
.footer-legal-entity { font-size: 0.88rem; color: var(--muted-light); display: grid; gap: 0.35rem; }
.footer-legal-entity strong { color: rgba(250,247,240,0.92); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted-light);
}
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted-light); text-decoration: none; }
.footer-bottom a:hover { color: var(--bronze-bright); }

/* ---------- Intent dialog ---------- */
.intent-dialog {
  border: 0; padding: 0; background: transparent;
  max-width: min(34rem, calc(100vw - 2.5rem));
  margin: auto;
}
.intent-dialog::backdrop {
  background: rgba(12, 10, 8, 0.66);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.dialog-card {
  background: var(--paper); border-radius: 0.5rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.55);
}
.dialog-card h3 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 0.5rem; padding-right: 2.6rem; }
.dialog-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }
.dialog-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: background 0.2s var(--ease);
}
.dialog-close:hover { background: var(--ivory-2); }
.dialog-close svg { width: 0.9rem; height: 0.9rem; }
.channel-options { display: grid; gap: 0.8rem; }
.channel-option {
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.2rem; text-decoration: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.channel-option:hover {
  border-color: var(--line-strong); transform: translateY(-2px);
  box-shadow: 0 14px 34px -20px rgba(20, 17, 16, 0.4);
}
.channel-option .badge {
  flex: none; width: 2.7rem; height: 2.7rem; border-radius: 50%;
  display: grid; place-items: center;
}
.channel-option .badge svg { width: 1.25rem; height: 1.25rem; }
.channel-option .badge--wa { background: var(--wa); color: #0c1a10; }
.channel-option .badge--tg { background: var(--tg); color: #081820; }
.channel-option strong { display: block; font-size: 1rem; font-weight: 600; }
.channel-option span { display: block; font-size: 0.84rem; color: var(--muted); }
.channel-option .arr { margin-left: auto; color: var(--bronze-deep); }
.channel-option.is-pending:hover { transform: none; box-shadow: none; }
.dialog-alt { margin-top: 1.3rem; text-align: center; }

/* ---------- Mobile contact bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: none;
  grid-auto-flow: column; grid-auto-columns: 1fr;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding-block: 0.95rem;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
}
.mobile-bar a svg { width: 1.1rem; height: 1.1rem; }
.mobile-bar .mb-wa { background: var(--wa); color: #0c1a10; }
.mobile-bar .mb-tg { background: var(--tg); color: #081820; }
.mobile-bar .mb-tel { background: var(--ink); color: var(--ivory); border-left: 1px solid var(--line-light); }
.mobile-bar .is-pending { display: none; }
body.dialog-open .mobile-bar, body.nav-open .mobile-bar { display: none !important; }

/* ---------- Floating desktop contact ---------- */
.contact-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 100;
  display: flex; flex-direction: column; gap: 0.7rem;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.contact-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.contact-float a {
  width: 3.1rem; height: 3.1rem; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(12, 10, 8, 0.55);
  transition: transform 0.25s var(--ease);
}
.contact-float a:hover { transform: translateY(-3px) scale(1.04); }
.contact-float svg { width: 1.35rem; height: 1.35rem; }
.contact-float .cf-wa { background: var(--wa); color: #0c1a10; }
.contact-float .cf-tg { background: var(--tg); color: #081820; }
.contact-float .is-pending { display: none; }
body.dialog-open .contact-float { opacity: 0; pointer-events: none; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="2"] { transition-delay: 0.12s; }
[data-reveal="3"] { transition-delay: 0.24s; }
[data-reveal="4"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Policy / interior pages ---------- */
.page-hero {
  background: var(--ink); color: var(--ivory);
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-top: 1.1rem; }
.page-hero .lead { color: var(--muted-light); max-width: 42rem; margin-top: 1rem; }
.prose { max-width: 46rem; padding-block: clamp(3rem, 6vw, 5rem); }
.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 2.6rem 0 0.9rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); font-size: 1rem; }
.prose p + p { margin-top: 0.9rem; }
.prose ul { display: grid; gap: 0.5rem; margin: 0.9rem 0; }
.prose ul li { padding-left: 1.4rem; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 0.4rem; height: 0.4rem; background: var(--bronze); transform: rotate(45deg);
}
.prose a { color: var(--ink); font-weight: 500; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .callout {
  border: 1px solid var(--line); border-left: 3px solid var(--bronze);
  background: var(--paper); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin: 1.6rem 0;
}
.prose .callout p { margin: 0; }
.prose address { font-style: normal; color: var(--muted); }
.prose table {
  width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: 0.95rem;
}
.prose th, .prose td {
  text-align: left; padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.prose th { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 62rem) {
  .sell-grid, .buy-grid, .about-grid { grid-template-columns: 1fr; }
  .sell-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 48rem) {
  body { padding-bottom: calc(3.2rem + env(safe-area-inset-bottom, 0)); }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-bar { display: grid; }
  .contact-float { display: none; }
  .cat-card:nth-child(n) { grid-column: span 12; }
  .cat-card:nth-child(n) .cat-frame { aspect-ratio: 16 / 10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-inner { max-width: 100%; }
  .hero-media img { object-position: 62% 50%; }
  .hero-media::after {
    background: linear-gradient(180deg,
      rgba(16,13,11,0.88) 0%, rgba(16,13,11,0.72) 45%, rgba(16,13,11,0.55) 100%);
  }
  .fact-list li { grid-template-columns: 1fr; gap: 0.15rem; }
  .fact-list dt { padding-top: 0; }
}
@media (min-width: 48.01rem) and (max-width: 62rem) {
  .cat-card:nth-child(n) { grid-column: span 6; }
  .cat-card:nth-child(5) { grid-column: span 12; }
  .site-nav { gap: 1.1rem; }
  .site-nav a { font-size: 0.84rem; }
}
