/* =====================================================================
   Matthew Alexander Creations — editorial design system
   Structure & motion ported from the studio's black-and-white editorial
   system; palette warmed to the brand's ivory / espresso / olive.
   Photography supplies the colour; the interface stays disciplined.
   ===================================================================== */

/* ---------- tokens ---------- */
:root {
  /* canvas + ink */
  --ivory:      #f6f2e9;   /* warm, crisp ivory — the canvas & light text */
  --ivory-2:    #efe9dc;   /* faintly deeper ivory for quiet panels        */
  --ink:        #221e16;   /* deep warm near-black — text & dark sections  */
  --ink-90:     #2c2820;

  /* sharpened brand olive (from the seal, rgb 87 112 52) */
  --olive:      #566a1f;   /* accent on light — links, eyebrows, hovers    */
  --olive-deep: #445619;   /* pressed / stronger                           */
  --olive-lite: #9bad63;   /* accent on dark backgrounds                   */

  --border-soft: rgba(34, 30, 22, 0.16);
  --border-dark: rgba(246, 242, 233, 0.20);

  --font-display: "Instrument Serif", "Georgia", "Times New Roman", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --tracking-label: 0.13em;
  --wrap: 1440px;
  --wrap-wide: 1800px;
  color-scheme: light;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- base ---------- */
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;         /* 17px */
  line-height: 1.62;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 640px) { body { font-size: 1rem; } }
::selection { background: var(--ink); color: var(--ivory); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.wrap-wide { width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 768px) {
  .wrap, .wrap-wide { padding-inline: 2.5rem; }
}
.section { padding-block: clamp(4.5rem, 9vw, 7rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* measure helpers */
.mw-22 { max-width: 22ch; } .mw-24 { max-width: 24ch; }
.mw-30 { max-width: 30ch; } .mw-46 { max-width: 46ch; }
.mw-52 { max-width: 52ch; } .mw-58 { max-width: 58ch; } .mw-62 { max-width: 62ch; }

/* ---------- editorial type ---------- */
.font-display { font-family: var(--font-display); }
.display-xl {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6.6rem); line-height: 0.96;
  letter-spacing: 0.004em; text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.9rem); line-height: 1.0;
  letter-spacing: 0.004em; text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem); line-height: 1.08;
  letter-spacing: 0.006em; text-transform: uppercase;
}
.serif-title {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.editorial-italic { font-family: var(--font-display); font-style: italic; }
.eyebrow {
  font-family: var(--font-body); font-size: 0.67rem;
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
}
.body-lg { font-size: 1.11rem; line-height: 1.68; }
.statement {
  font-family: var(--font-display); font-weight: 400; text-transform: none;
  font-size: clamp(1.55rem, 3.2vw, 2.9rem); line-height: 1.16;
  letter-spacing: 0; text-wrap: balance;
}
.statement-sm {
  font-family: var(--font-display); font-weight: 400; text-transform: none;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem); line-height: 1.22; text-wrap: balance;
}
.muted { color: color-mix(in srgb, var(--ink) 70%, transparent); }
.muted-45 { color: color-mix(in srgb, var(--ink) 45%, transparent); }
.accent { color: var(--olive); }

.prose p { margin-bottom: 1.15em; line-height: 1.72; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--olive); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--olive) 45%, transparent);
  transition: color .2s ease, opacity .2s ease;
}
.prose a:hover { opacity: 0.6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--ink); padding: 1rem 2rem;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; background: transparent; color: var(--ink);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn-ink { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-ghost { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-ivory { border-color: var(--ivory); background: transparent; color: var(--ivory); }
.btn-ivory:hover { background: var(--ivory); color: var(--ink); }
.btn-olive { border-color: var(--olive); background: var(--olive); color: var(--ivory); }
.btn-olive:hover { background: transparent; color: var(--olive); }
.btn-sm { padding: 0.7rem 1.4rem; }

/* ---------- links ---------- */
.link-rule { transition: color .22s ease, opacity .22s ease; }
.link-rule:hover { color: var(--olive); opacity: 0.9; }
.on-dark .link-rule:hover { color: var(--olive-lite); opacity: 1; }
.link-arrow::after {
  content: "→"; display: inline-block; margin-left: 0.45em;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.link-arrow:hover::after { transform: translateX(4px); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--olive); outline-offset: 3px;
}
.on-dark :where(a, button):focus-visible { outline-color: var(--olive-lite); }

/* ---------- imagery ---------- */
.img-frame { overflow: hidden; background: color-mix(in srgb, var(--ink) 6%, transparent); display: block; }
.img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.19,1,.22,1), opacity .6s ease;
}
html.js .img-frame img { animation: img-in .7s ease both; }
@keyframes img-in { from { opacity: .001; } to { opacity: 1; } }
a:hover .img-frame img, .card-hover:hover .img-frame img { transform: scale(1.03); }

.ratio { position: relative; width: 100%; }
.ratio > img, .ratio > .img-frame { position: absolute; inset: 0; width: 100%; height: 100%; }
.ratio-21x10 { aspect-ratio: 21 / 10; }
.ratio-4x3   { aspect-ratio: 4 / 3; }
.ratio-3x2   { aspect-ratio: 3 / 2; }
.ratio-4x5   { aspect-ratio: 4 / 5; }
.ratio-1x1   { aspect-ratio: 1 / 1; }

/* ---------- reveal motion (opt-in via html.js so crawlers see everything) ---------- */
html.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  html.js .img-frame img { animation: none; }
}

/* ---------- fine rules ---------- */
.rule-top { border-top: 1px solid var(--border-soft); }
.on-dark .rule-top { border-top-color: var(--border-dark); }
hr.rule { border: 0; border-top: 1px solid var(--border-soft); }

/* ---------- dark section ---------- */
.on-dark { background: var(--ink); color: var(--ivory); }
.on-dark .muted { color: color-mix(in srgb, var(--ivory) 62%, transparent); }
.on-dark .muted-45 { color: color-mix(in srgb, var(--ivory) 45%, transparent); }
.on-dark .accent { color: var(--olive-lite); }
.on-dark .eyebrow-accent { color: var(--olive-lite); }
.eyebrow-accent { color: var(--olive); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  background: var(--ivory);
  transition: background-color .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  border-bottom-color: rgba(34,30,22,0.10);
  backdrop-filter: saturate(1.1) blur(6px);
}
.header-inner {
  max-width: var(--wrap); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.7rem 1.25rem;
}
@media (min-width: 768px) { .header-inner { padding: 0.75rem 2.5rem; } }
.header-logo img { height: 52px; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 60px; } }

.nav-primary { display: none; align-items: center; gap: 1.6rem; }
@media (min-width: 1024px) { .nav-primary { display: flex; } }
.nav-link {
  font-family: var(--font-body); font-size: 0.67rem; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 500; padding-block: 0.5rem;
  display: inline-block; transition: color .22s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--olive); }
.nav-link.active { color: var(--olive); font-weight: 600; }

/* dropdown */
.nav-has-children { position: relative; }
.nav-menu {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  width: 268px; background: var(--ivory);
  border: 1px solid rgba(34,30,22,0.10);
  box-shadow: 0 18px 40px -18px rgba(20,18,12,0.30);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
  padding-block: 0.6rem; z-index: 60;
}
.nav-has-children:hover .nav-menu, .nav-has-children:focus-within .nav-menu { opacity: 1; visibility: visible; }
.nav-menu a { display: block; padding: 0.6rem 1.4rem; font-size: 0.92rem; transition: background-color .2s ease, color .2s ease; }
.nav-menu a:hover { background: var(--ivory-2); color: var(--olive); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

/* hamburger */
.hamburger {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { height: 1.5px; width: 24px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 66px 0 0 0; z-index: 40; background: var(--ivory);
  overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { padding: 1.5rem 1.5rem 3rem; }
.mobile-menu .m-link { display: block; padding: 0.9rem 0; border-bottom: 1px solid rgba(34,30,22,0.10); }
.mobile-menu .m-sub { padding: 0 0 0.75rem 0.25rem; }
.mobile-menu .m-sub a { display: block; padding: 0.45rem 0; font-size: 0.95rem; color: color-mix(in srgb, var(--ink) 72%, transparent); }
body.menu-open { overflow: hidden; }

/* announcement bar */
.announce {
  background: var(--ink); color: var(--ivory);
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center; padding: 0.5rem 1rem;
}
.announce a { color: var(--olive-lite); }
.announce .sep { opacity: 0.4; margin-inline: 0.6rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: var(--ivory); }
.footer-inner { max-width: var(--wrap); margin-inline: auto; padding: 4rem 1.25rem 2.5rem; }
@media (min-width: 768px) { .footer-inner { padding: 6rem 2.5rem 3rem; } }
.footer-logo img { height: 92px; width: auto; }
@media (min-width: 768px) { .footer-logo img { height: 120px; } }
.footer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem;
  border-top: 1px solid var(--border-dark); padding-top: 3rem; margin-top: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .footer-grid { grid-template-columns: repeat(4, 1fr) 1.2fr; } }
.footer-col h2 { font-size: 0.67rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: color-mix(in srgb, var(--ivory) 55%, transparent); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.95rem; }
.footer-col a { color: var(--ivory); }
.footer-col a:hover { color: var(--olive-lite); }
.footer-note { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in srgb, var(--ivory) 60%, transparent); }
.footer-legal { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid var(--border-dark); font-size: 0.82rem; color: color-mix(in srgb, var(--ivory) 70%, transparent); }
@media (min-width: 768px) { .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; } }
.social-row { display: flex; gap: 0.35rem; margin-top: 1.25rem; }
.social-row a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; transition: background-color .2s ease; }
.social-row a:hover { background: rgba(246,242,233,0.10); }
.social-row svg { width: 18px; height: 18px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; background: var(--ink); color: var(--ivory); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset-inline: 0; bottom: 0; height: 66%;
  background: linear-gradient(to top, rgba(18,16,11,.82), rgba(18,16,11,.34) 45%, transparent); }
.hero-inner {
  position: relative; max-width: var(--wrap-wide); margin-inline: auto;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 1.25rem 3rem;
}
@media (min-width: 768px) { .hero-inner { padding: 10rem 2.5rem 3.5rem; } }
.text-shadow-soft { text-shadow: 0 2px 28px rgba(0,0,0,.55); }
.text-shadow-xs { text-shadow: 0 1px 12px rgba(0,0,0,.6); }

/* hero carousel — lives inside .hero-media (already absolute inset:0) */
.carousel-track { position: absolute; inset: 0; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-dots { position: absolute; bottom: 1.5rem; right: 1.5rem; display: flex; gap: 0.5rem; z-index: 5; }
@media (min-width:768px){ .carousel-dots { right: 2.5rem; bottom: 2rem; } }
.carousel-dots button { width: 8px; height: 8px; border-radius: 999px; border: 1px solid rgba(246,242,233,.7); background: transparent; padding: 0; cursor: pointer; transition: background-color .3s ease; }
.carousel-dots button.active { background: var(--ivory); }

/* =====================================================================
   CARDS / INDEX ROWS
   ===================================================================== */
.card-hover { position: relative; display: block; }
.hover-bar {
  position: absolute; inset-inline: 0; bottom: 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; padding: 0.9rem 1.15rem;
  background: var(--ink); color: var(--ivory);
  transform: translateY(101%); transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.card-hover:hover .hover-bar, .card-hover:focus-visible .hover-bar { transform: translateY(0); }

.index-list { border-top: 1px solid var(--border-dark); }
.index-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0.25rem; border-bottom: 1px solid var(--border-dark);
  transition: background-color .28s ease, color .28s ease, padding .28s ease;
}
.index-row:hover { background: var(--ivory); color: var(--ink); padding-inline: 0.9rem; }
.index-row .idx-arrow { transition: transform .3s ease; }
.index-row:hover .idx-arrow { transform: translateX(6px); }

/* =====================================================================
   GALLERY (masonry columns) + LIGHTBOX
   ===================================================================== */
.gallery { column-gap: 1rem; columns: 1; }
@media (min-width: 640px) { .gallery { columns: 2; } }
@media (min-width: 1024px) { .gallery { columns: 3; column-gap: 1.25rem; } }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; display: block; width: 100%; background: none; border: 0; padding: 0; cursor: zoom-in; }
@media (min-width: 1024px) { .gallery-item { margin-bottom: 1.25rem; } }
.gallery-item .img-frame { width: 100%; }
.gallery-item img { width: 100%; height: auto; }

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(18,16,11,0.94); padding: 1.5rem;
}
.lightbox.open { display: flex; }
html.js .lightbox.open { animation: lb-in .3s ease both; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
html.js .lightbox.open img { animation: lbimg-in .4s cubic-bezier(.22,1,.36,1) both; }
@keyframes lbimg-in { from { opacity: 0; transform: scale(.985);} to { opacity: 1; transform: none; } }
.lightbox-caption { position: absolute; bottom: 1.25rem; left: 0; right: 0; text-align: center; color: color-mix(in srgb, var(--ivory) 82%, transparent); font-size: 0.85rem; letter-spacing: 0.04em; padding-inline: 1rem; }
.lightbox-btn {
  position: absolute; top: 1.1rem; background: transparent; border: 1px solid rgba(246,242,233,.35);
  color: var(--ivory); width: 46px; height: 46px; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: background-color .2s ease;
}
.lightbox-btn:hover { background: rgba(246,242,233,.12); }
.lightbox-close { right: 1.1rem; }
.lb-prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 1.1rem; transform: none; } .lb-prev { left: 1.1rem; } .lb-next { right: 1.1rem; } }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem 3rem; }
@media (min-width: 700px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.42; text-wrap: pretty; }
.quote-card figcaption { margin-top: 1.1rem; font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive); }
.on-dark .quote-card figcaption { color: var(--olive-lite); }
.stars { display: inline-flex; gap: 2px; color: var(--olive); margin-bottom: 0.85rem; }
.on-dark .stars { color: var(--olive-lite); }
.stars svg { width: 15px; height: 15px; }

/* =====================================================================
   FORMS
   ===================================================================== */
.field { margin-bottom: 1.25rem; }
.field label, .field-label {
  display: block; margin-bottom: 0.5rem; font-size: 0.72rem;
  letter-spacing: var(--tracking-label); text-transform: uppercase; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border-soft); background: #fff;
  padding: 0.8rem 1rem; font-size: 0.95rem; transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); outline: none; }
.field textarea { min-height: 160px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0 1.25rem; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }

/* =====================================================================
   UTILITIES
   ===================================================================== */
.stack > * + * { margin-top: var(--stack, 1rem); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }
.grid-2.narrow-left { grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-2.narrow-left { grid-template-columns: 1fr 1.1fr; } }
@media (min-width: 900px) { .grid-2.narrow-right { grid-template-columns: 1.15fr 1fr; } }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; } .mt-9 { margin-top: 2.25rem; } .mt-12 { margin-top: 3rem; }
.mb-10 { margin-bottom: 2.5rem; } .mb-14 { margin-bottom: 3.5rem; }
.pt-4 { padding-top: 1rem; }
.flex { display: flex; } .items-end { align-items: flex-end; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; } .gap-6 { gap: 1.5rem; } .flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: 0.5rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: var(--ink); }
::-webkit-scrollbar-track { background: transparent; }
