/* ==========================================================================
   True North Tattoo — main stylesheet
   Ported from the Claude Design prototype (True North Tattoo.dc.html).
   Inline styles in the prototype become the tokens + classes below.
   ========================================================================== */

:root {
  --bone: #f2ece1;
  --ink: #14100e;
  --ink-soft: #241c18;
  --sand: #e6ddce;
  --muted: #4a423b;
  --accent: #c1352a;

  --rule-ink: rgba(20, 16, 14, 0.16);
  --rule-bone: rgba(242, 236, 225, 0.16);

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Newsreader", Georgia, serif;

  --gutter: clamp(20px, 5vw, 40px);
  --max: 1280px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--bone); }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  min-height: 100vh;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--accent); color: var(--bone); }

img { max-width: 100%; display: block; }

/* Accessible skip link ---------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: 96px; padding-bottom: 0; }
.section--pad { padding-top: 96px; padding-bottom: 96px; }
.section--dark { background: var(--ink); color: var(--bone); }
.section--sand { background: var(--sand); }
.section--dark .wrap,
.section--sand .wrap { padding-top: 88px; padding-bottom: 88px; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.eyebrow {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.9;
  text-transform: uppercase;
}

.page-title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
}

.lede {
  margin: 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}
.lede--wide { max-width: 640px; }
.section--dark .lede { color: rgba(242, 236, 225, 0.7); }

.note {
  margin: 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* Section header: title left, supporting note right ----------------------- */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-head--ruled {
  border-bottom: 1px solid var(--rule-ink);
  padding-bottom: 22px;
}
.section-head--gap { margin-bottom: 44px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn--sm { padding: 13px 26px; font-size: 15px; letter-spacing: 0.16em; }

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

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

.btn--outline-ink { border-color: var(--ink); color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--bone); }

.btn--outline-bone {
  border-color: rgba(242, 236, 225, 0.4);
  color: var(--bone);
}
.btn--outline-bone:hover { background: var(--bone); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--sm { gap: 12px; padding-top: 6px; }

.text-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--rule-bone);
}

.brand { display: flex; align-items: baseline; gap: 10px; color: var(--bone); }
.brand:hover { color: var(--bone); }
.brand__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__sub {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a { color: var(--bone); }
.nav a:hover,
.nav a[aria-current="page"] { color: var(--accent); }

.nav__cta {
  padding: 9px 18px;
  background: var(--accent);
  color: var(--bone);
  letter-spacing: 0.12em;
}
.nav__cta:hover,
.nav__cta[aria-current="page"] { background: var(--bone); color: var(--ink); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 72px;
  z-index: 49;
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid var(--rule-bone);
  padding: 8px var(--gutter) 24px;
  flex-direction: column;
  gap: 2px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  color: var(--bone);
  border-bottom: 1px solid rgba(242, 236, 225, 0.12);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav__cta {
  margin-top: 14px;
  padding: 16px 0;
  text-align: center;
  background: var(--accent);
  color: var(--bone);
  letter-spacing: 0.16em;
  border-bottom: 0 !important;
}

@media (max-width: 899px) {
  .nav { display: none; }
  .burger { display: flex; }
}

/* --------------------------------------------------------------------------
   Media frames
   -------------------------------------------------------------------------- */
.frame {
  position: relative;
  min-width: 0;
  background: var(--ink);
  overflow: hidden;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame--1x1 { aspect-ratio: 1 / 1; }
.frame--3x4 { aspect-ratio: 3 / 4; }
.frame--4x5 { aspect-ratio: 4 / 5; background: var(--ink-soft); }
.frame--21x9 { aspect-ratio: 21 / 9; }

/* Placeholder shown when an image file isn't in the theme yet. Keeps layout
   intact and makes the gap obvious instead of rendering a broken image. */
.frame--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--ink-soft);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(242, 236, 225, 0.05) 0 10px,
    transparent 10px 20px
  );
}
.frame--empty span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  color: rgba(242, 236, 225, 0.5);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   Home — hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  background: var(--ink);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media .frame { height: 100%; aspect-ratio: auto; }
.hero__scrim {
  position: absolute;
  inset: 0;
  /* The mid-stop was 0.35, tuned against a dark video frame. The hero still
     is now a bright, busy shot of the flash wall, and the eyebrow lands at
     ~49% — almost exactly the gradient's lightest point — so it needs more
     cover. Deep enough for the type, light enough to keep the photo. */
  background: linear-gradient(
    to top,
    rgba(20, 16, 14, 0.94) 0%,
    rgba(20, 16, 14, 0.62) 50%,
    rgba(20, 16, 14, 0.58) 100%
  );
  pointer-events: none;
}
.hero__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--gutter) 52px;
  pointer-events: none;
}
.hero__inner { max-width: var(--max); margin: 0 auto; }
.hero__eyebrow {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero__sub {
  margin: 22px 0 0;
  max-width: 660px;
  font-size: 21px;
  line-height: 1.5;
  color: rgba(242, 236, 225, 0.86);
}

/* Walk-in banner ---------------------------------------------------------- */
.banner { background: var(--accent); color: var(--bone); }
.banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.banner__text {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.banner .btn { flex: none; }

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.work-grid--artist {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.work-card { position: relative; }
.work-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(20, 16, 14, 0.85), rgba(20, 16, 14, 0));
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.work-card__label:hover { color: var(--accent); }

.center-row { display: flex; justify-content: center; padding: 40px 0 0; }

/* Styles grid (hairline separated cells on dark) -------------------------- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(242, 236, 225, 0.18);
}
.style-cell { background: var(--ink); padding: 30px 26px; }
.style-cell h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.style-cell p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 236, 225, 0.7);
}

/* Artist cards on home ---------------------------------------------------- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.artist-card { display: block; color: var(--ink); }
.artist-card:hover { color: var(--ink); }
.artist-card .frame { margin-bottom: 16px; }
.artist-card__name {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
}
.artist-card__role {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.artist-card__blurb {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.artist-card:hover .artist-card__name { color: var(--accent); }

/* Flash teaser ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
}
.split--center { align-items: center; }
.split__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

/* Three-up teaser row with hairline dividers ------------------------------ */
.teaser-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--rule-ink);
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
}
.teaser {
  background: var(--bone);
  padding: 40px 34px;
}
.teaser:first-child { padding-left: 0; }
.teaser:last-child { padding-right: 0; }
.teaser h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 1;
}
.teaser p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 899px) {
  .teaser:first-child,
  .teaser:last-child { padding-left: 34px; padding-right: 34px; }
}

/* --------------------------------------------------------------------------
   Artists index
   -------------------------------------------------------------------------- */
.artist-rows {
  display: grid;
  gap: 1px;
  background: var(--rule-ink);
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
}
.artist-row {
  background: var(--bone);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 36px;
  padding: 36px 0;
}
.artist-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}
.artist-row__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
}
.artist-row__role {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.artist-row__blurb {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 899px) {
  .artist-row { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Artist detail
   -------------------------------------------------------------------------- */
.artist-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}
.back-link {
  display: inline-block;
  margin-bottom: 26px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.6);
}
.back-link:hover { color: var(--accent); }

.artist-hero__name {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.86;
  text-transform: uppercase;
}
.artist-hero__tagline {
  margin: 0 0 26px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.55);
}
.artist-hero__bio {
  margin: 0 0 18px;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(242, 236, 225, 0.82);
}
.artist-hero__bio:last-of-type { margin-bottom: 32px; }
.artist-hero .frame--3x4 { max-height: 560px; }

.subsection-title {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}
.work-note {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* Consult call-to-action panel -------------------------------------------- */
.cta-panel {
  background: var(--sand);
  padding: 48px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.cta-panel h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}
.cta-panel p {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Flash
   -------------------------------------------------------------------------- */
.flash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.flash-card .frame { margin-bottom: 14px; }
.flash-card h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
}
.flash-card__meta {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.flash-card a.text-link { font-size: 15px; letter-spacing: 0.14em; }

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */
.event-list { border-top: 1px solid rgba(20, 16, 14, 0.2); }
.event {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr auto;
  gap: 14px 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(20, 16, 14, 0.2);
}
.event__date {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--accent);
}
.event h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}
.event p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); }
.event__place {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* --------------------------------------------------------------------------
   Aftercare
   -------------------------------------------------------------------------- */
.care-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}
.care-title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
}
.care-steps {
  margin: 0;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  display: grid;
  gap: 16px;
}
.care-steps strong { color: var(--ink); }

.care-blocks { display: grid; gap: 22px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.care-blocks h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.care-blocks p { margin: 0; }

/* --------------------------------------------------------------------------
   Visit
   -------------------------------------------------------------------------- */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule-ink);
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
  margin-bottom: 56px;
}
.info {
  background: var(--bone);
  padding: 34px 30px;
}
.info:first-child { padding-left: 0; }
.info:last-child { padding-right: 0; }
.info h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.info p { margin: 0; font-size: 19px; line-height: 1.6; }

@media (max-width: 899px) {
  .info:first-child,
  .info:last-child { padding-left: 30px; padding-right: 30px; }
}

.consult-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 0.92;
  text-transform: uppercase;
}
.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.consult-card {
  display: block;
  padding: 28px 26px;
  background: var(--ink);
  color: var(--bone);
}
.consult-card:hover { background: var(--accent); color: var(--bone); }
.consult-card__name {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.consult-card__role {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.65);
}
.consult-card:hover .consult-card__role { color: rgba(242, 236, 225, 0.85); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(242, 236, 225, 0.65);
  border-top: 1px solid var(--rule-bone);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.site-footer p { margin: 0; font-size: 17px; line-height: 1.6; }
.site-footer__brand {
  margin: 0 0 10px !important;
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer__links a { color: rgba(242, 236, 225, 0.8); }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__bar { border-top: 1px solid rgba(242, 236, 225, 0.14); }
.site-footer__bar div {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Editorial fallback (index.php / 404 / single post)
   -------------------------------------------------------------------------- */
.prose { max-width: 720px; font-size: 19px; line-height: 1.7; color: var(--muted); }
.prose h2, .prose h3 { color: var(--ink); font-family: var(--display); text-transform: uppercase; }
.prose a { text-decoration: underline; }

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

/* --------------------------------------------------------------------------
   Gravity Forms — consult request
   Restyled to the shop's design system. GF ships its own opinionated CSS, so
   these rules are deliberately specific enough to win without !important.
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--sand);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
.form-panel__intro { max-width: 640px; margin-bottom: 36px; }
.form-panel__intro .consult-title { margin-bottom: 12px; }

.form-panel .gform_wrapper { margin: 0; }
.form-panel .gform_wrapper form { margin: 0; }

/* Field grid */
.form-panel .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px 28px;
}
/* Long-form fields span the full width. */
.form-panel .gform_wrapper .gfield--type-textarea,
.form-panel .gform_wrapper .gfield--type-fileupload,
.form-panel .gform_wrapper .gfield--type-radio { grid-column: 1 / -1; }

.form-panel .gform_wrapper .gfield { min-width: 0; }

/* Labels */
.form-panel .gform_wrapper .gfield_label {
  display: block;
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-panel .gform_wrapper .gfield_required { color: var(--accent); }

/* Descriptions */
.form-panel .gform_wrapper .gfield_description {
  padding: 6px 0 0;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* Inputs */
.form-panel .gform_wrapper input[type="text"],
.form-panel .gform_wrapper input[type="email"],
.form-panel .gform_wrapper input[type="tel"],
.form-panel .gform_wrapper input[type="number"],
.form-panel .gform_wrapper textarea,
.form-panel .gform_wrapper select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bone);
  border: 1px solid rgba(20, 16, 14, 0.22);
  border-radius: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-panel .gform_wrapper textarea { min-height: 150px; resize: vertical; }

.form-panel .gform_wrapper input:focus,
.form-panel .gform_wrapper textarea:focus,
.form-panel .gform_wrapper select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(193, 53, 42, 0.18);
}
.form-panel .gform_wrapper ::placeholder { color: rgba(74, 66, 59, 0.6); }

/* Radios */
.form-panel .gform_wrapper .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.form-panel .gform_wrapper .gchoice {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  color: var(--muted);
}
.form-panel .gform_wrapper .gchoice input { accent-color: var(--accent); width: 18px; height: 18px; }

/* File upload */
.form-panel .gform_wrapper .gform_drop_area {
  background: var(--bone);
  border: 1px dashed rgba(20, 16, 14, 0.3);
  border-radius: 0;
  padding: 26px;
  color: var(--muted);
}

/* Buttons.
   Gravity Forms 3.0 ships the "orbital" theme, which styles buttons through
   --gf-ctrl-* custom properties applied by selectors that outrank anything
   reasonable we could write. Setting the properties is the supported way to
   theme it, and survives GF updates better than a specificity war. */
.form-panel .gform_wrapper .gform_footer { margin: 32px 0 0; padding: 0; }

.form-panel .gform_wrapper.gform-theme {
  /* Submit */
  --gf-ctrl-btn-bg-color-primary: var(--accent);
  --gf-ctrl-btn-bg-color-hover-primary: var(--ink);
  --gf-ctrl-btn-bg-color-focus-primary: var(--ink);
  --gf-ctrl-btn-color-primary: var(--bone);
  --gf-ctrl-btn-color-hover-primary: var(--bone);
  --gf-ctrl-btn-color-focus-primary: var(--bone);
  --gf-ctrl-btn-border-color-focus-primary: var(--ink);
  --gf-ctrl-btn-radius: 0;
  --gf-ctrl-btn-shadow: none;
  --gf-ctrl-btn-shadow-hover: none;
  --gf-ctrl-btn-shadow-focus: none;
  --gf-ctrl-btn-font-family: var(--display);
  --gf-ctrl-btn-font-size: 17px;
  --gf-ctrl-btn-font-weight: 700;
  --gf-ctrl-btn-letter-spacing: 0.18em;
  --gf-ctrl-btn-text-transform: uppercase;
  --gf-ctrl-btn-padding-x: 38px;
  --gf-ctrl-btn-size: 56px;

  /* "Select files" on the upload field */
  --gf-ctrl-file-btn-font-family: var(--display);
  --gf-ctrl-file-btn-font-size: 14px;
  --gf-ctrl-file-btn-font-weight: 700;
  --gf-ctrl-file-btn-letter-spacing: 0.16em;
  --gf-ctrl-file-btn-text-transform: uppercase;
  --gf-ctrl-file-btn-radius: 0;
}

/* Validation + confirmation */
.form-panel .gform_wrapper .gfield_validation_message,
.form-panel .gform_wrapper .validation_message {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(193, 53, 42, 0.1);
  border: 0;
  border-left: 3px solid var(--accent);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
}
.form-panel .gform_wrapper .gform_validation_errors {
  margin-bottom: 24px;
  padding: 14px 18px;
  background: rgba(193, 53, 42, 0.1);
  border: 0;
  border-left: 3px solid var(--accent);
  box-shadow: none;
}
.form-panel .gform_wrapper .gform_validation_errors h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-panel .gform_confirmation_message {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}
.form-panel .gform_confirmation_message strong { color: var(--accent); }

/* GF's honeypot must stay hidden. */
.form-panel .gform_wrapper .gform_validation_container { display: none !important; }

/* Hero background video ---------------------------------------------------
   The poster is set on the element itself, so it fills the frame identically
   whether or not the video ever loads. */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

/* The "no preference" consult card — same shape, quieter than the artists. */
.consult-card--any {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.consult-card--any .consult-card__role { color: var(--muted); }
.consult-card--any:hover { background: var(--ink); color: var(--bone); }
.consult-card--any:hover .consult-card__role { color: rgba(242, 236, 225, 0.65); }

/* --------------------------------------------------------------------------
   "Coming soon" panel — Flash and Events, while their lists are empty.
   Sits where the grid would, so the page keeps its shape.
   -------------------------------------------------------------------------- */
.notice-panel {
  background: var(--sand);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-left: 4px solid var(--accent);
}
.notice-panel__title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}
.notice-panel__text {
  margin: 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}

/* Flash designs are line drawings, not photographs. `cover` would crop the
   artwork, so these frames letterbox on the bone ground instead. */
.frame--art {
  background: var(--bone);
  border: 1px solid var(--rule-ink);
}
.frame--art img {
  object-fit: contain;
  padding: 8%;
}

/* --------------------------------------------------------------------------
   Flash sheets — whole sheets shown as-is, click to enlarge
   -------------------------------------------------------------------------- */
.sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}
.sheet { margin: 0; }

.sheet__link {
  position: relative;
  display: block;
  background: var(--bone);
  border: 1px solid var(--rule-ink);
  cursor: zoom-in;
}
.sheet__link img {
  width: 100%;
  height: auto;
  display: block;
  padding: 4%;
}
.sheet__link:hover { border-color: var(--accent); }

.sheet__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.sheet__link:hover .sheet__zoom,
.sheet__link:focus-visible .sheet__zoom { opacity: 1; }
/* Touch devices get no hover, so keep the affordance visible. */
@media (hover: none) {
  .sheet__zoom { opacity: 1; }
}

.sheet__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}
.sheet__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
}

/* Lightbox ---------------------------------------------------------------- */
.tnt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(20, 16, 14, 0.94);
  cursor: zoom-out;
}
.tnt-lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  background: var(--bone);
  object-fit: contain;
}
.tnt-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--bone);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.tnt-lightbox__close:hover { color: var(--accent); }
body.tnt-lightbox-open { overflow: hidden; }
