/* ============================================================
   Black Lantern Tattoo - single page
   Palette and type drawn from the studio logo:
   lantern charcoal, bone cream, burnt orange (the candle),
   Fraunces for display (rugged serif), Instrument Sans for body.
   ============================================================ */

/* ---------- fonts (self-hosted) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-var.woff2") format("woff2");
}

/* ---------- tokens ---------- */
:root {
  --bg: #100e0c;
  --bg-raised: #171411;
  --ink: #ede4d3;
  --ink-muted: #b3a996;
  --line: rgba(237, 228, 211, 0.14);
  --line-strong: rgba(237, 228, 211, 0.3);
  --accent: #c4552d;        /* decorative, rules, large text */
  --accent-bright: #e0875b; /* links, small accents - contrast on dark bg */
  --accent-deep: #a8431f;   /* button backgrounds - cream text passes on this */
  --focus: #e8a87c;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --wrap: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-gap: clamp(3.5rem, 9vw, 6.5rem);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent-bright); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
::selection { background: var(--accent); color: var(--ink); }

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

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 100;
  background: var(--bg);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn-primary {
  background: var(--accent-deep);
  color: var(--ink);
  border-color: var(--accent-deep);
}
.btn-primary:hover { background: #bc5327; border-color: #bc5327; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
.btn-sm { padding: 0.65rem 1rem; font-size: 0.9rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark { width: 36px; height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
/* one quiet brand detail: a hand-drawn wobble under the name */
.brand-name::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: 2px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="3" viewBox="0 0 60 3"><path d="M0 1.5 Q 7.5 0.4 15 1.5 T 30 1.5 T 45 1.5 T 60 1.5" fill="none" stroke="%23c4552d" stroke-width="1.6"/></svg>') repeat-x left center / 60px 3px;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0; padding: 0;
}
.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--ink); }

/* ---------- hero (image background; video-ready) ---------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  min-height: min(88vh, 46rem);
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 11vw, 7.5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* keep the hand-painted signage in frame */
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.7); /* semi-opaque black for text legibility */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy { max-width: 46rem; }
.hero-copy .lede {
  max-width: 38em;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 30em;
}
.hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--accent-bright);
  margin: 0 0 1.8rem;
}
.band-kicker {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--accent-bright);
  margin-top: 1.4rem;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  margin-bottom: 0.45em;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 34em;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

/* ---------- prose bands (intro / about) ---------- */
.prose-band {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
/* parallax backdrop bands: image behind content, JS-driven scroll drift
   (static cover fallback when JS is off or prefers-reduced-motion is set) */
.parallax { position: relative; overflow: hidden; }
.parallax .band-bg {
  position: absolute;
  inset: -30% 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
  will-change: transform;
}
.parallax .band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 14, 12, 0.62);
}
.parallax > .wrap { position: relative; z-index: 2; }
.parallax .parallax-scrim {
  background: rgba(16, 14, 12, 0.55);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
}
@media (prefers-reduced-motion: reduce) {
  .parallax .band-bg { transform: none !important; }
}
/* per-band accents */
.about-band .band-bg { opacity: 0.5; }
.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.prose-grid h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 12em; }
.prose p { color: var(--ink-muted); max-width: 38em; }
.prose em { color: var(--ink); font-style: italic; }

/* ---------- section heads ---------- */
.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 46em;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-note { color: var(--ink-muted); }

/* ---------- gallery ---------- */
.gallery-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.gallery-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } /* 9 pieces = clean 3×3 */
}
.shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color 160ms ease;
}
.shot img {
  aspect-ratio: 1 / 1;          /* square tiles whatever the source aspect is ... */
  object-fit: cover;
  object-position: center;      /* ... cropped from the middle, never from the top */
  transition: transform 240ms ease;
}
.shot:hover { border-color: var(--accent); }
.shot:hover img { transform: scale(1.025); }
.gallery-more {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* ---------- the shop (interior photos) ---------- */
.studio-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.studio-photo {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  overflow: hidden;
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 240ms ease;
}
.studio-photo:hover img { transform: scale(1.02); }
.studio-photo:first-child {
  grid-column: 1 / -1;      /* big lead image */
  aspect-ratio: 16 / 8;
}
.studio-photo:first-child img { aspect-ratio: auto; height: 100%; }
.studio-note {
  margin-top: 1.4rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ---------- artists ---------- */
.artists-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.artist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.artist:first-of-type { border-top: none; padding-top: 0; }
.artist h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.4em;
}
.artist-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-top: 0.35rem;
}
.artist-body p { color: var(--ink-muted); max-width: 40em; }
.contact-list {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}
.contact-list li { color: var(--ink-muted); }
.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--accent-bright);
  color: var(--accent-bright);
  white-space: nowrap;
}
.artist-qr {
  justify-self: center;
  align-self: start;
  text-align: center;
  max-width: 14rem;
}
.artist-side {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  justify-self: center;
}
.artist-photo {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 0.5rem;
  max-width: 22rem;
}
.artist-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.artist-photo figcaption {
  padding: 0.55rem 0.2rem 0.2rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}
.artist-qr img {
  width: 100%;
  border: 1px solid var(--line-strong);
  padding: 0.6rem;
  background: #fff; /* QR needs white ground to scan */
}
.qr-hint {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ---------- process ---------- */
.process-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.steps {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 2rem 1.5rem;
}
.steps li { counter-increment: step; }
.steps h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4em;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.steps h3::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}
.steps p { color: var(--ink-muted); font-size: 0.95rem; }
.process-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.process-note strong { color: var(--ink); }
.process-cta {
  margin-top: 1.6rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
}
.process-cta h3 { margin: 0 0 0.4em; }
.process-cta p { color: var(--ink-muted); }
.process-cta .btn { margin-right: 0.8rem; margin-bottom: 0.6rem; }
#book { scroll-margin-top: 5rem; }

/* ---------- customer reviews ---------- */
.reviews-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.reviews-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.5rem;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}
.review blockquote {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.review blockquote + blockquote { margin-top: 0.8em; }
.review-stars {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.25em;
}
.review-author {
  margin: auto 0 0;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.review-author img { border-radius: 50%; flex: none; }
.reviews-more { margin-top: 1.4rem; font-size: 0.95rem; color: var(--ink-muted); }

/* ---------- work with us ---------- */
.jobs-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.jobs-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.job {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}
.job h3 { font-size: 1.1rem; margin-bottom: 0.5em; }
.job p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }
.jobs-cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- mailing list ---------- */
.signup-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
  background: var(--bg-raised);
}
.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.signup-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.signup-copy p { color: var(--ink-muted); max-width: 34em; }
.signup-form { display: grid; gap: 0.7rem; }
.signup-form > label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.signup-form input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font: inherit;
}
.signup-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0;
  text-transform: none;
}
.signup-consent input { margin-top: 0.3rem; flex: none; }
.signup-form .btn { justify-self: start; margin-top: 0.3rem; }
.signup-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.signup-state {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  font-size: 0.9rem;
}
.signup-state.ok { border-color: #4d7c43; color: #a3d18f; }
.signup-state.error { border-color: #a8431f; color: #e0875b; }
@media (max-width: 780px) {
  .signup-grid { grid-template-columns: 1fr; }
}

/* ---------- find us & parking ---------- */
.visit-section {
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-gap);
}
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.visit-info address {
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-muted);
}
.visit-info address strong { color: var(--ink); }
.visit-email { margin-top: 0.8rem; }
.visit-info h3 {
  font-size: 1.12rem;
  margin: 1.6rem 0 0.7em;
}
.parking-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.parking-list strong { color: var(--ink); font-weight: 600; }
.visit-map {
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
  padding: 0.5rem;
}
.visit-map img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 921px) {
  .visit-map img { height: 100%; min-height: 26rem; object-fit: cover; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--bg-raised); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.footer-brand img { width: 72px; height: 72px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0.8rem 0 0.2rem;
}
.footer-brand p { color: var(--ink-muted); font-size: 0.95rem; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.site-footer address { font-style: normal; color: var(--ink-muted); line-height: 1.7; }
.footer-email { margin-top: 0.8rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  color: var(--ink-muted);
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.93);
}
.lightbox-panel {
  position: relative;
  max-width: min(56rem, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
.lightbox-panel img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
}
.lightbox figcaption {
  padding: 0.9rem 0.2rem 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 1;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent-bright); }
body.lightbox-open { overflow: hidden; }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .prose-grid { grid-template-columns: 1fr; gap: 1rem; }
  .artist { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .visit-map { order: -1; } /* map above details on touch devices - orientation first */
  .studio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } /* 1 lead + 2 below */
  .artist-qr {
    order: 1;
    justify-self: start;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 1rem;
    text-align: left;
    max-width: none;
  }
  .artist-qr img { width: 11rem; }
  .qr-hint { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-nav { display: none; } /* one-page site: CTA + scroll carries navigation on small screens */
  .hero { min-height: 0; padding-block: clamp(5rem, 22vw, 8rem); }
  .hero-bg { object-position: 62% center; } /* show the door+lantern edge of frame on narrow screens */
}

@media (max-width: 560px) {
  .header-inner { flex-wrap: wrap; padding-block: 0.8rem; row-gap: 0.6rem; }
  .header-cta { margin-left: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .studio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; }
  .artist-qr { grid-template-columns: 1fr; justify-items: start; }
  .artist-qr img { width: 10rem; }
}
