:root {
  color-scheme: dark;
  --ink: #f8f4ee;
  --muted: #a7a0aa;
  --paper: #09080b;
  --panel: #121015;
  --panel-2: #1a171d;
  --line: rgba(255, 255, 255, .12);
  --coral: #ff5d49;
  --gold: #f5b840;
  --violet: #b96cff;
  --max: 1240px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 108, 255, .09), transparent 31rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.age-locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-shell { min-height: 100vh; }
.section-wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-name { color: var(--ink); font-size: 1.3rem; font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.brand-name span { color: var(--coral); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 62px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 8, 11, .82);
  backdrop-filter: blur(18px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 710px;
  margin: auto;
  padding: 72px 0 88px;
  gap: clamp(2rem, 7vw, 7rem);
}
.hero__copy { position: relative; z-index: 2; }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 8.7vw, 8rem);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}
.hero h1 em { color: var(--coral); font-weight: 500; }
.hero__lead {
  max-width: 530px;
  margin: 2.4rem 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero__note { color: #77707b; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-height: 50px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  background: var(--coral);
  color: #150909;
  box-shadow: 0 14px 34px rgba(255, 93, 73, .21);
}
.button--primary:hover { box-shadow: 0 18px 42px rgba(255, 93, 73, .34); }
.button--quiet { border-color: var(--line); background: transparent; color: var(--ink); }

.hero__visual { position: relative; min-height: 545px; }
.hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { inset: 4% 16% 0 9%; z-index: 2; border-radius: 220px 220px 30px 30px; }
.hero-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 58%, rgba(5, 3, 6, .85));
}
.hero-card--main figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 2rem;
}
.hero-card--main figcaption span { font: 800 .68rem/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.hero-card--top { z-index: 1; top: 3%; right: 0; width: 33%; height: 38%; border-radius: 28px; transform: rotate(7deg); }
.hero-card--bottom { z-index: 3; right: 0; bottom: 0; width: 30%; height: 34%; border-radius: 28px; transform: rotate(-5deg); }
.hero-orbit {
  position: absolute;
  z-index: 4;
  bottom: 5%;
  left: 0;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  color: #201202;
  font: 900 1.7rem/.9 Georgia, serif;
  text-align: center;
  transform: rotate(-9deg);
}
.hero-orbit small { font: 900 .56rem/1 Inter, sans-serif; letter-spacing: .14em; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: .45rem; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 93, 73, .12); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #0d0b0f; }
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 35s linear infinite;
}
.marquee span { color: #c7c0c8; font: 800 .73rem/1 Inter, sans-serif; letter-spacing: .18em; }
.marquee i { width: 6px; height: 6px; margin: 0 2rem; border-radius: 50%; background: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

.directory { padding-block: 110px 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
}
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); line-height: 1.6; }
.toolbar {
  position: sticky;
  z-index: 20;
  top: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  background: rgba(9, 8, 11, .9);
  backdrop-filter: blur(16px);
}
.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 420px;
  gap: .65rem;
  height: 48px;
  padding: 0 .85rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--panel);
}
.search-box:focus-within { border-color: rgba(255, 93, 73, .7); box-shadow: 0 0 0 4px rgba(255, 93, 73, .08); }
.search-box svg { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box input::placeholder { color: #77707b; }
kbd { padding: .2rem .45rem; border: 1px solid var(--line); border-radius: 6px; color: #706a73; font: 700 .68rem/1 Inter, sans-serif; }
.filter-list { display: flex; gap: .35rem; }
.filter {
  padding: .7rem .95rem;
  border: 1px solid transparent;
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
}
.filter:hover { color: var(--ink); }
.filter.is-active { border-color: var(--line); background: var(--panel-2); color: var(--ink); }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.category-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}
.category-card:nth-child(7n + 2), .category-card:nth-child(7n + 5) { min-height: 430px; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .4s ease; }
.category-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 4, 7, .14) 56%, rgba(6, 4, 7, .96));
}
.category-card:hover img { transform: scale(1.055); filter: saturate(1.13); }
.category-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.category-card__meta { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.2rem; left: 1.25rem; }
.category-card__top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.category-card__type { color: var(--gold); font-size: .62rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.category-card__arrow { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; transition: background .2s, color .2s; }
.category-card:hover .category-card__arrow { background: var(--coral); color: #170a08; }
.category-card h3 { margin: .3rem 0 0; font-family: Georgia, serif; font-size: clamp(1.6rem, 2.2vw, 2.25rem); font-weight: 500; letter-spacing: -.04em; }
.empty-state { padding: 5rem 1rem; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state > span { color: var(--coral); font-size: 3rem; }
.empty-state h3 { margin: .5rem 0; font-family: Georgia, serif; font-size: 2rem; }
.empty-state p { color: var(--muted); }

.seo-story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  margin-bottom: 110px;
  padding-block: 60px;
  border-block: 1px solid var(--line);
}
.seo-story h2 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 5.3vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}
.seo-story__copy p { margin: 0 0 1.2rem; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; margin-top: .4rem; color: var(--gold); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link:hover { color: var(--coral); }

.gallery-view { min-height: 70vh; padding-block: 70px 120px; }
.back-link { display: inline-flex; gap: .6rem; align-items: center; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.back-link:hover { color: var(--ink); }
.gallery-hero { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: 5rem 0 3rem; }
.gallery-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(4rem, 11vw, 9rem); font-weight: 500; letter-spacing: -.07em; line-height: .78; }
.gallery-hero > div > p:last-child { max-width: 600px; margin: 2rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.gallery-index { color: var(--coral); font: 500 clamp(4rem, 9vw, 8rem)/1 Georgia, serif; opacity: .28; }
.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 1rem; }
.photo-button { overflow: hidden; border: 0; border-radius: 22px; padding: 0; background: var(--panel); cursor: zoom-in; }
.photo-button:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.photo-button:nth-child(2) { grid-column: span 5; }
.photo-button:nth-child(3) { grid-column: span 5; }
.photo-button:nth-child(4) { grid-column: span 4; }
.photo-button:nth-child(5) { grid-column: span 4; }
.photo-button:nth-child(6) { grid-column: span 4; }
.photo-button:nth-child(7) { grid-column: span 7; }
.photo-button:nth-child(8) { grid-column: span 5; }
.photo-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s; }
.photo-button:hover img { transform: scale(1.04); filter: saturate(1.15); }
.photo-button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.gallery-next { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.gallery-next > p { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.related-categories { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.related-categories button { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 99px; background: var(--panel); color: var(--ink); cursor: pointer; font-weight: 800; }
.related-categories button:hover { border-color: var(--coral); }

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 0 0 2rem;
}
.footer-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-bottom: 1.5rem;
  padding: clamp(2.25rem, 5.8vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 40px;
  background:
    radial-gradient(circle at 8% 100%, rgba(185, 108, 255, .2), transparent 27rem),
    linear-gradient(135deg, #1d1419, #100e13 62%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}
.footer-promo::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -210px;
  right: -80px;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(100px);
  opacity: .22;
  pointer-events: none;
}
.footer-promo__brand,
.footer-promo__copy { position: relative; z-index: 1; }
.footer-promo__brand {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}
.footer-promo__brand > a { display: inline-block; width: min(100%, 270px); margin: -.6rem 0 -.1rem; }
.footer-promo__brand img { width: 100%; height: auto; }
.footer-promo__brand > p:last-child { max-width: 310px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.footer-promo__copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.65rem, 5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}
.footer-promo__copy > p:not(.eyebrow) { max-width: 680px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.footer-promo__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.footer-promo__actions .button--quiet { background: rgba(255, 255, 255, .035); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem .25rem 0; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem 1.4rem; color: #77707b; font-size: .72rem; line-height: 1.6; text-align: right; }

.age-gate {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: rgba(8, 6, 9, .86);
  backdrop-filter: blur(24px) saturate(.5);
}
.age-gate__glow { position: absolute; width: 640px; height: 640px; border-radius: 50%; background: conic-gradient(from 40deg, var(--coral), transparent 35%, var(--violet), transparent 70%, var(--gold)); opacity: .16; filter: blur(90px); animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }
.age-gate__panel { position: relative; width: min(100%, 560px); padding: clamp(2rem, 6vw, 4.5rem); border: 1px solid rgba(255, 255, 255, .16); border-radius: 32px; background: rgba(18, 15, 20, .91); box-shadow: 0 35px 120px rgba(0, 0, 0, .55); text-align: center; }
.age-gate .age-title { margin: 0; font-size: clamp(3rem, 9vw, 5.3rem); line-height: .86; }
.age-gate .age-title .age-welcome { display: block; color: var(--ink); font-family: Georgia, serif; font-size: .46em; font-weight: 500; letter-spacing: -.045em; }
.age-gate .age-title .age-brand { display: block; margin-top: .22em; color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .78em; font-weight: 900; letter-spacing: -.065em; line-height: 1; }
.age-gate .age-title .age-brand em { color: var(--coral); font-style: normal; }
.age-gate__panel > p:not(.eyebrow) { margin: 1.7rem auto; color: var(--muted); line-height: 1.65; }
.age-gate__actions { display: grid; gap: .7rem; margin: 1.8rem 0; }
.age-gate small { display: block; color: #726b74; line-height: 1.5; }
.declined { position: fixed; inset: 0; z-index: 400; display: grid; place-content: center; justify-items: center; padding: 2rem; background: var(--paper); text-align: center; }
.declined h2 { margin: 0 0 .4rem; font-family: Georgia, serif; font-weight: 500; }
.declined p { color: var(--muted); }

.lightbox { position: fixed; z-index: 250; inset: 0; display: grid; place-items: center; padding: 4rem 1.5rem 2rem; background: rgba(4, 3, 5, .94); backdrop-filter: blur(14px); }
.lightbox img { max-width: min(92vw, 980px); max-height: 78vh; border-radius: 20px; box-shadow: 0 30px 90px #000; }
.lightbox p { margin: 1rem 0 0; color: var(--muted); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.5rem; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--panel); color: var(--ink); cursor: pointer; font-size: 1.7rem; }
.noscript { position: fixed; z-index: 500; right: 1rem; bottom: 1rem; left: 1rem; padding: 1rem; border-radius: 12px; background: var(--coral); color: #180806; text-align: center; }

/* Optional Google Analytics consent */
.analytics-consent {
  position: fixed;
  z-index: 280;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: min(calc(100% - 2rem), 860px);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: rgba(18, 15, 20, .97);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .58);
  backdrop-filter: blur(18px);
}
.analytics-consent__copy { max-width: 610px; }
.analytics-consent .eyebrow { margin-bottom: .45rem; }
.analytics-consent h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; letter-spacing: -.045em; }
.analytics-consent__copy > p:last-child { margin: .7rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }
.analytics-consent__actions { display: grid; min-width: 190px; gap: .55rem; }
.analytics-consent__actions .button { min-height: 44px; padding-block: .55rem; }
.cookie-settings-button { border: 0; border-bottom: 1px solid currentColor; padding: 0; background: transparent; color: #8d858f; cursor: pointer; font: inherit; text-underline-offset: 4px; }
.cookie-settings-button:hover, .cookie-settings-button:focus-visible { color: var(--ink); }

/* Compact first screen */
.compact-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: 235px;
  padding-block: 32px;
  gap: clamp(2rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}
.compact-intro__title h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5.7vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .88;
}
.compact-intro__title h1 em { color: var(--coral); font-weight: 500; }
.compact-intro__copy p { max-width: 500px; margin: 0 0 1.25rem; color: var(--muted); line-height: 1.6; }
.compact-intro .button { min-height: 44px; padding-block: .6rem; }
.directory { padding-block: 18px 100px; }
.section-heading { margin-bottom: 1.35rem; }
.section-heading h2 { font-size: clamp(2.35rem, 4.2vw, 4rem); }
.toolbar { top: 62px; margin-bottom: 1.4rem; padding: .75rem 0; }
.category-card { text-decoration: none; }

/* Independent prompt-building guide */
.home-guide {
  scroll-margin-top: 82px;
  margin-bottom: 90px;
  padding-block: clamp(46px, 7vw, 80px);
  border-block: 1px solid var(--line);
}
.home-guide__heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(2rem, 8vw, 8rem); margin-bottom: 2rem; }
.home-guide__heading h2 { max-width: 720px; margin: 0; font: 500 clamp(2.8rem, 5.6vw, 5.6rem)/.9 Georgia, serif; letter-spacing: -.06em; }
.home-guide__heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.75; }
.home-guide__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.home-guide__steps article { min-height: 230px; padding: 1.35rem; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.035), transparent), var(--panel); }
.home-guide__steps span { color: var(--coral); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.home-guide__steps h3 { margin: 2.8rem 0 .7rem; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; letter-spacing: -.035em; }
.home-guide__steps p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.home-guide__formula { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 2rem; margin-top: .8rem; padding: 1.45rem; border: 1px solid rgba(245,184,64,.25); border-radius: 20px; background: rgba(245,184,64,.055); }
.home-guide__formula .eyebrow { margin-bottom: .5rem; }
.home-guide__formula h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.5rem, 2.7vw, 2.4rem); font-weight: 500; letter-spacing: -.04em; }
.home-guide__formula > p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }

/* Individual image page */
.detail-body { background: radial-gradient(circle at 80% 12%, rgba(255, 93, 73, .08), transparent 28rem), var(--paper); }
.site-header--detail { position: relative; }
.image-page { padding-block: 34px 100px; }
.image-page > .back-link { text-decoration: none; }
.image-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 28px;
}
.image-stage {
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
  padding: clamp(.8rem, 2vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #161219, #0c0a0e);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}
.image-source {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 100%;
  border-radius: 20px;
  cursor: zoom-in;
}
.image-source img {
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 720px);
  margin: auto;
  object-fit: contain;
  transition: transform .45s ease, filter .35s ease;
}
.image-source:hover img { transform: scale(1.015); filter: saturate(1.08); }
.image-source__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 99px;
  background: rgba(8, 6, 9, .82);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.image-source:hover .image-source__hint,
.image-source:focus-visible .image-source__hint { opacity: 1; transform: translateY(0); }
.image-source__hint b { color: var(--coral); font-size: 1.1rem; }
.image-info { position: sticky; top: 30px; padding-top: 1rem; }
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 2rem;
  padding: .55rem .75rem;
  border: 1px solid rgba(245, 184, 64, .28);
  border-radius: 99px;
  background: rgba(245, 184, 64, .08);
  color: var(--gold);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.image-info h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(3.3rem, 6.5vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .82;
}
.image-info__description { margin: 1.6rem 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.imagination-note { display: flex; gap: 1rem; margin: 1.7rem 0; padding: 1.1rem; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.imagination-note > span { color: var(--coral); font: 500 2.3rem/1 Georgia, serif; }
.imagination-note strong { display: block; margin-bottom: .35rem; font-size: .88rem; }
.imagination-note p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.image-actions { display: grid; gap: .65rem; }
.image-click-note { display: block; margin-top: 1rem; color: #746d77; line-height: 1.5; }
.related-strip { display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem; margin-top: 90px; padding-top: 38px; border-top: 1px solid var(--line); }
.related-strip h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { position: relative; min-height: 250px; overflow: hidden; border-radius: 20px; background: var(--panel); text-decoration: none; }
.related-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(6, 4, 7, .92)); }
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover img { transform: scale(1.04); }
.related-card span { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; left: 1rem; display: flex; justify-content: space-between; font-family: Georgia, serif; font-size: 1.35rem; }
.related-card b { color: var(--coral); }
.image-error { min-height: 55vh; padding-top: 12vh; text-align: center; }
.image-error h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 7rem); font-weight: 500; }
.image-error p { color: var(--muted); }

/* Multi-image category galleries */
.category-page { padding-block: 34px 100px; }
.category-page > .back-link { text-decoration: none; }
.category-gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: end;
  min-height: 180px;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--line);
}
.category-gallery-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  max-width: 760px;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .82;
}
.category-gallery-hero > div > p:last-child { max-width: 640px; margin: 1.6rem 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.thumbnail-section { padding-top: 44px; }
.thumbnail-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.4rem; }
.thumbnail-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.3rem, 4.5vw, 4.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .9; }
.thumbnail-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; text-align: right; }
.thumbnail-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .8rem; }
.thumbnail-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: var(--panel);
  text-decoration: none;
  isolation: isolate;
}
.thumbnail-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(transparent 55%, rgba(5, 3, 6, .88)); opacity: .78; transition: opacity .25s ease; }
.thumbnail-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .35s ease; }
.thumbnail-card:hover img { transform: scale(1.055); filter: saturate(1.12); }
.thumbnail-card:hover::after { opacity: 1; }
.thumbnail-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.thumbnail-card__meta { position: absolute; z-index: 2; right: .85rem; bottom: .8rem; left: .85rem; display: flex; align-items: center; justify-content: space-between; }
.thumbnail-card__meta small { font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.thumbnail-card__meta b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; color: var(--coral); transition: background .2s, color .2s; }
.thumbnail-card:hover .thumbnail-card__meta b { background: var(--coral); color: #170908; }
.gallery-bottom-cta { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.gallery-bottom-cta p { margin: 0 auto 0 0; color: var(--muted); }
.category-related { margin-top: 70px; }
.seo-breadcrumb { display: flex; align-items: center; gap: .55rem; color: #837b86; font-size: .74rem; font-weight: 750; }
.seo-breadcrumb a { color: var(--muted); text-underline-offset: 4px; }
.seo-breadcrumb a:hover { color: var(--ink); }
.seo-thumbnail-grid { align-items: start; }
.seo-thumb { min-width: 0; margin: 0; }
.seo-thumb .thumbnail-card { display: block; width: 100%; }
.seo-thumb figcaption { min-height: 3em; margin: .55rem .2rem 0; color: #918a94; font-size: .69rem; line-height: 1.45; }
.gallery-editorial { scroll-margin-top: 82px; margin-top: 70px; padding-block: 54px; border-block: 1px solid var(--line); }
.gallery-editorial__intro { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(2rem, 8vw, 8rem); align-items: end; }
.gallery-editorial h2 { max-width: 660px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 4.8vw, 4.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .92; }
.gallery-editorial__intro > div:last-child p { margin: 0 0 1.05rem; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.prompt-formula { display: grid; grid-template-columns: .8fr 1.2fr auto; align-items: center; gap: 2rem; margin-top: 2rem; padding: 1.35rem; border: 1px solid rgba(255,93,73,.26); border-radius: 20px; background: rgba(255,93,73,.05); }
.prompt-formula .eyebrow { margin-bottom: .45rem; }
.prompt-formula h3 { margin: 0; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; letter-spacing: -.04em; }
.prompt-formula > p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.gallery-source-note { max-width: 920px; margin: 1.35rem 0 0; color: #837b86; font-size: .75rem; line-height: 1.6; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 620px; gap: 2rem; }
  .hero h1 { font-size: clamp(4rem, 9vw, 6.5rem); }
  .hero__visual { min-height: 470px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .image-layout { grid-template-columns: minmax(0, 1fr) minmax(270px, .72fr); gap: 2rem; }
  .thumbnail-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-guide__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-guide__formula, .prompt-formula { grid-template-columns: 1fr 1fr; }
  .home-guide__formula .button, .prompt-formula .button { justify-self: start; }
}

@media (max-width: 780px) {
  .section-wrap, .site-header, .hero, .site-footer { width: min(calc(100% - 32px), var(--max)); }
  .compact-intro { grid-template-columns: 1fr; min-height: 0; padding-block: 28px; gap: 1.2rem; }
  .compact-intro__title h1 { font-size: clamp(2.8rem, 12vw, 4.8rem); }
  .compact-intro__copy p { margin-bottom: 1rem; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero__copy { max-width: 620px; }
  .hero__visual { width: min(100%, 540px); min-height: 500px; margin-inline: auto; }
  .section-heading { display: grid; }
  .section-heading > p { max-width: 560px; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .search-box { max-width: none; }
  .filter-list { overflow-x: auto; padding-bottom: .3rem; scrollbar-width: none; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-story { grid-template-columns: 1fr; gap: 2rem; }
  .home-guide__heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .category-card, .category-card:nth-child(7n + 2), .category-card:nth-child(7n + 5) { min-height: 390px; }
  .footer-promo { grid-template-columns: 1fr; gap: 2rem; }
  .footer-promo__brand { padding: 0 0 2rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery-hero { align-items: start; flex-direction: column; }
  .gallery-index { align-self: flex-end; }
  .photo-grid { grid-auto-rows: 190px; }
  .photo-button:nth-child(n) { grid-column: span 6; grid-row: span 1; }
  .photo-button:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .footer-meta { justify-content: flex-start; text-align: left; }
  .analytics-consent { grid-template-columns: 1fr; align-items: stretch; gap: 1rem; }
  .analytics-consent__actions { grid-template-columns: 1fr 1fr; }
  .image-layout { grid-template-columns: 1fr; }
  .image-stage { min-height: 0; }
  .image-source img { max-height: 72vh; }
  .image-info { position: static; }
  .related-strip { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 64px; }
  .category-gallery-hero { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .thumbnail-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .thumbnail-heading > p { text-align: left; }
  .thumbnail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-bottom-cta { align-items: stretch; flex-direction: column; }
  .gallery-bottom-cta p { margin-bottom: .3rem; }
  .gallery-editorial { margin-top: 52px; }
  .gallery-editorial__intro { grid-template-columns: 1fr; gap: 1.6rem; }
  .prompt-formula { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .hero__visual { min-height: 390px; }
  .hero-card--main { inset: 0 14% 0 4%; }
  .hero-card--top { width: 35%; height: 33%; }
  .hero-card--bottom { width: 34%; height: 32%; }
  .hero-orbit { width: 78px; height: 78px; font-size: 1.35rem; }
  .directory { padding-block: 80px; }
  .compact-intro__title h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .directory { padding-top: 30px; }
  .home-guide { margin-bottom: 64px; }
  .home-guide__steps { grid-template-columns: 1fr; }
  .home-guide__steps article { min-height: 0; }
  .home-guide__formula { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card:nth-child(7n + 2), .category-card:nth-child(7n + 5) { min-height: 470px; }
  .filter { padding-inline: .78rem; }
  .footer-promo { padding: 2rem; border-radius: 28px; }
  .footer-promo__actions { align-items: stretch; flex-direction: column; }
  .gallery-view { padding-top: 45px; }
  .gallery-hero { padding-top: 3.5rem; }
  .photo-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .photo-button:nth-child(n) { grid-column: auto; grid-row: auto; }
  .image-page { padding-top: 24px; }
  .image-page > .back-link { font-size: .8rem; }
  .image-stage { padding: .55rem; border-radius: 22px; }
  .image-source { border-radius: 16px; }
  .image-source__hint { opacity: 1; transform: none; }
  .image-info h1 { font-size: clamp(3.5rem, 18vw, 5.3rem); }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 360px; }
  .category-page { padding-top: 24px; }
  .category-gallery-hero { padding-block: 24px 28px; }
  .category-gallery-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .analytics-consent { padding: 1.15rem; border-radius: 20px; }
  .analytics-consent__actions { grid-template-columns: 1fr; }
  .thumbnail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
  .thumbnail-card { border-radius: 14px; }
  .thumbnail-card__meta { right: .65rem; bottom: .6rem; left: .65rem; }
  .thumbnail-card__meta small { font-size: .54rem; }
}

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


/* Editorial consolidation and local lightbox */
.compact-intro__title h1 { line-height: 1; }
.section-heading h2 { line-height: 1.08; }
.heading-line { display: block; }
.creator-cta { padding-block: 76px 96px; border-top: 1px solid var(--line); }
.creator-cta__heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(2rem, 8vw, 8rem); margin-bottom: 2rem; }
.creator-cta__heading h2 { max-width: 780px; margin: 0; font: 500 clamp(2.8rem, 5.6vw, 5.6rem)/1 Georgia, serif; letter-spacing: -.06em; }
.creator-cta__heading > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.creator-preview { position: relative; display: block; overflow: hidden; min-height: 610px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: #050505; box-shadow: 0 36px 100px rgba(0,0,0,.42); color: var(--ink); text-decoration: none; isolation: isolate; }
.creator-preview__browser { display: flex; align-items: center; justify-content: center; height: 48px; border-bottom: 1px solid #d7d7d7; background: #f3f3f3; color: #3b383c; font-size: .78rem; font-weight: 750; letter-spacing: .02em; }
.creator-preview__dots { position: absolute; left: 18px; display: flex; gap: 7px; }
.creator-preview__dots i { display: block; width: 10px; height: 10px; border-radius: 50%; background: #c8c5c8; }
.creator-preview__dots i:first-child { background: #ff5f57; }
.creator-preview__dots i:nth-child(2) { background: #febc2e; }
.creator-preview__dots i:last-child { background: #28c840; }
.creator-preview__nav { display: flex; align-items: center; justify-content: space-between; height: 74px; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.1); background: #050505; }
.creator-preview__nav img { width: min(180px, 38vw); height: 48px; object-fit: contain; object-position: left center; }
.creator-preview__create { display: inline-flex; align-items: center; min-height: 40px; padding: 0 1.25rem; border-radius: 99px; background: var(--coral); color: #170908; font-size: .78rem; font-weight: 900; }
.creator-preview__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 210px; gap: 8px; height: 510px; overflow: hidden; padding: 8px; background: #030303; }
.creator-preview__tile { display: block; overflow: hidden; border-radius: 10px; background: var(--panel); }
.creator-preview__tile:nth-child(2), .creator-preview__tile:nth-child(5) { grid-row: span 2; }
.creator-preview__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.creator-preview__shade { position: absolute; z-index: 1; inset: 122px 0 0; background: linear-gradient(transparent 48%, rgba(3,3,3,.18) 64%, rgba(3,3,3,.92)); pointer-events: none; }
.creator-preview__button { position: absolute; z-index: 2; right: 32px; bottom: 28px; box-shadow: 0 16px 45px rgba(255,93,73,.28); transition: transform .25s ease, box-shadow .25s ease; }
.creator-preview:hover .creator-preview__tile img { transform: scale(1.035); filter: saturate(1.08); }
.creator-preview:hover .creator-preview__button { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(255,93,73,.4); }
.creator-preview:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.site-footer--compact .footer-bottom { border-top: 1px solid var(--line); padding-top: 1.35rem; }
@media (max-width: 900px) {
  .creator-cta__heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .creator-preview__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .creator-preview__tile:nth-child(7), .creator-preview__tile:nth-child(8) { display: none; }
}
@media (max-width: 560px) {
  .creator-cta { padding-block: 54px 72px; }
  .creator-preview { min-height: 520px; border-radius: 20px; }
  .creator-preview__nav { height: 64px; padding-inline: 14px; }
  .creator-preview__create { min-height: 36px; padding-inline: .9rem; }
  .creator-preview__grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 170px; height: 430px; }
  .creator-preview__tile:nth-child(5), .creator-preview__tile:nth-child(6), .creator-preview__tile:nth-child(7), .creator-preview__tile:nth-child(8) { display: none; }
  .creator-preview__shade { inset: 112px 0 0; }
  .creator-preview__button { right: 18px; bottom: 18px; left: 18px; justify-content: center; }
}
.category-card__meta p { margin: .45rem 0 0; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.45; }
.category-card { min-height: 430px; }
.category-card img { object-position: center; }
.category-gallery-hero { min-height: 145px; padding-top: 12px; }
.category-gallery-hero h1 { font-size: clamp(2.35rem, 4.3vw, 4.2rem); line-height: .9; }
.category-gallery-hero > div > p:last-child { margin-top: 1rem; }
.thumbnail-section { padding-top: 30px; }
.thumbnail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.seo-thumb .thumbnail-card { aspect-ratio: auto; }
.seo-thumb .thumbnail-card img { display: block; width: 100%; height: auto; object-fit: contain; }
.seo-thumb figcaption { min-height: 0; margin: .7rem .15rem 0; color: #aaa2ac; font-size: .78rem; line-height: 1.5; }
.gallery-lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(5,3,7,.94); color: var(--ink); }
.gallery-lightbox::backdrop { background: rgba(5,3,7,.94); }
.gallery-lightbox__stage { position: relative; display: grid; grid-template-columns: 64px minmax(0,1fr) 64px; grid-template-rows: minmax(0,1fr) auto; align-items: center; width: min(100% - 32px, 1280px); height: 100%; margin: auto; padding: 64px 0 24px; }
.gallery-lightbox figure { grid-column: 2; grid-row: 1; display: grid; place-items: center; align-content: center; height: 100%; min-height: 0; margin: 0; }
.gallery-lightbox figure img { max-width: 100%; max-height: calc(100vh - 190px); border-radius: 16px; box-shadow: 0 28px 80px rgba(0,0,0,.45); object-fit: contain; }
.gallery-lightbox figcaption { max-width: 760px; margin-top: .8rem; color: #c9c2ca; font-size: .86rem; text-align: center; }
.gallery-lightbox__close { position: absolute; z-index: 2; top: 18px; right: 0; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #17131a; color: white; font-size: 1.7rem; cursor: pointer; }
.gallery-lightbox__nav { width: 48px; height: 64px; border: 1px solid var(--line); border-radius: 99px; background: rgba(23,19,26,.88); color: white; font-size: 2rem; cursor: pointer; }
.gallery-lightbox__nav--prev { grid-column: 1; grid-row: 1; }
.gallery-lightbox__nav--next { grid-column: 3; grid-row: 1; justify-self: end; }
.gallery-lightbox__cta { grid-column: 2; grid-row: 2; justify-self: center; }
@media (max-width: 900px) { .thumbnail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .thumbnail-grid { grid-template-columns: 1fr; }
  .gallery-lightbox__stage { grid-template-columns: 52px minmax(0,1fr) 52px; width: calc(100% - 16px); padding-top: 58px; }
  .gallery-lightbox figure img { max-height: calc(100vh - 220px); }
  .gallery-lightbox__nav { width: 42px; height: 54px; }
  .category-card { min-height: 460px; }
}
