/* ========================================================
   MARSHN — STREETWEAR LUXURY
   Designed for a moving starfield backdrop.
   ======================================================== */

:root {
  --bg: #000000;
  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.62);
  --ink-faint: rgba(255, 255, 255, 0.32);
  --hairline: rgba(255, 255, 255, 0.14);
  --hairline-strong: rgba(255, 255, 255, 0.28);
  --accent: #e9e4d4;        /* warm parchment for that lux feel */
  --accent-glow: rgba(233, 228, 212, 0.35);
  --card: rgba(255, 255, 255, 0.025);
  --card-hover: rgba(255, 255, 255, 0.05);
  --radius: 0px;            /* sharp, editorial */
  --radius-soft: 2px;
  --max: 1440px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 144px;
  --font-display: "Syne", "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Starfield canvas ---------- */
#space-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 10%, #0a0612 0%, #000 60%, #000 100%);
}

/* ---------- Page wrapper ---------- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (max-width: 720px) {
  .container { padding: 0 var(--space-3); }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.h1 { font-size: clamp(56px, 11vw, 180px); }
.h2 { font-size: clamp(36px, 6vw, 80px); }
.h3 { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: 0.02em; }
.h4 { font-size: clamp(16px, 1.6vw, 20px); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

.body-lg { font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-dim); line-height: 1.7; }
.body { font-size: 14px; color: var(--ink-dim); line-height: 1.7; }
.tiny { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-4);
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.42em;
  font-size: 18px;
  text-transform: uppercase;
}

.brand .star {
  display: inline-block;
  margin-right: 4px;
  transform: translateY(-1px);
  color: var(--accent);
  font-size: 0.7em;
}

.nav-links {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 8px 14px;
  transition: all 0.2s ease;
}

.nav-cart:hover {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}

.cart-count {
  display: inline-block;
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 720px) {
  .nav-inner { height: 60px; padding: 0 var(--space-3); }
  .brand { font-size: 14px; letter-spacing: 0.32em; }
  .nav-links { gap: var(--space-3); }
  .nav-links a { font-size: 10px; }
  .nav-links .hide-sm { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--space-6) 0 var(--space-5);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Hero with photo backdrop */
.hero-with-image .hero-split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}
.hero-with-image .hero-shot {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-with-image .hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.78) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-with-image:hover .hero-shot-black img { transform: scale(1.04); }
.hero-with-image:hover .hero-shot-white img { transform: scale(1.04); }

.hero-with-image .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 80%);
  pointer-events: none;
}

.hero-with-image .hero-title {
  text-shadow: 0 4px 60px rgba(0,0,0,0.6), 0 2px 20px rgba(0,0,0,0.4);
}

.hero-with-image .hero-sub {
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
}

@media (max-width: 720px) {
  .hero-with-image .hero-split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
}

.hero-eyebrow {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  /* Sized so "MARSHN" (6 chars) fits within the container at all viewport widths */
  font-size: clamp(56px, 13vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(255,255,255,0.08);
}

.hero-sub {
  margin-top: var(--space-3);
  max-width: 540px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-dim);
  line-height: 1.6;
}

.hero-cta {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--ink);
  color: #000;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { background: transparent; color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(255,255,255,0.05);
  color: var(--ink);
}

.btn-block { width: 100%; }
.btn-lg { padding: 20px 36px; font-size: 12px; }
.btn-sm { padding: 10px 18px; font-size: 10px; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Section ---------- */
.section {
  padding: var(--space-6) 0;
  position: relative;
}

@media (max-width: 720px) {
  .section { padding: var(--space-5) 0; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  gap: var(--space-3);
  flex-wrap: wrap;
}

.section-head .left { max-width: 720px; }
.section-head .left .h2 { margin-top: 12px; }

.divider {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}

/* ---------- Featured / Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

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

.product-card {
  position: relative;
  background: #000;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  overflow: hidden;
}

.product-card:hover { background: #050505; }

.product-card .product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  overflow: hidden;
  margin-bottom: var(--space-3);
  border: 1px solid var(--hairline);
}

.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-media img { transform: scale(1.04); }

.product-card .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg, #0a0a0a 0 8px, #0d0d0d 8px 16px);
}

.product-card .placeholder .ph-icon {
  width: 36px; height: 36px; border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-dim);
}

.product-card .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.product-card .actions {
  margin-top: var(--space-3);
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
}

/* ---------- Product detail ---------- */
.pd {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
}

@media (max-width: 960px) {
  .pd { grid-template-columns: 1fr; gap: var(--space-4); }
}

.pd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.pd-gallery .shot {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  overflow: hidden;
}

.pd-gallery .shot.large { grid-column: span 2; aspect-ratio: 16 / 11; }

.pd-gallery .shot img {
  width: 100%; height: 100%; object-fit: cover;
}

.pd-gallery .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg, #0a0a0a 0 8px, #0d0d0d 8px 16px);
}

.pd-info { position: sticky; top: 100px; align-self: start; }

@media (max-width: 960px) {
  .pd-info { position: static; }
}

.pd-info .product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.pd-info .product-price {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.pd-info .product-desc {
  margin-top: var(--space-3);
  color: var(--ink-dim);
  line-height: 1.7;
  font-size: 15px;
}

.pd-info .label {
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  width: 56px;
  height: 48px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: all 0.18s ease;
}

.size-btn:hover { border-color: var(--ink); }
.size-btn.is-selected {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}

.qty-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline-strong);
}
.qty-row button {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
}
.qty-row .qty-val {
  width: 56px; text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
}

.pd-info .btn-row {
  margin-top: var(--space-3);
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.pd-info details {
  margin-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-2);
}
.pd-info details + details { margin-top: 0; }
.pd-info summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.pd-info summary::-webkit-details-marker { display: none; }
.pd-info summary::after {
  content: "+";
  font-size: 18px; font-weight: 300;
  transition: transform 0.2s ease;
}
.pd-info details[open] summary::after { content: "−"; }
.pd-info details > div {
  padding-bottom: var(--space-2);
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Cart ---------- */
.cart-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
}

@media (max-width: 960px) {
  .cart-wrap { grid-template-columns: 1fr; gap: var(--space-4); }
}

.cart-list {
  border-top: 1px solid var(--hairline);
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}

.cart-row .thumb {
  width: 96px; aspect-ratio: 4/5;
  background: #0a0a0a;
  border: 1px solid var(--hairline);
  position: relative;
}

.cart-row .thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-row .info h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-row .info .meta {
  font-size: 11px; color: var(--ink-dim); margin-top: 4px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.cart-row .info .remove {
  margin-top: 8px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: transparent;
  border: none;
  padding: 0;
}
.cart-row .info .remove:hover { color: var(--ink); text-decoration: underline; }

.cart-row .right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.cart-row .row-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.cart-summary {
  border: 1px solid var(--hairline);
  padding: var(--space-3);
  background: var(--card);
  align-self: start;
  position: sticky;
  top: 100px;
}

@media (max-width: 960px) { .cart-summary { position: static; } }

.cart-summary .row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 13px; color: var(--ink-dim);
  border-bottom: 1px solid var(--hairline);
}
.cart-summary .row.total {
  border-bottom: none;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-strong);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.cart-empty {
  text-align: center;
  padding: var(--space-6) var(--space-3);
  color: var(--ink-dim);
}

.cart-empty .h2 { margin-bottom: var(--space-3); color: var(--ink); }

/* ---------- Marquee strip ---------- */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track span {
  margin: 0 28px;
  color: var(--ink);
}
.marquee-track span:nth-child(even) { color: var(--ink-faint); -webkit-text-stroke: 1px var(--ink); -webkit-text-fill-color: transparent; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Brand strip ---------- */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

@media (max-width: 720px) { .brand-strip { grid-template-columns: 1fr; } }

.brand-cell {
  background: #000;
  padding: var(--space-4);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-cell .num {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink-faint);
}

.brand-cell h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-cell p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline);
  padding: var(--space-5) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: span 2; }
}

.footer-brand .brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin-top: var(--space-2);
  font-size: 13px;
  color: var(--ink-dim);
  max-width: 360px;
  line-height: 1.6;
}

.footer h5 {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}

.footer ul { list-style: none; }
.footer ul li {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.footer ul li a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-bottom .socials {
  display: flex; gap: var(--space-2);
}
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--hairline-strong);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.footer-bottom .socials a:hover { background: var(--ink); color: #000; border-color: var(--ink); }
.footer-bottom .socials svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ink);
  color: #000;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 200;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page heading ---------- */
.page-head {
  padding: var(--space-5) 0 var(--space-4);
  border-bottom: 1px solid var(--hairline);
}

.page-head .crumbs {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.page-head .crumbs a:hover { color: var(--ink); }

/* ---------- Modal (size guide etc) ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}
.modal-backdrop.is-open { display: flex; }
.modal {
  background: #0a0a0a;
  border: 1px solid var(--hairline-strong);
  max-width: 540px; width: 100%;
  padding: var(--space-4);
}
.modal h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: var(--space-2); }
.modal .close { float: right; background: transparent; border: 0; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.modal table { width: 100%; border-collapse: collapse; margin-top: var(--space-2); }
.modal th, .modal td { padding: 10px; text-align: left; border-bottom: 1px solid var(--hairline); font-size: 13px; }
.modal th { color: var(--ink-faint); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }

/* ---------- Misc ---------- */
::selection { background: var(--ink); color: #000; }

/* Subtle scroll bar styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }
