:root{ --shadow-soft: 0 1px 0 var(--line); }

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

.section{
  border-top: 1px solid var(--line);
}
.section + .section{ border-top: 1px solid var(--line); }

/* Oversized Spectral display headlines */
.hero-title{
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
h2{
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: .35em;
}
h2::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:2.4em; height:2px;
  background: var(--accent);
}

.hero-sub{ color: var(--prose); }

/* Mulberry marks for links only */
.article a, .prose a, p a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  transition: border-color .2s ease, color .2s ease;
}
.article a:hover, p a:hover{
  border-bottom-color: var(--accent);
}

/* Big drop cap on the lead article paragraph */
.article > p:first-of-type::first-letter{
  font-family: var(--font-head);
  float: left;
  font-size: 3.6em;
  line-height: .8;
  font-weight: 700;
  padding: .05em .12em 0 0;
  color: var(--accent);
}

/* Multi-column editorial body for long article */
.article p{ color: var(--prose); }

/* Disciplined panels — paper white, hairline framed, minimal shadow */
.card, .feature, .faq-item{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover, .feature:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature .icon{
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--panel));
  border: 1px solid var(--line);
  border-radius: 2px;
}

/* Site header — hairline ruled */
.site-header{
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.1) blur(6px);
}

/* Buttons — restrained letterpress */
.btn{
  border-radius: 2px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-primary{
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
}
.btn-primary:hover{ background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); }

/* Badges & facts — editorial captions */
.badge{
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72em;
}
.fact{
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--panel);
}
.fact b{ color: var(--accent); font-family: var(--font-head); }

/* Catalog tiles — framed print plates */
.tile{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.tile:hover{ border-color: var(--accent); transform: translateY(-2px); }
.tile .gp{ color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; font-size: .7em; }
.tile .nm{ color: var(--text); font-family: var(--font-head); }
.tile.noimg{
  background:
    linear-gradient(var(--panel), var(--panel)),
    radial-gradient(80% 60% at 50% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent);
}

/* Tabs — underlined editorial nav */
.tab{
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--text-2);
  letter-spacing: .03em;
  transition: color .2s ease, border-color .2s ease;
}
.tab:hover{ color: var(--text); }
.tab.active{ color: var(--accent); border-bottom-color: var(--accent); }

/* FAQ */
.faq-q{ font-family: var(--font-head); font-weight: 600; color: var(--text); }
.faq-a{ color: var(--prose); }
.faq-item:hover{ border-color: var(--accent); }

/* Tables — ledger ruled */
.table{ border: 1px solid var(--line); }
.table th{
  background: var(--panel-2);
  color: var(--text);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78em;
}
.table td{ border-top: 1px solid var(--line); color: var(--prose); }