:root{
  --shadow-soft: 0 1px 0 var(--line), 0 18px 40px rgba(0,0,0,.45);
}

body{
  background:
    radial-gradient(120% 90% at 50% -10%, color-mix(in srgb, var(--panel) 55%, transparent), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* Headings — Bodoni display, ivory, calm and large */
.hero-title,
h1, h2, h3,
.article h2,
.feature h3{
  color: var(--text);
  font-weight: 600;
  letter-spacing: .03em;
  font-style: normal;
}

.hero-title{
  letter-spacing: .04em;
  line-height: 1.05;
}

.hero-sub,
.muted,
.article p{
  color: var(--prose);
}

/* Section divider hairlines — a single thin 24k rule */
.section{
  position: relative;
}
.section + .section::before{
  content:"";
  position:absolute;
  top:0; left:50%;
  transform: translateX(-50%);
  width: 64px; height: 1px;
  background: var(--accent);
  opacity: .8;
}

/* Header — onyx with a brown-gold hairline base */
.site-header{
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(120%) blur(6px);
}

/* Cards & features — charcoal panels, hairline borders, slow lift */
.card,
.feature,
.faq-item{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .5s ease, border-color .5s ease, background .5s ease;
}
.card:hover,
.feature:hover{
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--panel-2);
}

/* Feature icon — thin gold framed plate */
.feature .icon{
  color: var(--accent);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: color .5s ease, border-color .5s ease;
}
.feature:hover .icon{
  border-color: var(--accent);
}

/* Buttons — gold-outline CTA, no glow */
.btn{
  border-radius: var(--radius);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .3s ease;
}
.btn-primary{
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
}
.btn-primary:hover{
  background: transparent;
  color: var(--accent);
}
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
}

/* Badge — quiet gold marker */
.badge{
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--accent);
  border-radius: var(--radius);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Facts — hairline separated, gold numerals */
.fact{
  border-left: 1px solid var(--line);
}
.fact b{
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .02em;
}

/* Catalog tiles — onyx plates with gold reveal */
.tile{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s ease, border-color .5s ease;
}
.tile:hover{
  transform: translateY(-4px);
  border-color: var(--accent);
}
.tile .gp{ color: var(--accent); letter-spacing: .08em; }
.tile .nm{ color: var(--text); letter-spacing: .02em; }
.tile.noimg{
  background:
    linear-gradient(180deg, var(--panel-2), var(--panel));
}

/* Tabs — gold underline for active */
.tab{
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-2);
  transition: color .4s ease, border-color .4s ease;
}
.tab:hover{ color: var(--text); }
.tab.active{
  color: var(--accent);
  border-color: var(--accent);
}

/* Tables & FAQ accents */
.table th{
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  letter-spacing: .04em;
}
.table td{ border-bottom: 1px solid var(--line); }
.faq-q{ color: var(--text); }
.faq-q:hover{ color: var(--accent); }

/* Slow fade-in reveal — no blur, opacity only */
.card,
.feature,
.tile,
.article h2{
  animation: vc-fade 1s ease both;
}
@keyframes vc-fade{
  from{ opacity:.9; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Footer hairline */
.site-footer{
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}