:root {
  --charcoal: #090908;
  --graphite: #191917;
  --graphite-soft: #24231f;
  --concrete: #8f8b82;
  --off-white: #eee8dc;
  --muted: #b9b1a4;
  --line: rgba(238, 232, 220, 0.14);
  --rust: #a16b42;
  --amber: #c09461;
  --shadow: rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, "Source Sans 3", Lato, Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
  color: var(--off-white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.18), var(--charcoal) 34%),
    radial-gradient(circle at 80% 6%, rgba(161, 107, 66, 0.14), transparent 29%),
    radial-gradient(circle at 16% 80%, rgba(238, 232, 220, 0.045), transparent 32%),
    var(--charcoal);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  text-rendering: optimizeLegibility;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(238, 232, 220, 0.018) 14% calc(14% + 1px), transparent calc(14% + 1px) 86%, rgba(238, 232, 220, 0.014) 86% calc(86% + 1px), transparent calc(86% + 1px)),
    radial-gradient(circle at 50% 10%, rgba(238, 232, 220, 0.035), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

button img,
.image-open img {
  pointer-events: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  margin: 0;
}

::selection {
  background: rgba(192, 148, 97, 0.32);
  color: var(--off-white);
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(238, 232, 220, 0.065);
  background: rgba(9, 9, 8, 0.7);
  backdrop-filter: blur(22px);
}

.nav-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px 24px;
}

.brand {
  display: grid;
  gap: 1px;
}

.brand span:first-child {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.01em;
  line-height: 0.96;
}

.brand span:last-child {
  color: var(--concrete);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  transition: color 260ms var(--ease);
}

.nav-links a::after {
  background: var(--rust);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
  width: 100%;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--off-white);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(92px, 12vw, 168px) 24px;
}

.section.compact {
  padding-top: clamp(80px, 9vw, 126px);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100vh;
  padding: 150px 24px 100px;
  position: relative;
}

.hero::before,
.page-hero::before {
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.12), rgba(9, 9, 8, 0.78) 70%, rgba(9, 9, 8, 0.98)),
    linear-gradient(90deg, rgba(9, 9, 8, 0.82), rgba(9, 9, 8, 0.22) 56%, rgba(9, 9, 8, 0.82)),
    var(--placeholder);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  position: absolute;
  width: 100%;
}

.hero::after,
.page-hero::after {
  background-image:
    linear-gradient(rgba(238, 232, 220, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 232, 220, 0.018) 1px, transparent 1px);
  background-size: 100% 108px, 132px 100%;
  content: "";
  inset: 0;
  opacity: 0.56;
  pointer-events: none;
  position: absolute;
}

.hero-inner,
.page-hero-inner {
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  width: 100%;
  z-index: 1;
}

.kicker {
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--off-white);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 5.5vw, 80px);
  max-width: 100%;
}

h2 {
  font-size: clamp(40px, 6vw, 82px);
}

h3 {
  font-size: clamp(28px, 4vw, 44px);
}

.hero-copy {
  color: var(--off-white);
  font-family: var(--serif);
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 0.99;
  max-width: 980px;
  text-wrap: balance;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.hero-meta {
  border-top: 1px solid rgba(238, 232, 220, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(36px, 5vw, 58px) 0 0;
  max-width: 760px;
  padding-top: 18px;
}

.hero-meta div {
  display: grid;
  gap: 2px;
}

.hero-meta dt,
.collection-eyebrow,
.form-intro {
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.hero-meta dd {
  color: var(--off-white);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.12;
  margin: 0;
}

.button {
  border: 1px solid rgba(238, 232, 220, 0.42);
  color: var(--off-white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.2em;
  min-width: 196px;
  overflow: hidden;
  padding: 15px 20px;
  position: relative;
  text-transform: uppercase;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease), transform 280ms var(--ease);
}

.button:hover {
  background: rgba(238, 232, 220, 0.94);
  border-color: var(--off-white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.button.subtle {
  border-color: rgba(161, 107, 66, 0.5);
  color: var(--amber);
}

.intro-grid,
.split-grid {
  display: grid;
  gap: clamp(42px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-grid p,
.split-grid p,
.lead {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
}

.rule {
  border-top: 1px solid var(--line);
}

.page-hero {
  align-items: end;
  display: grid;
  min-height: 72vh;
  padding: 164px 24px 84px;
  position: relative;
}

.page-hero.small {
  min-height: 55vh;
}

.page-hero p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
  margin-top: 28px;
  max-width: 720px;
}

.collection-list {
  display: grid;
  gap: clamp(96px, 14vw, 176px);
}

.collection {
  display: grid;
  gap: 38px;
}

.collection-feature {
  aspect-ratio: 16 / 9;
  background: var(--placeholder);
  background-size: cover;
  border: 1px solid rgba(238, 232, 220, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  transition: filter 420ms var(--ease), transform 520ms var(--ease), border-color 420ms var(--ease);
}

.collection-feature > div,
.collection-feature .image-open,
.image-placeholder > div,
.image-placeholder .image-open {
  align-items: center;
  background: rgba(9, 9, 8, 0.2);
  border: 0;
  color: inherit;
  cursor: zoom-in;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.collection-feature > div {
  cursor: default;
}

/* Gallery card image button — fills the figure container */
.gallery-item .image-open {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.image-missing .image-open {
  cursor: default;
  pointer-events: none;
}

/* Collection hero — contain with breathing room, full artwork visible */
.collection-feature img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(16px, 2.2vw, 28px);
  transition: opacity 500ms var(--ease), transform 700ms var(--ease), filter 700ms var(--ease);
  width: 100%;
}

/* Gallery cards — cover for clean uniform grid */
.gallery-item img,
.image-placeholder img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 500ms var(--ease), transform 700ms var(--ease);
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.collection-feature::before,
.gallery-item::before,
.image-placeholder::before {
  background:
    linear-gradient(180deg, transparent, rgba(9, 9, 8, 0.18)),
    radial-gradient(circle at 50% 0, rgba(238, 232, 220, 0.09), transparent 32%);
  content: "";
  inset: 0;
  opacity: 0.74;
  pointer-events: none;
  position: absolute;
  transition: opacity 420ms var(--ease);
}

.collection-feature::after,
.image-placeholder::after {
  border: 1px solid rgba(238, 232, 220, 0.18);
  content: "";
  inset: 20px;
  opacity: 0;
  position: absolute;
  transition: opacity 380ms var(--ease), inset 420ms var(--ease);
}

.collection:hover .collection-feature {
  border-color: rgba(238, 232, 220, 0.16);
  filter: brightness(1.06) contrast(1.04);
  transform: translateY(-3px);
}

.collection:hover .collection-feature::before,
.gallery-item:hover::before,
.image-placeholder:hover::before {
  opacity: 0.45;
}

.collection:hover .collection-feature::after,
.image-placeholder:hover::after {
  inset: 15px;
  opacity: 1;
}

.collection-meta {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.collection-meta h2 {
  margin-top: 10px;
}

/* ── Gallery grid ────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

/* ── Gallery card — image on top, info below ─────────────────────────────── */
.gallery-card {
  display: flex;
  flex-direction: column;
}

.gallery-card .gallery-item {
  /* image container — uniform 3:2 landscape ratio */
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}

.gallery-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 0;
}

.gallery-card-caption {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  flex: 1;
}

/* ── Collection hero Shop Prints button ──────────────────────────────────── */
.collection-shop-btn {
  display: inline-flex;
  margin-top: 24px;
}

/* ── Gallery item (image container) ─────────────────────────────────────── */
.gallery-item,
.image-placeholder {
  aspect-ratio: 3 / 2;
  background: var(--placeholder);
  background-size: cover;
  border: 1px solid rgba(238, 232, 220, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  margin: 0;
  overflow: hidden;
  position: relative;
  transition: filter 420ms var(--ease), transform 520ms var(--ease), border-color 420ms var(--ease);
}

.gallery-item:hover,
.image-placeholder:hover {
  border-color: rgba(238, 232, 220, 0.18);
  filter: brightness(1.06) contrast(1.03);
  transform: translateY(-3px);
}

/* ── Collection feature (hero) figcaption overlay — kept as-is ───────────── */
.collection-feature figcaption,
.image-placeholder figcaption {
  background: linear-gradient(180deg, transparent, rgba(9, 9, 8, 0.76));
  bottom: 0;
  color: rgba(238, 232, 220, 0.62);
  font-size: 10px;
  font-weight: 600;
  inset-inline: 0;
  letter-spacing: 0.2em;
  opacity: 0;
  padding: 54px 18px 16px;
  position: absolute;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  z-index: 2;
}

.collection-feature:hover figcaption,
.image-placeholder:hover figcaption,
.collection:hover .collection-feature figcaption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  align-items: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(238, 232, 220, 0.08), transparent 30%),
    rgba(5, 5, 4, 0.96);
  display: grid;
  inset: 0;
  opacity: 0;
  padding: clamp(20px, 4vw, 56px);
  pointer-events: none;
  position: fixed;
  transition: opacity 360ms var(--ease);
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0 auto;
  max-height: 90vh;
  max-width: min(1320px, 100%);
}

.lightbox img {
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(238, 232, 220, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  background: transparent;
  border: 1px solid rgba(238, 232, 220, 0.22);
  color: var(--off-white);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  justify-self: end;
  letter-spacing: 0.2em;
  padding: 11px 14px;
  position: fixed;
  right: clamp(18px, 3vw, 40px);
  text-transform: uppercase;
  top: clamp(18px, 3vw, 40px);
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.lightbox-close:hover,
.lightbox-close:focus {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--charcoal);
  outline: none;
}

.archive-note {
  border-left: 1px solid var(--rust);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
  margin-top: 32px;
  max-width: 620px;
  padding-left: 26px;
}

.print-options {
  display: grid;
  gap: 1px;
  margin-top: 42px;
}

.print-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 0.6fr 1.4fr;
  padding: 24px 0;
}

.print-row:last-child {
  border-bottom: 1px solid var(--line);
}

.print-row strong {
  color: var(--off-white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.form {
  display: grid;
  gap: 18px;
}

.inquiry-panel {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(238, 232, 220, 0.052), rgba(238, 232, 220, 0.018)),
    rgba(9, 9, 8, 0.28);
  border: 1px solid rgba(238, 232, 220, 0.11);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  padding: clamp(24px, 4vw, 42px);
}

.form-intro {
  border-bottom: 1px solid rgba(238, 232, 220, 0.11);
  padding-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--concrete);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
textarea,
select {
  background: rgba(9, 9, 8, 0.24);
  border: 1px solid rgba(238, 232, 220, 0.16);
  border-radius: 0;
  color: var(--off-white);
  font: inherit;
  padding: 15px 16px;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
  width: 100%;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 53%, calc(100% - 14px) 53%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

option {
  background: var(--graphite);
  color: var(--off-white);
}

textarea {
  min-height: 164px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  background: rgba(238, 232, 220, 0.06);
  border-color: rgba(192, 148, 97, 0.72);
  box-shadow: 0 0 0 3px rgba(192, 148, 97, 0.08);
  outline: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--concrete);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 34px 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.footer-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.placeholder-a {
  --placeholder:
    linear-gradient(115deg, rgba(9, 9, 8, 0.18), rgba(9, 9, 8, 0.7)),
    repeating-linear-gradient(90deg, rgba(238, 232, 220, 0.035) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 72% 34%, rgba(161, 107, 66, 0.34), transparent 20%),
    linear-gradient(90deg, #11110f 0 16%, #2b2a26 16% 17%, #151512 17% 44%, #575146 44% 45%, #171713 45% 100%);
}

.placeholder-b {
  --placeholder:
    linear-gradient(180deg, rgba(9, 9, 8, 0.05), rgba(9, 9, 8, 0.82)),
    repeating-linear-gradient(0deg, rgba(238, 232, 220, 0.03) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, #141412 0 12%, #282723 12% 13%, #181815 13% 24%),
    radial-gradient(circle at 34% 20%, rgba(238, 232, 220, 0.13), transparent 25%);
}

.placeholder-c {
  --placeholder:
    linear-gradient(135deg, rgba(9, 9, 8, 0.22), rgba(9, 9, 8, 0.74)),
    repeating-linear-gradient(90deg, rgba(238, 232, 220, 0.026) 0 1px, transparent 1px 84px),
    linear-gradient(0deg, #111 0 19%, #34322d 19% 20%, #151513 20% 61%, #5b564c 61% 62%, #10100f 62%),
    radial-gradient(circle at 62% 22%, rgba(192, 148, 97, 0.19), transparent 24%);
}

.placeholder-d {
  --placeholder:
    linear-gradient(180deg, rgba(9, 9, 8, 0.14), rgba(9, 9, 8, 0.84)),
    repeating-linear-gradient(90deg, rgba(238, 232, 220, 0.032) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, #10100f 0 18%, #2d2b27 18% 19%, #151512 19% 31%),
    linear-gradient(90deg, rgba(143, 139, 130, 0.2), transparent 55%);
}

.placeholder-e {
  --placeholder:
    linear-gradient(90deg, rgba(9, 9, 8, 0.52), rgba(9, 9, 8, 0.12), rgba(9, 9, 8, 0.82)),
    repeating-linear-gradient(0deg, rgba(238, 232, 220, 0.026) 0 1px, transparent 1px 110px),
    radial-gradient(circle at 44% 30%, rgba(177, 151, 111, 0.22), transparent 20%),
    repeating-linear-gradient(115deg, #131310 0 16%, #23221f 16% 17%, #151512 17% 26%);
}

.placeholder-f {
  --placeholder:
    linear-gradient(160deg, rgba(9, 9, 8, 0.1), rgba(9, 9, 8, 0.86)),
    repeating-linear-gradient(0deg, rgba(238, 232, 220, 0.024) 0 1px, transparent 1px 88px),
    linear-gradient(90deg, #111 0 28%, #3b3832 28% 29%, #161613 29% 70%, #544c42 70% 71%, #111 71%),
    radial-gradient(circle at 80% 74%, rgba(161, 107, 66, 0.24), transparent 24%);
}

@media (max-width: 820px) {
  .nav-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(238, 232, 220, 0.18);
    color: var(--off-white);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    letter-spacing: 0.14em;
    padding: 0 14px;
    text-transform: uppercase;
  }

  .nav-links {
    align-content: center;
    background: #090908;
    display: grid;
    gap: 24px;
    inset: 0;
    opacity: 0;
    padding: 120px 24px 34px;
    z-index: 200;
    pointer-events: none;
    position: fixed;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    min-height: 94vh;
    padding-bottom: 44px;
  }

  .section {
    padding: 86px 22px;
  }

  .intro-grid,
  .split-grid,
  .collection-meta,
  .print-row {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .collection-list {
    gap: 88px;
  }

  .collection-feature {
    min-height: 230px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .gallery-card-body {
    padding: 10px 0 0;
  }

  .footer-inner {
    display: grid;
  }
}

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

  .brand span:first-child {
    font-size: 21px;
  }

  .brand span:last-child {
    letter-spacing: 0.18em;
  }

  .button {
    width: 100%;
  }

  .page-hero {
    min-height: 64vh;
  }
}

/* ── Buy Print button — below the image, always visible ─────────────────────
   Lives in .gallery-card-body, never overlaid on the photograph.
────────────────────────────────────────────────────────────────────────────── */

.buy-print-cta {
  align-items: center;
  background: rgba(238, 232, 220, 0.05);
  border: 1px solid rgba(238, 232, 220, 0.16);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 18px;
  text-align: center;
  text-decoration: none;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
  width: 100%;
}

.buy-print-cta:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.buy-print-label {
  color: var(--off-white);
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.buy-print-sizes {
  color: rgba(238, 232, 220, 0.45);
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.buy-print-cta:hover .buy-print-label,
.buy-print-cta:hover .buy-print-sizes {
  color: var(--charcoal);
}

/* ── FAQ section ─────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.faq-item dt h3 {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.faq-item dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item dd a {
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── About page additions ────────────────────────────────────────────────── */
.split-grid h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
