:root {
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --ink: #161513;
  --muted: #3a3834;
  --line: #d4cfc3;
  --lake: #1f4e5f;
  --lake-2: #2a6f84;
  --copper: #c45c26;
  --white: #fffcf7;
  --radius: 8px;
  --font-head: "Manrope", system-ui, sans-serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--paper);
  color: var(--ink);
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(22,21,19,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,21,19,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
img { max-width: 100%; display: block; outline: 1px solid rgba(22,21,19,0.08); outline-offset: -1px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
input, select, textarea { color: inherit; }
::selection { background: var(--lake); color: var(--white); }

.skip {
  position: absolute; left: 12px; top: -40px; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 8px 12px; font-size: 13px;
}
.skip:focus { top: 12px; }

#navbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 var(--gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-clock {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--ink);
}
.logo img { width: 22px; height: 22px; outline: none; }
.logo small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 11px;
  color: var(--muted);
  text-transform: none;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lake); }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.nav-parent::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  vertical-align: 2px;
}
.nav-sub {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 12px 28px rgba(16, 12, 8, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms var(--ease), transform 140ms var(--ease), visibility 140ms;
  z-index: 60;
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub,
.nav-item.open .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
  white-space: nowrap;
}
.nav-sub a:hover,
.nav-sub a:focus-visible {
  color: var(--ink);
  background: var(--paper);
}
.btn,
button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #4a4034;
  text-shadow:
    0 -1px 0 rgba(32, 22, 12, 0.55),
    0 1px 0 rgba(255, 252, 245, 1),
    0 0 0.5px rgba(40, 28, 16, 0.35);
  background:
    radial-gradient(120% 140% at 32% 18%, #fffdf7 0%, #efe4cc 48%, #d2c0a0 100%);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.9),
    inset 0 -3px 6px rgba(72, 52, 32, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 3px 0 #c4b496,
    0 8px 14px rgba(16, 12, 8, 0.2);
  transition-property: transform, box-shadow, filter;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}
.btn:hover,
button.btn:hover {
  color: #4a4034;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.95),
    inset 0 -3px 6px rgba(72, 52, 32, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 0 #c4b496,
    0 12px 18px rgba(16, 12, 8, 0.22);
}
.btn:active,
button.btn:active {
  filter: none;
  transform: translateY(2px);
  text-shadow:
    0 1px 0 rgba(255, 252, 245, 0.2),
    0 1px 2px rgba(32, 22, 12, 0.45);
  box-shadow:
    inset 0 3px 8px rgba(40, 32, 22, 0.34),
    inset 0 -1px 1px rgba(255, 255, 255, 0.22),
    0 1px 0 #c4b496;
}
.nav-links .btn,
.nav-links .btn:hover,
.nav-links .btn:active {
  color: #4a4034;
}
.btn.ghost {
  background: linear-gradient(#fffaf0, #eadfc8);
  color: #4a4034;
  text-shadow:
    0 -1px 0 rgba(32, 22, 12, 0.45),
    0 1px 0 rgba(255, 252, 245, 1);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -2px 4px rgba(72, 52, 32, 0.12),
    0 2px 0 #c9c0ae,
    0 6px 12px rgba(40, 36, 30, 0.1);
}
.btn.ghost:hover {
  color: #4a4034;
  background-color: #efe4cc;
  background-image: linear-gradient(#fff, #e4d8c0);
}
.btn.copper {
  background: radial-gradient(120% 140% at 32% 18%, #e08a54 0%, #c45c26 55%, #8a3a16 100%);
  color: #3a1c0c;
  text-shadow:
    0 1px 0 rgba(255, 220, 190, 0.45),
    0 -1px 0 rgba(80, 24, 8, 0.4);
}
.btn.copper:hover { filter: brightness(1.05); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute; left: 12px; width: 20px; height: 1.5px; background: var(--ink); content: "";
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

#mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 40;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px var(--gutter);
  visibility: hidden; opacity: 0;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
  border-top: 1px solid var(--line);
}
#mobile-menu.open { visibility: visible; opacity: 1; }
#mobile-menu a {
  font-family: var(--font-ui); font-size: 26px; font-weight: 700; padding: 8px 0;
  color: var(--ink);
}
#mobile-menu a.active { color: var(--lake); }
#mobile-menu .mobile-sub {
  display: grid;
  gap: 2px;
  padding: 0 0 10px 2px;
  margin: -4px 0 4px;
}
#mobile-menu .mobile-sub a {
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0;
  color: var(--muted);
}

.wrap { width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 96px) 0; }
.kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lake); margin-bottom: 12px;
}
.display {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08; letter-spacing: -0.025em;
  text-wrap: balance;
}
.lede {
  max-width: 38rem; color: var(--muted); font-size: 18px;
  text-wrap: pretty; margin-top: 16px;
}
.lede a { color: var(--lake); text-decoration: underline; text-underline-offset: 3px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px); align-items: end;
  padding: clamp(40px, 7vw, 80px) 0 48px;
}
.hero-place {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.hero-visual {
  background: var(--ink); color: var(--paper);
  min-height: 340px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-visual p { color: #c8c2b6; font-size: 14px; }
.hero-visual strong {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 700;
}
.hero-visual ul { list-style: none; display: grid; gap: 8px; font-size: 14px; color: #d9d3c7; }
.hero-visual li::before { content: "→ "; color: var(--copper); }

.band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; color: var(--muted); font-size: 14px;
}
.band-track {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}

/* Product cards */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 32px;
}
.product {
  background: var(--white); border: 1px solid var(--line);
  padding: 24px; min-height: 280px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.product:hover { border-color: var(--ink); }
.product .num { font-family: var(--font-mono); font-size: 12px; color: var(--copper); }
.product h3 {
  font-family: var(--font-head); font-size: 26px; margin: 10px 0 12px;
}
.product p { color: var(--muted); font-size: 15px; flex: 1; }
.product .meta { margin-top: 18px; font-size: 13px; color: var(--lake); font-weight: 500; }

.split {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px); align-items: start;
}
.work-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px; margin-top: 28px;
}
.work-card {
  background: var(--white); border: 1px solid var(--line); padding: 20px;
  min-height: 180px; display: flex; flex-direction: column; justify-content: space-between;
}
.work-card:hover { border-color: var(--ink); }
.work-card h3 { font-family: var(--font-head); font-size: 22px; }
.work-card p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.work-card .meta, .product .meta { margin-top: 18px; font-size: 13px; color: var(--lake); font-weight: 500; }

.service-rows { margin-top: 20px; }
.service-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 16px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row h3 { font-family: var(--font-head); font-size: 22px; }
.service-row p { color: var(--muted); font-size: 15px; }
.service-row span { font-size: 13px; color: var(--lake); }

.also {
  background: var(--ink); color: var(--paper);
  padding: clamp(48px, 7vw, 72px) 0;
}
.also .kicker { color: var(--copper); }
.also .lede { color: #c8c2b6; }
.also .btn.ghost { border-color: var(--paper); color: var(--paper); }
.also .btn.ghost:hover { background: var(--paper); color: var(--ink); }

.page-hero { padding: 48px 0 24px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--lake); }
.prose { max-width: 720px; }
.prose h2 { font-family: var(--font-head); font-size: 28px; margin: 36px 0 12px; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-left: 1.15em; display: grid; gap: 8px; margin: 12px 0; }
.prose a { color: var(--lake); text-decoration: underline; text-underline-offset: 3px; }
.prose img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 0 0 32px;
  border-radius: 12px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { border: 1px solid var(--line); padding: 6px 10px; font-size: 13px; color: var(--muted); }

.vinyl-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin: 8px 0 36px;
}
.vinyl-gallery .wide { grid-column: 1 / -1; }
.vinyl-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 #fff,
    0 10px 24px rgba(22, 21, 19, 0.08);
}
.vinyl-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.vinyl-block .portrait img {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-position: center 18%;
}
.vinyl-shot figcaption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.vinyl-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 40px 0;
  scroll-margin-top: calc(var(--nav-h) + 12px);
}
.vinyl-block.reverse .vinyl-shot { order: 2; }
.vinyl-block h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 12px;
}
.vinyl-block p, .vinyl-block li { color: var(--muted); }
.vinyl-block ul { padding-left: 1.15em; display: grid; gap: 8px; margin: 14px 0; }
.vinyl-wall { margin: 8px 0 0; }
.vinyl-wall img { aspect-ratio: 16 / 8; }
.vinyl-end-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; background: var(--white); border: 1px solid var(--line);
  padding: 12px 12px; font-size: 16px; border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--lake); outline-offset: 1px;
}
.honeypot { position: absolute; left: -9999px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.checkbox input { width: auto; }
.form-status { margin-top: 12px; font-size: 14px; }
.form-status.ok { color: var(--lake); }
.form-status.err { color: #9b2c2c; }
.form-actions {
  position: relative;
  margin-top: 24px;
}
.form-actions.is-live {
  min-height: 128px;
}
.form-actions .btn.is-dodging {
  position: absolute;
  z-index: 2;
  margin: 0;
  transition-property: left, top, transform, box-shadow, filter;
}
.form-actions .btn.is-dodging:hover,
.form-actions .btn.is-dodging:active {
  transform: none;
}

.studio-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 #fff,
    0 10px 24px rgba(22, 21, 19, 0.08);
}
.studio-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.15) sepia(0.08) contrast(0.96);
}
.studio-map .map-cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.studio-map .map-cap a { color: var(--lake); }
.studio-map .map-links { display: flex; gap: 14px; }
.studio-map .map-cap a:hover { text-decoration: underline; text-underline-offset: 3px; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0;
  min-height: 56px; display: flex; justify-content: space-between; gap: 12px;
  font-size: 16px;
}
.faq-item .answer { display: none; color: var(--muted); padding: 0 0 16px; }
.faq-item.open .answer { display: block; }

footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--gutter) 28px;
  background: var(--paper-2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px; max-width: var(--max); margin: 0 auto 28px;
}
.footer-brand { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.footer-col h2 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin: 7px 0; color: var(--muted); }
.footer-col a:hover { color: var(--ink); }
.footer-base {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line);
}

#cookie-banner {
  position: fixed; left: var(--gutter); right: var(--gutter); bottom: 16px;
  z-index: 70; background: var(--white); border: 1px solid var(--line);
  padding: 14px 16px; display: none; gap: 12px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
#cookie-banner.show { display: flex; }
#cookie-banner p { font-size: 13px; color: var(--muted); max-width: 52ch; }

#to-top {
  --ball: 56px;
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 60;
  width: var(--ball);
  height: var(--ball);
  min-width: var(--ball);
  min-height: var(--ball);
  padding: 0;
  display: grid;
  place-items: center;
  color: #3d3428;
  background:
    radial-gradient(circle at 32% 26%, #fffdf8 0%, #f3ead8 34%, #d8c8ae 68%, #bba888 100%);
  border: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 3px 3px rgba(255, 255, 255, 0.78),
    inset 0 -6px 10px rgba(72, 56, 36, 0.22),
    inset 4px 6px 8px rgba(255, 255, 255, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 22px rgba(16, 12, 8, 0.32),
    0 4px 8px rgba(16, 12, 8, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition-property: opacity, transform, visibility, box-shadow;
  transition-duration: 0.22s;
  transition-timing-function: var(--ease);
}
#to-top::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 11px;
  top: 8px;
  left: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(1.5px);
  pointer-events: none;
}
.to-top-well {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, #d2c4ac 0%, #b6a68c 58%, #9a8a70 100%);
  box-shadow:
    inset 2px 3px 5px rgba(40, 32, 22, 0.5),
    inset -1px -2px 3px rgba(255, 248, 236, 0.38);
}
.to-top-well svg {
  width: 16px;
  height: 16px;
  display: block;
  transform: translateY(1px);
  filter: drop-shadow(0 1px 0 rgba(255, 248, 236, 0.4));
}
#to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
#cookie-banner.show ~ #to-top {
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 84px));
}
#to-top:hover {
  color: #3d3428;
  transform: translateY(-2px);
  box-shadow:
    inset 0 3px 3px rgba(255, 255, 255, 0.82),
    inset 0 -6px 10px rgba(72, 56, 36, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 26px rgba(16, 12, 8, 0.34),
    0 6px 10px rgba(16, 12, 8, 0.2);
}
#to-top:active {
  transform: translateY(2px) scale(0.97);
  box-shadow:
    inset 0 4px 10px rgba(40, 32, 22, 0.28),
    inset 0 -2px 3px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(16, 12, 8, 0.18);
}

.work-jump {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.work-jump a {
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  color: var(--ink); min-height: 44px; padding: 0 16px;
  display: inline-flex; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 1px 0 #fff inset, 0 4px 10px rgba(22,21,19,0.05);
}
.work-jump a:hover { border-color: var(--ink); }
.work-jump a:focus-visible {
  outline: 2px solid var(--lake); outline-offset: 3px;
}
.work-block { padding: 8px 0 56px; scroll-margin-top: calc(var(--nav-h) + 12px); }
.work-block .display { font-size: clamp(28px, 4vw, 42px); }
.work-block .lede { margin-bottom: 28px; }

.case {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 22px; align-items: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; padding: 10px;
  margin-bottom: 22px;
  scroll-margin-top: calc(var(--nav-h) + 12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 10px 28px rgba(22,21,19,0.06);
  transition: box-shadow 180ms var(--ease);
}
.case:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 16px 36px rgba(22,21,19,0.1);
}
.shot { margin: 0; border-radius: 12px; overflow: hidden; background: #1c1a16; }
.shot-bar {
  display: flex; gap: 6px; align-items: center;
  height: 30px; padding: 0 12px; background: #2a2722;
}
.shot-bar span { width: 8px; height: 8px; border-radius: 50%; background: #6b6560; flex-shrink: 0; }
.shot-bar em {
  margin-left: 8px; font-style: normal;
  font-family: var(--font-mono); font-size: 11px; color: #b8b2a8;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shot img {
  width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top;
  outline: 1px solid rgba(0,0,0,0.28); outline-offset: -1px;
  transition: opacity 180ms var(--ease);
}
.shot a:hover img { opacity: 0.92; }
.shot-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: #2a2722;
}
.shot-thumbs button {
  display: block;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #161412;
  outline: 1px solid transparent;
  outline-offset: 0;
}
.shot-thumbs button img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  opacity: 0.62;
  outline: none;
}
.shot-thumbs button:hover img,
.shot-thumbs button[aria-pressed="true"] img { opacity: 1; }
.shot-thumbs button[aria-pressed="true"] {
  outline-color: #e0b070;
}
.shot-thumbs button:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 2px;
}
p.case-url { margin: 0; }
.case-body { padding: 8px 12px 12px 6px; }
.case-body h2 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em; margin: 4px 0 6px; text-wrap: balance;
}
.case-url { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--lake); }
.case-url:hover { text-decoration: underline; text-underline-offset: 3px; }
.case-intro { color: var(--muted); margin: 10px 0 16px; text-wrap: pretty; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; }
.chips li {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  padding: 6px 10px; border-radius: 999px;
  background: #efe6d4; color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(40,36,30,0.12), 0 1px 0 #fff;
}
.fact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px;
}
.fact h3 {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--lake); margin-bottom: 8px;
}
.fact ul {
  padding-left: 1.1em; color: var(--muted); font-size: 14px;
  display: grid; gap: 5px; text-wrap: pretty;
}
.fact p { color: var(--muted); font-size: 14px; text-wrap: pretty; }
@media (min-width: 901px) {
  .shot { position: sticky; top: calc(var(--nav-h) + 16px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-clock { display: none; }
  .hero, .split, .product-grid, .work-grid, .form-grid, .footer-grid, .case, .fact-grid, .vinyl-block, .vinyl-gallery {
    grid-template-columns: 1fr;
  }
  .vinyl-block .vinyl-shot { order: 0; }
  .service-row { grid-template-columns: 1fr; }
  .studio-map iframe { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
