/* ==========================================================================
   Space of Antiques — components & page layouts
   Loaded after styles.css. Every class is namespaced with `soa-`.
   ========================================================================== */

/* ── Layout wrappers ── */
.soa-wrap        { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.soa-wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 48px; }
.soa-section     { display: block; }

/* ── Utility strip (top bar) ── */
.soa-util {
  border-bottom: 1px solid var(--soa-hair);
  font-family: var(--soa-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soa-muted);
}
.soa-util .soa-wrap { display: flex; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.soa-util-right { display: flex; gap: 28px; }

/* ── Header ── */
.soa-hdr { border-bottom: 1px solid var(--soa-line); position: sticky; top: 0; z-index: 50; background: var(--soa-site-bg); transition: box-shadow .25s ease; }
.soa-hdr.is-stuck { box-shadow: 0 6px 24px rgba(26, 22, 18, 0.10); }
.soa-hdr .soa-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding-top: 26px; padding-bottom: 26px; }
.soa-nav { display: flex; gap: 30px; font-family: var(--soa-serif); font-size: 16px; letter-spacing: 0.01em; }
.soa-nav a { position: relative; padding-bottom: 3px; color: var(--soa-ink); transition: color .18s; }
.soa-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--soa-ink); transition: right .25s ease; }
.soa-nav a:hover::after, .soa-nav a.is-active::after { right: 0; }
.soa-nav a.is-active { font-style: italic; }
.soa-utilr { display: flex; gap: 18px; justify-content: flex-end; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.soa-utilr a { transition: color .18s; }
.soa-utilr a:hover, .soa-nav a:hover { color: var(--soa-oxblood); }
.soa-utilr a.is-active { color: var(--soa-oxblood); }

/* Hamburger (mobile only) */
.soa-burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; }
.soa-burger span { display: block; height: 1.5px; width: 100%; background: var(--soa-ink); transition: transform .25s, opacity .2s; }
.soa-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.soa-burger.is-open span:nth-child(2) { opacity: 0; }
.soa-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drop nav */
.soa-mobile-nav { display: none; border-bottom: 1px solid var(--soa-line); }
.soa-mobile-nav.is-open { display: block; }
.soa-mobile-nav a {
  display: block; padding: 16px 48px;
  font-family: var(--soa-serif); font-size: 20px;
  border-top: 1px solid var(--soa-hair); color: var(--soa-ink);
}
.soa-mobile-nav a:first-child { border-top: none; }
.soa-mobile-nav a.is-active { font-style: italic; color: var(--soa-oxblood); }

/* ── Wordmark / logo ── */
.soa-wordmark { display: inline-flex; align-items: center; gap: 12px; color: var(--soa-ink); }
.soa-wordmark .soa-mark { flex-shrink: 0; }
/* Uploaded logo images (light/dark), swapped by theme.
   Scoped under .soa-wordmark (specificity 0,2,0) so it beats WooCommerce's
   `.woocommerce img { height:auto; max-width:100% }` on shop/cart pages. */
.soa-wordmark .soa-logo { display: block; height: 50px; width: auto; max-width: 280px; object-fit: contain; }
.soa-wordmark--sm .soa-logo { height: 40px; }
/* Theme toggles must out-specify `.soa-wordmark .soa-logo { display:block }` above,
   so they are scoped under .soa-wordmark too (otherwise both logos render at once). */
.soa-wordmark .soa-logo--dark { display: none; }
:root[data-theme="dark"] .soa-wordmark .soa-logo--light { display: none; }
:root[data-theme="dark"] .soa-wordmark .soa-logo--dark { display: block; }
.soa-wordmark-text { font-family: var(--soa-serif); font-weight: 500; line-height: 0.95; font-size: 18px; letter-spacing: 0.02em; }
.soa-wordmark-text > span { display: block; }
.soa-wordmark-text .soa-wordmark-of { font-style: italic; font-weight: 400; font-size: 14px; opacity: 0.85; padding-left: 4px; }
.soa-wordmark--sm .soa-wordmark-text { font-size: 16px; }
.soa-wordmark--sm .soa-wordmark-of { font-size: 12.5px; }

/* ── Buttons & inline links ── */
.soa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 28px; transition: all .2s; cursor: pointer; border: 1px solid var(--soa-line);
}
.soa-btn--primary { background: var(--soa-ink); color: var(--soa-on-ink); }
.soa-btn--primary:hover { background: var(--soa-oxblood); border-color: var(--soa-oxblood); color: #fff; }
.soa-btn--ghost { background: transparent; color: var(--soa-ink); }
.soa-btn--ghost:hover { background: var(--soa-ink); color: var(--soa-on-ink); }
.soa-btn--block { width: 100%; }

.soa-arrow {
  display: inline-block;
  font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--soa-line); padding-bottom: 2px;
  transition: color .18s, border-color .18s; cursor: pointer;
}
.soa-arrow:hover { color: var(--soa-oxblood); border-color: var(--soa-oxblood); }
.soa-arrow--bare { border-bottom: none; padding-bottom: 0; }
.soa-arrow--muted { color: var(--soa-muted); }
.soa-arrow--accent { color: var(--soa-oxblood); }

/* ── Object image frame + product card ── */
.soa-objimg { background: #000; position: relative; overflow: hidden; }
.soa-objimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.soa-card:hover .soa-objimg img { transform: scale(1.045); }
.soa-inv-tag { position: absolute; top: 14px; left: 14px; font-family: var(--soa-mono); font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); }

.soa-card { display: flex; flex-direction: column; }
.soa-card-era { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 9px; }
.soa-card-title { font-family: var(--soa-serif); font-weight: 400; font-size: 23px; line-height: 1.12; letter-spacing: -0.005em; margin: 0 0 6px; }
.soa-card-sub { font-family: var(--soa-serif); font-style: italic; font-size: 15px; color: var(--soa-muted); margin-bottom: 16px; }
.soa-card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--soa-hair); padding-top: 14px; }
.soa-card-price { font-family: var(--soa-serif); font-size: 20px; }

/* ── Footer ── */
.soa-footer { border-top: 1px solid var(--soa-hair); padding: 75px 0 65px; background: var(--soa-site-bg-2); }
.soa-footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.soa-footer-blurb { font-family: var(--soa-serif); font-size: 15px; line-height: 1.55; margin-top: 20px; color: var(--soa-muted); max-width: 280px; }
.soa-footer h5 { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soa-muted); margin: 0 0 18px; font-weight: 400; }
.soa-footer-links { display: flex; flex-direction: column; gap: 10px; font-family: var(--soa-serif); font-size: 16px; }
.soa-footer-links a { transition: color .18s; }
.soa-footer-links a:hover { color: var(--soa-oxblood); }
.soa-footer-legal { border-top: 1px solid var(--soa-hair); padding-top: 20px; display: flex; justify-content: space-between; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }

/* ── Newsletter ── */
.soa-newsletter { border-top: 1px solid var(--soa-hair); background: var(--soa-site-bg); padding: 80px 0; }
.soa-newsletter-inner { text-align: center; }
.soa-newsletter h2 { font-family: var(--soa-serif); font-weight: 400; font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 16px; }
.soa-newsletter p { font-family: var(--soa-serif); font-size: 18px; line-height: 1.5; color: var(--soa-muted); max-width: 540px; margin: 0 auto 36px; }
.soa-newsletter-form { display: flex; max-width: 460px; margin: 0 auto; border-bottom: 1px solid var(--soa-line); }
.soa-newsletter-form input { flex: 1; font-family: var(--soa-serif); font-size: 18px; background: transparent; border: none; padding: 12px 0; color: var(--soa-ink); }
.soa-newsletter-form input:focus { outline: none; }

/* ── Page mast (interior page header) ── */
.soa-mast { padding: 72px 48px 120px; position: relative; }
/* Full-width tinted band behind the page-title / hero, while the content stays
   centred in the 1280px column. The ::before breaks out to the viewport edges. */
.soa-mast::before,
.soa-hero::before,
.soa-acct-mast::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--soa-site-bg-2);
}
.soa-mast-grid { display: grid; gap: 64px; align-items: end; }
.soa-mast-grid.has-lede { grid-template-columns: 1.4fr 1fr; }
.soa-mast-title { font-family: var(--soa-serif); font-weight: 400; font-size: 76px; line-height: 0.98; letter-spacing: -0.02em; margin: 0; }
.soa-mast-lede { font-family: var(--soa-serif); font-size: 19px; line-height: 1.55; color: var(--soa-muted); margin: 0 0 8px; }

/* ── Section headings (shared) ── */
.soa-h2 { font-family: var(--soa-serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; }

/* ── Forms ── */
.soa-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.soa-field label { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); }
.soa-field input, .soa-field textarea, .soa-field select { font-family: var(--soa-serif); font-size: 18px; color: var(--soa-ink); background: transparent; border: none; border-bottom: 1px solid var(--soa-hair-strong); padding: 10px 0; transition: border-color .2s; }
.soa-field input:focus, .soa-field textarea:focus, .soa-field select:focus { outline: none; border-color: var(--soa-oxblood); }
.soa-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.soa-field input::placeholder, .soa-field textarea::placeholder { color: var(--soa-muted-2); font-style: italic; }

/* ── Enquiry modal (product page) ── */
.soa-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.soa-modal[hidden] { display: none; }
.soa-modal-overlay { position: absolute; inset: 0; background: rgba(10, 8, 6, 0.55); }
.soa-modal-panel { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto; background: var(--soa-site-bg); border: 1px solid var(--soa-hair); border-radius: 6px; padding: 42px 38px 34px; box-shadow: 0 24px 70px rgba(10, 8, 6, 0.4); }
.soa-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: none; background: transparent; color: var(--soa-muted); cursor: pointer; border-radius: 50%; transition: background .15s, color .15s; }
.soa-modal-close:hover { background: var(--soa-site-bg-2); color: var(--soa-ink); }
.soa-modal-title { font-family: var(--soa-serif); font-weight: 400; font-size: 27px; line-height: 1.15; margin: 0 0 6px; color: var(--soa-ink); }
.soa-modal-sub { font-family: var(--soa-serif); font-size: 16px; color: var(--soa-muted); margin: 0 0 26px; }
.soa-modal-form .soa-field { margin-bottom: 18px; }
.soa-modal-form .soa-btn { width: 100%; margin-top: 4px; }
.soa-modal-form [data-enquire-error] { color: var(--soa-oxblood); font-style: normal; }
.soa-form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ==========================================================================
   HOME
   ========================================================================== */
.soa-hero { padding: 80px 48px 96px; position: relative; }
.soa-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.soa-hero-eyebrow { margin-bottom: 28px; }
.soa-hero h1 { font-family: var(--soa-serif); font-weight: 400; font-size: 66px; line-height: 1.02; letter-spacing: -0.018em; margin: 0 0 6px; }
.soa-hero-sub { font-family: var(--soa-serif); font-style: italic; font-size: 22px; color: var(--soa-muted); margin: 18px 0 34px; line-height: 1.4; }
.soa-hero-lead { font-family: var(--soa-serif); font-size: 19px; line-height: 1.55; max-width: 520px; margin: 0 0 40px; }
.soa-hero-cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.soa-hero-figure { margin: 0; position: relative; min-width: 0; }
.soa-frame { position: absolute; top: -30px; left: -30px; right: -30px; bottom: -30px; border: 1px solid var(--soa-hair); pointer-events: none; background: #fff; }
.soa-hero-figure figcaption { margin-top: 28px; }
.soa-hero-cap-meta { margin-bottom: 10px; }
.soa-hero-cap-title { font-family: var(--soa-serif); font-size: 26px; font-style: italic; line-height: 1.2; margin-bottom: 14px; }
.soa-hero-cap-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding-top: 14px; border-top: 1px solid var(--soa-hair); }
.soa-hero-cap-price { font-family: var(--soa-serif); font-size: 20px; }

/* Hero product carousel (one specimen at a time, looped) */
.soa-hero-carousel { position: relative; overflow: hidden; }
.soa-hero-track { display: flex; transition: transform .55s cubic-bezier(.2, .7, .3, 1); }
.soa-hero-slide { flex: 0 0 100%; min-width: 0; }
.soa-hero-nav {
  position: absolute; top: 280px; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--soa-site-bg); color: var(--soa-ink);
  border: 1px solid var(--soa-hair-strong);
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.14);
  opacity: 0; pointer-events: none; z-index: 3;
  transition: opacity .25s ease, background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.soa-hero-nav--prev { left: 14px; }
.soa-hero-nav--next { right: 14px; }
.soa-hero-nav svg { width: 14px; height: 14px; display: block; }
.soa-hero-nav:hover { background: var(--soa-ink); color: var(--soa-on-ink); border-color: var(--soa-ink); box-shadow: 0 6px 20px rgba(26, 22, 18, 0.22); }
.soa-hero-carousel:hover .soa-hero-nav { opacity: 1; pointer-events: auto; }
.soa-hero-dots { position: absolute; top: 530px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; z-index: 3; }
.soa-hero-dot { width: 7px; height: 7px; padding: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.5); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); transition: background .2s, transform .2s; }
.soa-hero-dot:hover { background: rgba(255, 255, 255, 0.85); }
.soa-hero-dot.is-on { background: #fff; transform: scale(1.3); }

/* ── Mobile bottom tab bar (phones / small tablets) ── */
.soa-tabbar { display: none; }
@media (max-width: 860px) {
  .soa-tabbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--soa-site-bg);
    border-top: 1px solid var(--soa-line);
    box-shadow: 0 -6px 24px rgba(26, 22, 18, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .soa-tab {
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 4px 10px;
    font-family: var(--soa-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--soa-muted); transition: color .18s;
  }
  .soa-tab-ico { width: 22px; height: 22px; display: block; }
  .soa-tab:active, .soa-tab.is-active { color: var(--soa-ink); }
  .soa-tab.is-active::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 26px; height: 2px; background: var(--soa-oxblood);
  }
  /* keep page content clear of the fixed bar */
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
}

/* ── Slide-in drawer (left → right), opened from the bottom bar ── */
.soa-drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.soa-drawer.is-open { visibility: visible; }
.soa-drawer-overlay { position: absolute; inset: 0; background: rgba(26, 22, 18, 0.5); opacity: 0; transition: opacity .3s ease; }
.soa-drawer.is-open .soa-drawer-overlay { opacity: 1; }
.soa-drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  display: flex; flex-direction: column;
  padding: 26px 30px calc(28px + env(safe-area-inset-bottom));
  background: var(--soa-site-bg);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 8px 0 44px rgba(26, 22, 18, 0.20);
}
.soa-drawer.is-open .soa-drawer-panel { transform: translateX(0); }
.soa-drawer-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.soa-drawer-x { width: 38px; height: 38px; border: 1px solid var(--soa-hair-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--soa-ink); flex-shrink: 0; transition: background .18s, color .18s, border-color .18s; }
.soa-drawer-x:hover { background: var(--soa-ink); color: var(--soa-on-ink); border-color: var(--soa-ink); }
.soa-drawer-x svg { width: 14px; height: 14px; display: block; }
.soa-drawer-nav { display: flex; flex-direction: column; border-top: 1px solid var(--soa-hair); }
.soa-drawer-nav a { font-family: var(--soa-serif); font-size: 23px; padding: 14px 0; border-bottom: 1px solid var(--soa-hair); color: var(--soa-ink); transition: color .18s; }
.soa-drawer-nav a:hover, .soa-drawer-nav a.is-active { color: var(--soa-oxblood); }
.soa-drawer-nav a.is-active { font-style: italic; }
.soa-drawer-contact { margin-top: 28px; display: flex; flex-direction: column; gap: 7px; }
.soa-drawer-contact .soa-kicker { margin-bottom: 8px; }
.soa-drawer-contact p { font-family: var(--soa-serif); font-size: 16px; line-height: 1.5; color: var(--soa-muted); margin: 0; }
.soa-drawer-contact a { font-family: var(--soa-serif); font-size: 16px; line-height: 1.5; color: var(--soa-oxblood); }
.soa-drawer-foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 6px; font-family: var(--soa-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-noscroll { overflow: hidden; }

/* ── Theme toggle (light / dark) ── */
.soa-utilr { align-items: center; }
.soa-theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--soa-ink); transition: color .18s; }
.soa-theme-toggle:hover { color: var(--soa-oxblood); }
.soa-theme-toggle svg { width: 17px; height: 17px; display: block; }
.soa-theme-toggle .soa-theme-ico-sun { display: none; }
:root[data-theme="dark"] .soa-theme-toggle .soa-theme-ico-moon { display: none; }
:root[data-theme="dark"] .soa-theme-toggle .soa-theme-ico-sun { display: block; }
/* Fixed, prominent light/dark switch pinned to the left edge */
.soa-theme-fab {
  position: fixed; left: 22px; bottom: 26px;
  z-index: 45; width: 48px; height: 48px; border-radius: 50%;
  background: var(--soa-ink); color: var(--soa-on-ink);
  border: 1px solid var(--soa-ink);
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.24);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.soa-theme-fab svg { width: 21px; height: 21px; }
.soa-theme-fab:hover { background: var(--soa-oxblood); border-color: var(--soa-oxblood); color: #fff; transform: scale(1.07); box-shadow: 0 10px 30px rgba(26, 22, 18, 0.3); }
:root[data-theme="dark"] .soa-theme-fab { background: var(--soa-on-ink); color: var(--soa-ink); border-color: var(--soa-on-ink); }
:root[data-theme="dark"] .soa-theme-fab:hover { background: var(--soa-oxblood); border-color: var(--soa-oxblood); color: #fff; }
/* Pulse to draw attention until the visitor first uses it (JS removes .is-pulsing on first click) */
@keyframes soaThemePulse {
  0%   { box-shadow: 0 8px 24px rgba(26, 22, 18, 0.24), 0 0 0 0 rgba(138, 61, 46, 0.55); }
  70%  { box-shadow: 0 8px 24px rgba(26, 22, 18, 0.24), 0 0 0 16px rgba(138, 61, 46, 0); }
  100% { box-shadow: 0 8px 24px rgba(26, 22, 18, 0.24), 0 0 0 0 rgba(138, 61, 46, 0); }
}
.soa-theme-fab.is-pulsing { animation: soaThemePulse 1.9s ease-out infinite; }
.soa-theme-fab.is-pulsing:hover { animation: none; }
@media (prefers-reduced-motion: reduce) { .soa-theme-fab.is-pulsing { animation: none; } }
@media (max-width: 860px) { .soa-theme-fab { bottom: 88px; } }
@media (max-width: 720px) { .soa-theme-fab { left: 16px; width: 44px; height: 44px; } }
.soa-drawer-head-actions { display: flex; align-items: center; gap: 8px; }

/* ── Cart / one-step checkout ── */
.soa-checkout { padding: 56px 48px 96px; }
.soa-checkout-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 72px; align-items: start; }
.soa-co-block { padding: 34px 0; border-top: 1px solid var(--soa-line); }
.soa-co-block:first-child { border-top: none; padding-top: 0; }
.soa-co-block > h2 { font-family: var(--soa-serif); font-weight: 400; font-size: 30px; letter-spacing: -0.01em; margin: 0 0 22px; }
.soa-co-block > h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin: 0 0 22px; display: flex; align-items: baseline; gap: 12px; }
.soa-co-num { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--soa-oxblood); }

.soa-cart-row { display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: start; padding: 24px 0; border-top: 1px solid var(--soa-hair); }
.soa-cart-row:first-child { border-top: none; padding-top: 0; }
.soa-cart-row .soa-objimg { aspect-ratio: 4 / 5; }
.soa-cart-body { display: flex; flex-direction: column; gap: 16px; }
.soa-cart-id { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 6px; }
.soa-cart-title { font-family: var(--soa-serif); font-weight: 400; font-size: 21px; line-height: 1.15; margin: 0 0 4px; }
.soa-cart-sub { font-family: var(--soa-serif); font-style: italic; font-size: 14px; color: var(--soa-muted); }
.soa-cart-controls { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.soa-cart-line { font-family: var(--soa-serif); font-size: 21px; margin-left: auto; }
.soa-cart-remove { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soa-muted); transition: color .15s; }
.soa-cart-remove:hover { color: var(--soa-oxblood); }
.soa-cart-empty { padding: 30px 0; font-family: var(--soa-serif); font-style: italic; font-size: 20px; color: var(--soa-muted); }

/* delivery / payment radios */
.soa-radio { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 1px solid var(--soa-hair); cursor: pointer; }
.soa-radio:first-child { border-top: none; }
.soa-radio input { position: absolute; opacity: 0; pointer-events: none; }
.soa-radio-mark { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--soa-hair-strong); flex-shrink: 0; margin-top: 3px; position: relative; transition: border-color .15s; }
.soa-radio input:checked ~ .soa-radio-mark { border-color: var(--soa-oxblood); }
.soa-radio input:checked ~ .soa-radio-mark::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--soa-oxblood); }
.soa-radio-body { flex: 1; display: flex; justify-content: space-between; gap: 16px; }
.soa-radio-title { display: block; font-family: var(--soa-serif); font-size: 18px; }
.soa-radio-sub { display: block; font-family: var(--soa-serif); font-style: italic; font-size: 13.5px; color: var(--soa-muted); margin-top: 3px; }
.soa-radio-price { font-family: var(--soa-serif); font-size: 16px; white-space: nowrap; }

/* order summary */
.soa-summary { position: sticky; top: 112px; border: 1px solid var(--soa-line); background: var(--soa-site-bg-3); padding: 32px 30px; }
.soa-summary h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 24px; margin: 0 0 22px; }
.soa-summary-mini { display: flex; flex-direction: column; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid var(--soa-hair); margin-bottom: 20px; }
.soa-summary-mini-row { display: flex; justify-content: space-between; gap: 16px; font-family: var(--soa-serif); font-size: 15px; }
.soa-summary-mini-row span:first-child { color: var(--soa-muted); }
.soa-promo { display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--soa-hair-strong); margin-bottom: 22px; }
.soa-promo input { flex: 1; font-family: var(--soa-serif); font-size: 15px; background: transparent; border: none; padding: 10px 0; color: var(--soa-ink); }
.soa-promo input::placeholder { color: var(--soa-muted-2); font-style: italic; }
.soa-promo input:focus { outline: none; }
.soa-promo button { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soa-oxblood); }
.soa-summary-row { display: flex; justify-content: space-between; gap: 16px; font-family: var(--soa-serif); font-size: 16px; padding: 7px 0; }
.soa-summary-row span:first-child { color: var(--soa-muted); }
.soa-summary-total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-top: 1px solid var(--soa-line); margin-top: 14px; padding-top: 18px; }
.soa-summary-total-label { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); }
.soa-summary-total-val { font-family: var(--soa-serif); font-size: 30px; }
.soa-summary .soa-btn { margin-top: 24px; }
.soa-summary-note { font-family: var(--soa-serif); font-style: italic; font-size: 13px; color: var(--soa-muted); text-align: center; margin-top: 14px; }
.soa-summary-assure { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--soa-hair); display: flex; flex-direction: column; gap: 11px; }
.soa-summary-assure div { display: flex; gap: 10px; font-family: var(--soa-serif); font-size: 14px; color: var(--soa-muted); }
.soa-summary-assure .soa-assure-mark { color: var(--soa-oxblood); flex-shrink: 0; }

.soa-co-sent { text-align: center; max-width: 640px; margin: 0 auto; padding: 56px 0 40px; }
.soa-co-sent h2 { font-family: var(--soa-serif); font-weight: 400; font-size: 42px; line-height: 1.08; margin: 16px 0; letter-spacing: -0.01em; }
.soa-co-sent p { font-family: var(--soa-serif); font-size: 18px; line-height: 1.55; color: var(--soa-muted); margin: 0 0 30px; }
.soa-co-sent-num { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-oxblood); }

@media (max-width: 960px) {
  .soa-checkout-grid { grid-template-columns: 1fr; gap: 8px; }
  .soa-summary { position: static; margin-top: 36px; }
}

.soa-periodbar { padding: 56px 48px 20px; }
.soa-periodbar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
.soa-periodbar-head h2 { font-size: 42px; }
/* Carousel: a fixed "All Periods" cell + a horizontally-scrollable strip of eras,
   driven by neat hover arrows. */
.soa-period-carousel { position: relative; display: flex; align-items: stretch; border: 1px solid var(--soa-hair); }
.soa-period-all { flex: 0 0 auto; border-right: 1px solid var(--soa-hair); }   /* pinned — never scrolls */
.soa-period-viewport { position: relative; flex: 1 1 auto; min-width: 0; }
.soa-period-list {
  display: flex; flex-wrap: nowrap;
  overflow-x: auto; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.soa-period-list::-webkit-scrollbar { display: none; }
.soa-period-item { flex: 1 0 auto; min-width: 150px; padding: 18px 14px; text-align: left; border-left: 1px solid var(--soa-hair); transition: background .2s; }
.soa-period-item:first-child { border-left: none; }
.soa-period-item:hover { background: var(--soa-site-bg-3); }
.soa-period-item .soa-period-label { display: block; white-space: nowrap; font-family: var(--soa-serif); font-size: 16px; line-height: 1.12; }
.soa-period-item .soa-period-label.is-all { font-style: italic; }
.soa-period-item .soa-period-range { display: block; white-space: nowrap; font-family: var(--soa-mono); font-size: 8.5px; letter-spacing: 0.06em; margin-top: 4px; color: var(--soa-muted); }

/* Hover arrows */
.soa-period-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--soa-site-bg); color: var(--soa-ink);
  border: 1px solid var(--soa-hair-strong);
  box-shadow: 0 4px 14px rgba(26, 22, 18, 0.10);
  opacity: 0; pointer-events: none; z-index: 3;
  transition: opacity .25s ease, background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.soa-period-nav--prev { left: 8px; }
.soa-period-nav--next { right: 8px; }
.soa-period-nav svg { width: 13px; height: 13px; display: block; }
.soa-period-nav:hover { background: var(--soa-ink); color: var(--soa-on-ink); border-color: var(--soa-ink); box-shadow: 0 6px 18px rgba(26, 22, 18, 0.18); }
/* visible only on carousel hover (or keyboard focus) and only when it can scroll that way */
.soa-period-carousel:hover .soa-period-nav.is-active,
.soa-period-nav.is-active:focus-visible { opacity: 1; pointer-events: auto; }

.soa-feat { padding: 40px 48px 96px; }
.soa-feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; padding: 56px 0; border-top: 1px solid var(--soa-hair); align-items: center; }
.soa-feat-row:first-child { border-top: none; }
.soa-feat-row.is-reverse .soa-feat-media { order: 1; }
.soa-feat-row.is-reverse .soa-feat-body { order: 0; }
.soa-feat-media { display: block; }
/* Tall portrait pieces: show the whole object (black bars blend with the vitrine bg) */
.soa-feat-media .soa-objimg img { object-fit: contain; }
.soa-feat-eyebrow { margin-bottom: 14px; }
.soa-feat-row h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 38px; line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 20px; }
.soa-feat-blurb { font-family: var(--soa-serif); font-size: 18px; line-height: 1.55; margin: 0 0 28px; max-width: 460px; }
.soa-feat-spec { margin-bottom: 24px; }
.soa-feat-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 16px; border-top: 1px solid var(--soa-hair); }
.soa-feat-price { font-family: var(--soa-serif); font-size: 22px; }
.soa-feat-more { text-align: center; padding-top: 24px; }

.soa-cats { background: var(--soa-site-bg-2); padding: 90px 0; }
.soa-cats h2 { font-size: 48px; line-height: 1; letter-spacing: -0.015em; margin: 0 0 44px; }
.soa-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--soa-hair); }
.soa-cat-cell { background: var(--soa-site-bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; min-height: 150px; transition: background .2s; }
.soa-cat-cell:hover { background: var(--soa-site-bg-3); }
.soa-cat-cell-top { display: flex; justify-content: space-between; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soa-muted); }
.soa-cat-cell h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 30px; line-height: 1.05; margin: 6px 0 0; letter-spacing: -0.01em; }
.soa-cat-cell-enter { margin-top: auto; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-oxblood); }

.soa-founder { border-top: 1px solid var(--soa-hair); padding: 96px 48px; background: var(--soa-site-bg-2); }
.soa-founder-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.soa-founder blockquote { font-family: var(--soa-serif); font-style: italic; font-size: 28px; line-height: 1.45; margin: 0 0 28px; }
.soa-founder cite { font-family: var(--soa-serif); font-size: 16px; font-style: normal; }

/* ==========================================================================
   SHOP
   ========================================================================== */
.soa-shop { padding: 0 48px 96px; }
.soa-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.soa-shop-aside { position: sticky; top: 24px; padding-top: 48px; }
.soa-filter-toggle { display: none; }
.soa-filter-head { display: none; }
@keyframes soaFilterIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
/* Keep the overlay below the WP admin bar for logged-in editors */
@media (max-width: 960px) { .admin-bar .soa-shop-aside.is-open { top: 46px; } }
@media (max-width: 960px) and (min-width: 783px) { .admin-bar .soa-shop-aside.is-open { top: 32px; } }
.soa-filter-group { margin-bottom: 40px; }
.soa-filter-group h5 { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soa-muted); margin: 0 0 6px; font-weight: 400; }
.soa-filter-item { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 9px 0; cursor: pointer; font-family: var(--soa-serif); font-size: 16px; color: var(--soa-muted); text-align: left; width: 100%; transition: color .15s; }
.soa-filter-item:hover { color: var(--soa-ink); }
.soa-filter-item.is-on { color: var(--soa-ink); }
.soa-filter-item.is-on .soa-filter-mark { background: var(--soa-oxblood); }
.soa-filter-label { display: flex; align-items: center; gap: 12px; }
.soa-filter-label .is-all { font-style: italic; }
.soa-filter-cnt { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--soa-muted-2); }
.soa-filter-mark { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--soa-line); flex-shrink: 0; align-self: center; transition: background .15s; }
.soa-filter-clear { border: none; color: var(--soa-oxblood); }

.soa-shop-main { padding-top: 48px; }
.soa-shop-bar { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--soa-line); padding-bottom: 18px; margin-bottom: 8px; flex-wrap: wrap; gap: 12px; }
.soa-shop-count { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); }
.soa-sort { display: flex; align-items: center; gap: 10px; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); }
/* ── Custom select ── */
.soa-select { position: relative; }
.soa-select-trigger {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--soa-serif); font-size: 16px; letter-spacing: 0; text-transform: none;
  color: var(--soa-ink); padding: 5px 0;
  border-bottom: 1px solid var(--soa-hair-strong);
  cursor: pointer; transition: border-color .18s;
}
.soa-select-trigger:hover { border-color: var(--soa-ink); }
.soa-select.is-open .soa-select-trigger { border-color: var(--soa-oxblood); }
.soa-select-caret { width: 11px; height: 11px; flex-shrink: 0; color: var(--soa-muted); transition: transform .22s ease; }
.soa-select.is-open .soa-select-caret { transform: rotate(180deg); }
.soa-select-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 40;
  min-width: 230px; margin: 0; padding: 6px; list-style: none;
  background: var(--soa-site-bg); border: 1px solid var(--soa-line);
  box-shadow: 0 14px 36px rgba(26, 22, 18, 0.16);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.soa-select.is-open .soa-select-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.soa-select-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--soa-serif); font-size: 16px; letter-spacing: 0; text-transform: none;
  color: var(--soa-muted); padding: 10px 14px; cursor: pointer;
  transition: background .15s, color .15s;
}
.soa-select-opt:hover { background: var(--soa-site-bg-3); color: var(--soa-ink); }
.soa-select-opt.is-on { color: var(--soa-ink); }
.soa-select-opt.is-on::after { content: '\2713'; font-family: var(--soa-mono); font-size: 12px; color: var(--soa-oxblood); }
.soa-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 36px; padding-top: 40px; }
.soa-result-grid .soa-objimg { aspect-ratio: 4 / 5; margin-bottom: 20px; }
.soa-empty { padding: 80px 0; text-align: center; font-family: var(--soa-serif); font-style: italic; font-size: 22px; color: var(--soa-muted); }
.soa-loadmore-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 56px; }
.soa-loadmore { min-width: 220px; text-align: center; }
.soa-loadmore-page { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }

/* ==========================================================================
   PRODUCT
   ========================================================================== */
.soa-crumb { padding: 24px 48px 0; }
.soa-crumb-inner { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-crumb-inner a { color: var(--soa-muted); }
.soa-crumb-inner .is-current { color: var(--soa-ink); }

.soa-prod { padding: 40px 48px 88px; }
.soa-prod-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
.soa-prod-media { position: relative; }
/* Stage = vertical thumbnail rail (left) + main image */
.soa-prod-stage { position: relative; }
.soa-prod-stage.has-thumbs { padding-left: 115px; }
.soa-prod-main-wrap { position: relative; }
.soa-prod-frame { position: absolute; top: -22px; left: -22px; right: -22px; bottom: -22px; border: 1px solid var(--soa-hair); pointer-events: none; }
.soa-prod-media .soa-objimg { aspect-ratio: 4 / 5; }
.soa-prod-media .soa-objimg img { transition: opacity .28s ease; }
/* Gallery thumbnail carousel — vertical rail, scrolls when tall */
.soa-prod-thumbs {
  position: absolute; left: 0; top: 0; bottom: 0; width: 76px;
  display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
  scrollbar-width: none; -ms-overflow-style: none; /* hide native — custom bar drawn below */
}
.soa-prod-thumbs::-webkit-scrollbar { width: 0; height: 0; display: none; }
/* Custom scrollbar (built in JS) — slim bar in the gap between rail and photo */
.soa-thumbs-scroll { position: absolute; top: 2px; bottom: 2px; left: 80px; width: 3px; border-radius: 3px; background: var(--soa-hair); opacity: 0; transition: opacity .2s ease; pointer-events: none; z-index: 2; }
.soa-thumbs-scroll.is-on { opacity: 1; pointer-events: auto; }
.soa-thumbs-scroll-bar { position: absolute; left: 0; right: 0; top: 0; min-height: 30px; border-radius: 3px; background: var(--soa-muted); cursor: grab; transition: background .15s ease; }
.soa-thumbs-scroll-bar:hover, .soa-thumbs-scroll-bar.is-drag { background: var(--soa-ink); }
.soa-thumbs-scroll-bar.is-drag { cursor: grabbing; }
.soa-prod-thumb { flex: 0 0 auto; width: 100%; aspect-ratio: 4 / 5; padding: 0; border: 1px solid var(--soa-hair); background: #000; cursor: pointer; overflow: hidden; opacity: .6; transition: opacity .18s, border-color .18s; }
.soa-prod-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soa-prod-thumb:hover { opacity: 1; }
.soa-prod-thumb.is-active { opacity: 1; border-color: var(--soa-ink); }
.soa-prod-notes { display: flex; gap: 18px; margin-top: 30px; font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-prod-eyebrow { margin-bottom: 18px; }
.soa-prod h1 { font-family: var(--soa-serif); font-weight: 400; font-size: 46px; line-height: 1.05; letter-spacing: -0.018em; margin: 0 0 10px; }
.soa-prod-sub { font-family: var(--soa-serif); font-style: italic; font-size: 20px; color: var(--soa-muted); margin-bottom: 28px; }
.soa-prod-blurb { font-family: var(--soa-serif); font-size: 19px; line-height: 1.6; margin: 0 0 32px; }
.soa-prod-details { border-top: 1px solid var(--soa-line); border-bottom: 1px solid var(--soa-hair); padding: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; margin-bottom: 32px; }
.soa-prod-details dt { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 5px; }
.soa-prod-details dd { font-family: var(--soa-serif); font-size: 18px; line-height: 1.35; margin: 0; }
.soa-prod-pricerow { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.soa-prod-price { font-family: var(--soa-serif); font-size: 34px; color: var(--soa-oxblood); }
.soa-prod-stock { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-oxblood); }
.soa-prod-buy { display: flex; gap: 14px; align-items: stretch; margin-bottom: 18px; flex-wrap: wrap; }
/* WooCommerce hides the qty field for one-of-a-kind pieces; drop it from the flex flow
   so the add-to-cart button spans the full width (no 14px gap indent). */
.soa-prod-buy .quantity.hidden { display: none; }
.soa-qty { display: flex; align-items: center; border: 1px solid var(--soa-line); }
.soa-qty button { padding: 0 16px; font-family: var(--soa-serif); font-size: 22px; color: var(--soa-ink); align-self: stretch; }
.soa-qty-val { font-family: var(--soa-mono); font-size: 14px; min-width: 28px; text-align: center; }
.soa-prod-buy .soa-btn--primary { flex: 1; min-width: 200px; }
.soa-prod-altrow { display: flex; gap: 20px; margin-bottom: 30px; }
.soa-prod-altrow .soa-btn { flex: 1; }
.soa-assure { background: var(--soa-site-bg-3); padding: 22px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.soa-assure-item { display: flex; gap: 10px; }
.soa-assure-item .soa-assure-mark { color: var(--soa-oxblood); font-size: 12px; line-height: 1.6; }
.soa-assure-item h4 { font-family: var(--soa-serif); font-size: 16px; font-weight: 400; line-height: 1.25; }
.soa-assure-item p { font-family: var(--soa-serif); font-style: italic; font-size: 13.5px; color: var(--soa-muted); }

.soa-prov { border-top: 1px solid var(--soa-line); padding: 80px 0; background: var(--soa-site-bg-3); }
.soa-prov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.soa-prov h2 { font-family: var(--soa-serif); font-weight: 400; font-size: 34px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 28px; }
.soa-prov-eyebrow { margin-bottom: 20px; }
.soa-chain-row { display: grid; grid-template-columns: 24px 1fr; gap: 18px; padding-bottom: 24px; }
.soa-chain-row:last-child { padding-bottom: 0; }
.soa-chain-marker { display: flex; flex-direction: column; align-items: center; }
.soa-chain-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--soa-line); margin-top: 6px; flex-shrink: 0; }
.soa-chain-row:last-child .soa-chain-dot { background: var(--soa-oxblood); }
.soa-chain-line { width: 1px; flex: 1; background: var(--soa-hair-strong); margin-top: 4px; }
.soa-chain-row:last-child .soa-chain-line { display: none; }
.soa-chain-text { font-family: var(--soa-serif); font-size: 18px; line-height: 1.45; padding-bottom: 4px; }
.soa-prov-body p { font-family: var(--soa-serif); font-size: 18px; line-height: 1.6; margin: 0 0 18px; }
.soa-prov-body p.is-muted { color: var(--soa-muted); margin-bottom: 28px; }
.soa-prov-caption { border-top: 1px solid var(--soa-hair); padding-top: 22px; }

.soa-related { border-top: 1px solid var(--soa-line); padding: 80px 0 96px; }
.soa-related-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; flex-wrap: wrap; gap: 12px; }
.soa-related-head h2 { font-size: 38px; }
.soa-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.soa-rel-grid .soa-objimg { aspect-ratio: 4 / 5; margin-bottom: 18px; }
.soa-rel-grid .soa-card-title { font-size: 20px; }

/* ==========================================================================
   PROSE — editorial content (the_content / about welcome body)
   ========================================================================== */
.soa-prose { font-family: var(--soa-serif); color: var(--soa-ink); }
.soa-prose > :first-child { margin-top: 0; }
.soa-prose > :last-child { margin-bottom: 0; }
.soa-prose h1, .soa-prose h2, .soa-prose h3, .soa-prose h4, .soa-prose h5, .soa-prose h6 {
  font-family: var(--soa-serif); font-weight: 400; color: var(--soa-ink); letter-spacing: -0.01em; line-height: 1.14;
}
.soa-prose h1 { font-size: 42px; letter-spacing: -0.018em; margin: 48px 0 20px; }
.soa-prose h2 { font-size: 32px; margin: 44px 0 18px; }
.soa-prose h3 { font-size: 25px; margin: 36px 0 14px; }
.soa-prose h4 { font-size: 20px; margin: 30px 0 12px; }
.soa-prose h5 { font-size: 17px; margin: 26px 0 10px; }
.soa-prose h6 { font-size: 15px; color: var(--soa-muted); margin: 24px 0 10px; }
.soa-prose p { font-family: var(--soa-serif); font-size: 19px; line-height: 1.6; margin: 0 0 20px; }
.soa-prose a { color: var(--soa-oxblood); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .18s; }
.soa-prose a:hover { color: var(--soa-ink); }
.soa-prose strong { font-weight: 600; }
.soa-prose em { font-style: italic; }
.soa-prose ul, .soa-prose ol { font-size: 19px; line-height: 1.6; margin: 0 0 20px; padding-left: 1.3em; }
.soa-prose ul { list-style: disc; }
.soa-prose ol { list-style: decimal; }
.soa-prose li { margin: 0 0 8px; }
.soa-prose li::marker { color: var(--soa-muted); }
.soa-prose blockquote { margin: 28px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--soa-hair-strong); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--soa-ink); }
.soa-prose blockquote p { font-size: inherit; }
.soa-prose hr { border: 0; border-top: 1px solid var(--soa-hair); margin: 40px 0; }
.soa-prose img { max-width: 100%; height: auto; display: block; margin: 28px 0; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.soa-welcome { padding: 20px 48px 88px; }
.soa-welcome-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: start; }
.soa-welcome-quote { font-family: var(--soa-serif); font-style: italic; font-size: 27px; line-height: 1.35; }
.soa-welcome-body p { font-family: var(--soa-serif); font-size: 19px; line-height: 1.6; margin: 0 0 20px; }
.soa-welcome-body p.is-muted { color: var(--soa-muted); margin: 0; }
.soa-welcome-sign { margin-top: 32px; font-family: var(--soa-serif); font-size: 16px; }

.soa-principles { background: var(--soa-site-bg-2); padding: 96px 0; }
.soa-principles-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; }
.soa-principles-intro h2 { font-size: 42px; line-height: 1.05; margin: 0 0 24px; }
.soa-principles-intro p { font-family: var(--soa-serif); font-size: 17px; line-height: 1.55; margin: 0; }
.soa-principles-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 56px; }
.soa-principle { border-top: 1px solid var(--soa-hair-strong); padding-top: 18px; }
.soa-principle-head { display: flex; gap: 14px; align-items: baseline; }
.soa-principle-num { font-family: var(--soa-serif); font-style: italic; font-size: 20px; color: var(--soa-oxblood); }
.soa-principle h4 { font-family: var(--soa-serif); font-size: 22px; font-weight: 400; margin: 0; letter-spacing: -0.005em; }
.soa-principle p { font-family: var(--soa-serif); font-size: 15.5px; line-height: 1.55; color: var(--soa-muted); margin: 10px 0 0; }

.soa-timeline { padding: 96px 48px; }
.soa-timeline > h2 { font-size: 48px; line-height: 1; letter-spacing: -0.015em; margin: 0 0 56px; }
.soa-tl-row { display: grid; grid-template-columns: 160px 1fr; gap: 48px; padding: 32px 0; border-top: 1px solid var(--soa-hair); align-items: baseline; }
.soa-tl-year { font-family: var(--soa-serif); font-size: 40px; color: var(--soa-oxblood); letter-spacing: -0.01em; }
.soa-tl-row h4 { font-family: var(--soa-serif); font-size: 26px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.01em; }
.soa-tl-row p { font-family: var(--soa-serif); font-size: 17px; line-height: 1.55; color: var(--soa-muted); margin: 0; max-width: 620px; }

.soa-closing { border-top: 1px solid var(--soa-line); padding: 90px 48px; text-align: center; }
.soa-closing h2 { font-size: 46px; line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 28px; }
.soa-closing-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.soa-contact { padding: 64px 48px 96px; }
.soa-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.soa-detail { border-top: 1px solid var(--soa-hair); padding: 20px 0; }
.soa-detail-k { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 8px; }
.soa-detail-v { font-family: var(--soa-serif); font-size: 19px; line-height: 1.45; }
.soa-detail-v .is-muted { font-size: 15px; color: var(--soa-muted); }
.soa-contact-quote { border-top: 1px solid var(--soa-hair); padding-top: 28px; margin-top: 8px; }
.soa-contact-quote p { font-family: var(--soa-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--soa-muted); margin: 0; }
.soa-enquiry-note { font-family: var(--soa-serif); font-style: italic; font-size: 14px; color: var(--soa-muted); margin: 18px 0 0; }
.soa-enquiry-piece { font-family: var(--soa-serif); font-size: 16px; margin-bottom: 22px; padding: 14px 16px; background: var(--soa-site-bg-2); border: 1px solid var(--soa-hair); border-radius: 4px; }
.soa-form-sent { border: 1px solid var(--soa-line); padding: 56px 40px; text-align: center; }
.soa-form-sent h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 30px; line-height: 1.15; margin: 0 0 14px; }
.soa-form-sent p { font-family: var(--soa-serif); font-size: 17px; color: var(--soa-muted); margin: 0 0 24px; }

/* ==========================================================================
   ACCOUNT
   ========================================================================== */
.soa-acct-mast { padding: 64px 48px 48px; position: relative; }
.soa-acct-mast::before { border-bottom: 1px solid var(--soa-line); }
.soa-acct-mast-head { display: flex; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.soa-avatar { width: 76px; height: 76px; border-radius: 50%; border: 1px solid var(--soa-line); display: flex; align-items: center; justify-content: center; font-family: var(--soa-serif); font-size: 28px; flex-shrink: 0; }
.soa-acct-mast h1 { font-family: var(--soa-serif); font-weight: 400; font-size: 60px; line-height: 0.98; letter-spacing: -0.02em; margin: 0; }

.soa-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--soa-line); border-bottom: 1px solid var(--soa-hair); }
.soa-stat { padding: 28px 24px; border-left: 1px solid var(--soa-hair); }
.soa-stat:first-child { border-left: none; }
.soa-stat-v { font-family: var(--soa-serif); font-size: 40px; line-height: 1; letter-spacing: -0.01em; }
.soa-stat-k { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); margin-top: 10px; }

.soa-acct-body { padding: 56px 48px 96px; }
.soa-acct-layout { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.soa-acct-nav-wrap { position: sticky; top: 24px; }
.soa-acct-nav { border-top: 1px solid var(--soa-line); }
.soa-acct-nav button { display: block; width: 100%; text-align: left; padding: 18px 0; border-bottom: 1px solid var(--soa-hair); }
.soa-acct-nav .soa-acct-nav-label { font-family: var(--soa-serif); font-size: 19px; color: var(--soa-ink); }
.soa-acct-nav button.is-on .soa-acct-nav-label { font-style: italic; color: var(--soa-oxblood); }
.soa-acct-nav .soa-acct-nav-sub { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soa-muted); margin-top: 4px; }
.soa-acct-signout { border: none; display: inline-block; margin-top: 24px; color: var(--soa-muted); }
.soa-acct-panel { min-height: 400px; background: var(--soa-site-bg); border: 1px solid var(--soa-hair); border-radius: 4px; padding: 46px 48px; box-shadow: 0 10px 34px rgba(26, 22, 18, 0.07); }
.soa-acct-pane { display: none; }
.soa-acct-pane.is-active { display: block; }

.soa-sechead { margin-bottom: 36px; }
.soa-sechead h2 { font-size: 40px; line-height: 1; letter-spacing: -0.015em; margin: 0 0 10px; }
.soa-sechead p { font-family: var(--soa-serif); font-size: 17px; line-height: 1.5; color: var(--soa-muted); margin: 0; max-width: 620px; }

.soa-cabinet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
.soa-owned { display: grid; grid-template-columns: 160px 1fr; gap: 24px; }
.soa-owned .soa-objimg { aspect-ratio: 4 / 5; }
.soa-owned-body { display: flex; flex-direction: column; }
.soa-owned-era { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 8px; }
.soa-owned h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 22px; line-height: 1.12; margin: 0 0 4px; }
.soa-owned-sub { font-family: var(--soa-serif); font-style: italic; font-size: 14px; color: var(--soa-muted); margin-bottom: 14px; }
.soa-owned-meta { display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 16px; }
.soa-owned-meta .is-ink { color: var(--soa-ink); }
.soa-owned-foot { margin-top: auto; display: flex; gap: 18px; border-top: 1px solid var(--soa-hair); padding-top: 12px; }

.soa-watch-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-top: 1px solid var(--soa-hair); }
.soa-watch-row:first-child { border-top: 1px solid var(--soa-line); }
.soa-watch-row .soa-objimg { aspect-ratio: 4 / 5; }
.soa-watch-tags { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.soa-watch-state { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); border: 1px solid var(--soa-hair-strong); padding: 3px 8px; }
.soa-watch-state.is-accent { color: var(--soa-oxblood); border-color: var(--soa-oxblood); }
.soa-watch-id { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-watch-row h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 24px; line-height: 1.1; margin: 0 0 4px; }
.soa-watch-sub { font-family: var(--soa-serif); font-style: italic; font-size: 14px; color: var(--soa-muted); }
.soa-watch-right { text-align: right; }
.soa-watch-price { font-family: var(--soa-serif); font-size: 22px; margin-bottom: 12px; }
.soa-watch-actions { display: flex; gap: 16px; justify-content: flex-end; }

.soa-enq { border-top: 1px solid var(--soa-line); }
.soa-enq-row { display: grid; grid-template-columns: 120px 1fr 130px 140px; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--soa-hair); align-items: center; }
.soa-enq-head { padding: 14px 0; font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); }
.soa-enq-date { font-family: var(--soa-mono); font-size: 12px; color: var(--soa-muted); }
.soa-enq-subject { font-family: var(--soa-serif); font-size: 19px; }
.soa-enq-piece { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--soa-muted); }
.soa-enq-status { text-align: right; font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.soa-enq-status.is-reserved { color: var(--soa-oxblood); }
.soa-enq-status.is-answered { color: var(--soa-muted); }
.soa-enq-status.is-waiting { color: #9a7b2e; }
.soa-enq-new { margin-top: 32px; }

.soa-cert { border-top: 1px solid var(--soa-line); }
.soa-cert-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 28px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--soa-hair); }
.soa-cert-id { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--soa-muted); min-width: 80px; }
.soa-cert-title { font-family: var(--soa-serif); font-size: 19px; }
.soa-cert-title .is-muted { font-style: italic; color: var(--soa-muted); font-size: 15px; }
.soa-cert-issued { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soa-muted); }

.soa-pref-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.soa-pref-label { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 16px; }
.soa-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.soa-chip { font-family: var(--soa-serif); font-size: 15px; padding: 9px 16px; border: 1px solid var(--soa-hair-strong); background: transparent; color: var(--soa-ink); transition: all .18s; }
.soa-chip.is-on { border-color: var(--soa-ink); background: var(--soa-ink); color: var(--soa-on-ink); }
.soa-toggle-wrap { border-top: 1px solid var(--soa-hair); padding-top: 24px; }
.soa-toggle { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; }
.soa-toggle-track { width: 44px; height: 24px; border-radius: 12px; background: var(--soa-hair-strong); position: relative; transition: background .2s; flex-shrink: 0; }
.soa-toggle.is-on .soa-toggle-track { background: var(--soa-oxblood); }
.soa-toggle-knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: left .2s; }
.soa-toggle.is-on .soa-toggle-knob { left: 22px; }
.soa-toggle-label { font-family: var(--soa-serif); font-size: 18px; display: block; }
.soa-toggle-sub { font-family: var(--soa-serif); font-style: italic; font-size: 14px; color: var(--soa-muted); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .soa-wrap, .soa-wrap-narrow { padding-left: 32px; padding-right: 32px; }
  .soa-mobile-nav a { padding-left: 32px; padding-right: 32px; }
  .soa-footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .soa-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .soa-feat-row { grid-template-columns: 1fr; gap: 32px; }
  .soa-feat-row.is-reverse .soa-feat-media,
  .soa-feat-row .soa-feat-media { order: 0; }
  .soa-feat-row.is-reverse .soa-feat-body,
  .soa-feat-row .soa-feat-body { order: 1; }
  .soa-cat-grid { grid-template-columns: 1fr 1fr; }
  .soa-mast-grid.has-lede { grid-template-columns: 1fr; gap: 32px; }
  .soa-mast-title { font-size: 56px; }
  .soa-shop-layout { grid-template-columns: 1fr; gap: 8px; }
  /* Filters collapse behind a toggle on mobile */
  .soa-filter-toggle {
    display: inline-flex; align-self: start; justify-self: start; align-items: center; gap: 10px;
    font-family: var(--soa-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--soa-ink); background: transparent; border: 1px solid var(--soa-line); border-radius: 2px;
    padding: 12px 18px; margin: 20px 0 4px; cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
  }
  .soa-filter-toggle svg { display: block; flex-shrink: 0; }
  .soa-filter-toggle:hover, .soa-filter-toggle.is-open { background: var(--soa-ink); color: var(--soa-on-ink); border-color: var(--soa-ink); }
  .soa-shop-aside { position: static; padding-top: 8px; display: none; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 8px; }
  /* Open as a fixed full-window overlay */
  .soa-shop-aside.is-open {
    display: block; position: fixed; inset: 0; z-index: 250;
    margin: 0; padding: 0 22px calc(36px + env(safe-area-inset-bottom));
    background: var(--soa-site-bg); overflow-y: auto; -webkit-overflow-scrolling: touch;
    animation: soaFilterIn .22s ease;
  }
  .soa-shop-aside.is-open .soa-filter-head {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 1; background: var(--soa-site-bg);
    padding: 20px 0 16px; margin-bottom: 14px; border-bottom: 1px solid var(--soa-line);
  }
  .soa-filter-head-title { font-family: var(--soa-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-ink); }
  .soa-filter-close { display: inline-flex; padding: 8px; margin: -8px; color: var(--soa-ink); cursor: pointer; }
  .soa-filter-close svg { display: block; }
  .soa-shop-main { padding-top: 24px; }
  .soa-result-grid { grid-template-columns: 1fr 1fr; }
  .soa-prod-grid, .soa-prov-grid { grid-template-columns: 1fr; gap: 48px; }
  /* Gallery rail → horizontal strip under the photo on narrow screens */
  .soa-prod-stage.has-thumbs { display: flex; flex-direction: column; padding-left: 0; }
  .soa-prod-main-wrap { order: 1; }
  .soa-prod-stage .soa-prod-thumbs { position: static; order: 2; width: auto; flex-direction: row; flex-wrap: wrap; gap: 10px; margin-top: 35px; overflow: visible; }
  .soa-prod-stage .soa-prod-thumb { width: 66px; }
  .soa-prod-stage .soa-thumbs-scroll { display: none; }
  .soa-rel-grid { grid-template-columns: 1fr 1fr; }
  .soa-welcome-grid, .soa-principles-grid { grid-template-columns: 1fr; gap: 40px; }
  .soa-principles-list { grid-template-columns: 1fr; }
  .soa-tl-row { grid-template-columns: 1fr; gap: 8px; }
  .soa-contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .soa-acct-layout { grid-template-columns: 1fr; gap: 32px; }
  .soa-acct-panel { padding: 30px 24px; }
  .soa-acct-nav-wrap { position: static; }
  .soa-acct-nav { display: flex; overflow-x: auto; border-bottom: 1px solid var(--soa-hair); }
  .soa-acct-nav button { border-bottom: none; border-right: 1px solid var(--soa-hair); padding: 14px 18px; white-space: nowrap; }
  .soa-cabinet-grid, .soa-pref-grid { grid-template-columns: 1fr; gap: 36px; }
  .soa-stat-row { grid-template-columns: 1fr 1fr; }
  .soa-stat:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  /* Mobile header — only the centred logo */
  .soa-util { display: none; }
  .soa-hdr .soa-wrap { display: flex; justify-content: center; align-items: center; }
  .soa-nav { display: none; }
  .soa-utilr { display: none; }
  .soa-burger { display: none; }
}

@media (max-width: 720px) {
  .soa-wrap, .soa-wrap-narrow { padding-left: 22px; padding-right: 22px; }
  .soa-mobile-nav a { padding-left: 22px; padding-right: 22px; }
  .soa-hero h1 { font-size: 48px; }
  /* Compact page-title on mobile */
  .soa-mast { padding-top: 34px; padding-bottom: 40px; }
  .soa-mast-title { font-size: 38px; }
  .soa-mast-lede { font-size: 16px; line-height: 1.5; }
  .soa-mast-grid { gap: 18px; }
  .soa-mast-grid.has-lede { gap: 16px; }
  .soa-mast .soa-kicker { margin-bottom: 14px !important; }
  .soa-acct-mast h1 { font-size: 44px; }
  .soa-footer-cols { grid-template-columns: 1fr; }
  .soa-footer-legal { flex-direction: column; gap: 8px; }
  .soa-assure, .soa-prod-details { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .soa-mast { padding-top: 28px; padding-bottom: 34px; }
  .soa-mast-title { font-size: 33px; }
  .soa-result-grid, .soa-rel-grid { grid-template-columns: 1fr; }
  .soa-cat-grid { grid-template-columns: 1fr; }
  .soa-shop-aside { grid-template-columns: 1fr; }
  .soa-watch-row { grid-template-columns: 64px 1fr; }
  .soa-watch-right { grid-column: 1 / -1; text-align: left; }
  .soa-watch-actions { justify-content: flex-start; }
  .soa-enq-row { grid-template-columns: 1fr auto; gap: 8px; }
  .soa-enq-head, .soa-enq-date, .soa-enq-piece { display: none; }
  .soa-cert-row { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .soa-cert-issued { display: none; }
  .soa-prod-altrow { flex-direction: column; gap: 12px; }
}

/* ===================================================================
   The Journal — landing, archives, single essay
   =================================================================== */

/* Category filter chips */
.soa-journal-filter { display: flex; gap: 8px; flex-wrap: wrap; padding: 28px 0 0; }
.soa-journal-chip { font-family: var(--soa-serif); font-size: 15px; padding: 8px 16px; border: 1px solid var(--soa-hair); color: var(--soa-ink); transition: border-color .18s, background .18s, color .18s; }
.soa-journal-chip:first-child { font-style: italic; }
.soa-journal-chip:hover { border-color: var(--soa-ink); }
.soa-journal-chip.is-on { background: var(--soa-ink); border-color: var(--soa-ink); color: var(--soa-on-ink); }

/* Thumbnail fallback when no image is available */
.soa-journal-thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--soa-serif); font-size: 110px; line-height: 1; color: var(--soa-hair-strong); background: var(--soa-site-bg-2); }

/* Feature article */
.soa-journal-feature-wrap { padding: 48px 0 24px; }
.soa-journal-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.soa-journal-feature-img { aspect-ratio: 3 / 2; }
.soa-journal-feature-title { font-family: var(--soa-serif); font-weight: 400; font-size: 46px; line-height: 1.04; letter-spacing: -0.018em; margin: 0 0 18px; }
.soa-journal-feature-dek { font-family: var(--soa-serif); font-size: 20px; line-height: 1.5; color: var(--soa-muted); margin: 0 0 26px; }
.soa-journal-feature-foot { display: flex; align-items: center; gap: 16px; }
.soa-journal-feature-date { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }

/* Shared card eyebrow */
.soa-journal-card-eyebrow { display: block; font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 10px; }
.soa-journal-feature .soa-journal-card-eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 18px; }

/* Grid */
.soa-journal-grid-wrap { padding: 48px 0 96px; }
.soa-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 36px; }
.soa-journal-card { display: flex; flex-direction: column; }
.soa-journal-card-img { aspect-ratio: 3 / 2; margin-bottom: 20px; }
.soa-journal-card-title { font-family: var(--soa-serif); font-weight: 400; font-size: 26px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 10px; }
.soa-journal-card-dek { font-family: var(--soa-serif); font-size: 16.5px; line-height: 1.5; color: var(--soa-muted); margin: 0 0 18px; }
.soa-journal-card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--soa-hair); padding-top: 14px; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-journal-card-read { border: none; font-size: 9.5px; }
.soa-journal-empty { font-family: var(--soa-serif); font-style: italic; font-size: 22px; color: var(--soa-muted); text-align: center; }

/* ── Single essay ── */
.soa-post-crumb { padding: 24px 0 0; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); }
.soa-post-crumb a { color: var(--soa-muted); }
.soa-post-crumb a.is-current, .soa-post-crumb a:hover { color: var(--soa-ink); }
.soa-post-crumb span { margin: 0 8px; }

.soa-post-head { padding: 48px 0 40px; text-align: center; }
.soa-post-cat { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 26px; }
.soa-post-title { font-family: var(--soa-serif); font-weight: 400; font-size: 56px; line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 24px; }
.soa-post-dek { font-family: var(--soa-serif); font-style: italic; font-size: 23px; line-height: 1.4; color: var(--soa-muted); margin: 0 auto; max-width: 680px; }
.soa-post-meta { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 32px; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soa-muted); }

/* Lead image lives in the sticky sidebar, above the TOC (keeps the page compact) */
.soa-post-aside-fig { margin: 0 0 28px; }
.soa-post-aside-link { display: block; color: inherit; }
.soa-post-aside-img { display: block; aspect-ratio: 4 / 5; }
.soa-post-aside-link:hover .soa-post-aside-img img { transform: scale(1.045); }

.soa-post-body { padding: 48px 0 24px; }
.soa-post-cols { display: grid; grid-template-columns: 240px minmax(0, 720px); gap: 64px; justify-content: center; align-items: start; }
.soa-post-toc-col { position: sticky; top: 24px; align-self: start; }

/* Table of contents */
.soa-toc[hidden] { display: none; }
.soa-toc-head { font-family: var(--soa-mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soa-muted); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--soa-hair); }
.soa-toc ol { list-style: none; margin: 0; padding: 0; }
.soa-toc li { margin-bottom: 2px; }
.soa-toc a { display: flex; gap: 12px; align-items: baseline; padding: 8px 0 8px 14px; border-left: 2px solid var(--soa-hair); color: var(--soa-muted); transition: color .18s, border-color .18s; }
.soa-toc a .soa-toc-n { font-family: var(--soa-mono); font-size: 11px; color: var(--soa-muted); flex-shrink: 0; }
.soa-toc a .soa-toc-t { font-family: var(--soa-serif); font-size: 16px; line-height: 1.3; }
.soa-toc a:hover { color: var(--soa-ink); }
.soa-toc a.is-on { border-left-color: var(--soa-oxblood); color: var(--soa-ink); }
.soa-toc a.is-on .soa-toc-n { color: var(--soa-oxblood); }

/* Article body */
.soa-article > p { font-family: var(--soa-serif); font-size: 20px; line-height: 1.62; margin: 0 0 22px; }
.soa-article > h2 { font-family: var(--soa-serif); font-weight: 400; font-size: 30px; line-height: 1.15; letter-spacing: -0.01em; margin: 44px 0 16px; scroll-margin-top: 32px; }
.soa-article > h3 { font-family: var(--soa-serif); font-weight: 400; font-size: 23px; line-height: 1.2; margin: 32px 0 12px; }
.soa-article > p:first-of-type::first-letter { float: left; font-family: var(--soa-serif); font-size: 72px; line-height: 0.78; padding: 6px 12px 0 0; color: var(--soa-ink); }
.soa-article ul, .soa-article ol { font-family: var(--soa-serif); font-size: 19px; line-height: 1.6; margin: 0 0 22px; padding-left: 24px; }
.soa-article li { margin-bottom: 8px; }
.soa-article a { color: var(--soa-oxblood); text-decoration: underline; text-underline-offset: 3px; }
.soa-article blockquote.soa-pull, .soa-article .soa-pull { margin: 40px 0; padding: 4px 0 4px 32px; border-left: 2px solid var(--soa-oxblood); }
.soa-article blockquote.soa-pull p, .soa-article .soa-pull p { font-family: var(--soa-serif); font-style: italic; font-size: 27px; line-height: 1.35; margin: 0; }

/* Signature */
.soa-post-sign { border-top: 1px solid var(--soa-ink); margin-top: 40px; padding-top: 28px; display: flex; align-items: center; gap: 16px; }
.soa-post-sign-mark { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--soa-ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.soa-post-sign-name { display: block; font-family: var(--soa-serif); font-size: 19px; }
.soa-post-sign-role { display: block; font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soa-muted); margin-top: 3px; }

/* The piece in question */
.soa-post-piece-sec { background: var(--soa-site-bg-2); padding: 72px 0; margin-top: 48px; }
.soa-post-piece-eyebrow { text-align: center; margin-bottom: 28px; }
.soa-post-piece { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: center; background: var(--soa-site-bg); padding: 28px; border: 1px solid var(--soa-hair); }
.soa-post-piece-img { aspect-ratio: 4 / 5; }
.soa-post-piece-body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.soa-post-piece-eyebrow2 { font-family: var(--soa-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soa-muted); }
.soa-post-piece-title { font-family: var(--soa-serif); font-weight: 400; font-size: 30px; line-height: 1.1; }
.soa-post-piece-price { font-family: var(--soa-serif); font-size: 24px; }

/* More from the journal */
.soa-post-more { padding: 80px 0 96px; }
.soa-post-more-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; flex-wrap: wrap; gap: 12px; }
.soa-post-more-title { font-family: var(--soa-serif); font-weight: 400; font-size: 38px; letter-spacing: -0.01em; margin: 0; }
.soa-post-more-grid .soa-journal-card-title { font-size: 22px; }

/* Responsive */
@media (max-width: 900px) {
	.soa-journal-feature { grid-template-columns: 1fr; gap: 28px; }
	.soa-journal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
	.soa-post-cols { grid-template-columns: minmax(0, 720px); justify-content: center; }
	.soa-post-toc-col { position: static; }
	.soa-toc { display: none; }
	.soa-post-aside-fig { max-width: 300px; margin: 0 auto 32px; }
}
@media (max-width: 760px) {
	.soa-post-piece { grid-template-columns: 1fr; }
	.soa-post-piece-img { max-width: 200px; }
	.soa-post-title { font-size: 40px; }
	.soa-post-dek { font-size: 20px; }
}
@media (max-width: 600px) {
	.soa-journal-grid { grid-template-columns: 1fr; }
}
