@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --serif: "EB Garamond", "Garamond", "Georgia", serif;
  --sans: "DM Sans", -apple-system, system-ui, sans-serif;
  --bg: #080808;
  --bg-soft: #0f0f0f;
  --bg-panel: #121212;
  --text: #eae4dc;
  --muted: #a09890;
  --accent: #b8944a;
  --accent-soft: rgba(184,148,74,0.15);
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.13);
  --line-accent: rgba(184,148,74,0.3);
  --container: 1360px;
  --narrow: 760px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.site-wrap,
.site-main,
.section,
.page-hero,
.site-footer,
.home-about-split,
.hero,
.container,
.narrow-container {
  position: relative;
  z-index: 1;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow-container {
  width: min(var(--narrow), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }

.text-link {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--line-accent);
}

.large-link { font-size: 1.2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-width: 140px;
  width: auto;
  text-decoration: none;
}
.button:hover { background: rgba(255,255,255,0.04); border-color: var(--line-accent); color: var(--text); }
.button.is-solid { background: var(--text); color: var(--bg); border-color: var(--text); }
.button.is-solid:hover { background: #fff; border-color: #fff; color: var(--bg); }
.button.is-ghost { color: var(--muted); border-color: var(--line); }

.book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}
.brand-mark {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.primary-nav .menu,
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--accent); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: 2px;
}

.lang-switch,
.trp-floating-ls { display: none !important; }

/* Hero */
.hero-home {
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 30%,
    rgba(0,0,0,0.15) 55%,
    rgba(0,0,0,0.6) 80%,
    rgba(0,0,0,0.9) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-bottom {
  justify-content: flex-end;
  padding-bottom: 38vh;
}
.hero-home h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--muted);
  max-width: 48rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Page hero */
.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
}
.page-hero-tight { padding-bottom: 2rem; }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-top: 0.7rem;
}
.page-hero p {
  max-width: 42rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Homepage */
.statement-section {
  border-top: 0;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.statement-wrap { text-align: center; }
.statement-text {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.home-about-split {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.home-about-copy {
  display: flex;
  justify-content: flex-end;
  padding: clamp(4rem, 7vw, 6rem) 2rem clamp(4rem, 7vw, 6rem) max(1rem, calc((100vw - var(--container)) / 2 + 1rem));
}
.home-about-copy-inner {
  width: min(100%, 36rem);
}
.home-about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-top: 0.9rem;
}
.home-about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.home-about-image-wrap { min-height: 540px; }
.home-about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-image-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.full-bleed-image-wrap {
  width: 100%;
}
.feature-image {
  width: 100%;
  height: auto;
  display: block;
}
.feature-caption { margin-top: 1rem; }

.work-intro-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.work-intro-wrap { text-align: left; }
.work-intro-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 680px;
  margin-top: 0.8rem;
}
.work-intro-wrap p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.series-preview-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.section-heading-row h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-top: 0.6rem;
  margin-bottom: 0;
}
.panel-grid {
  display: grid;
  gap: 1rem;
}
.panel-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.info-panel h3,
.info-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 0.75rem;
}
.info-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.available-section {
  background: var(--bg-soft);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.available-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.available-grid h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-top: 0.7rem;
}
.available-grid p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.available-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.contact-invitation {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.contact-invitation-wrap {
  text-align: center;
}
.contact-invitation-wrap p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

/* Shared layouts */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}
.split-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.editorial-body,
.editorial-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}
.editorial-body p,
.editorial-copy p { color: var(--muted); }
.editorial-copy {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.75;
}
.editorial-copy p { color: var(--text); }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 38%);
  gap: 4%;
  align-items: start;
}
.sticky-media {
  position: sticky;
  top: 100px;
}
.pull-quote {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--muted);
  line-height: 1.25;
  text-align: center;
}
.meta-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}
.meta-grid div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.meta-grid dt,
.meta-grid dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.meta-grid dt { color: var(--muted); }
.meta-grid dd { color: var(--text); }
.meta-grid dd a { color: var(--text); }
.compact-meta { margin: 1.5rem 0; }

/* Works / store */
.works-gateway-grid,
.three-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.three-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.store-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  padding: 1.5rem;
}
.store-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 1rem;
}
.store-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.store-card .button,
.store-card .text-link { margin-top: 0.5rem; }
.centered-text-link {
  text-align: center;
  margin-top: 1.5rem;
}

/* Series */
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.feature-panel {
  grid-column: 1 / -1;
}
.series-cover {
  max-width: 380px;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-row label,
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
}
.form-row label {
  font-size: 0.9rem;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--bg-panel);
  color: var(--text);
  padding: 0.9rem 1rem;
  border-radius: 2px;
  font-size: 1rem;
}
.form-row textarea { resize: vertical; min-height: 160px; }
.contact-form .submit-btn,
.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  width: auto;
  min-width: 160px;
  align-self: flex-start;
}
.form-message {
  margin: 0;
  min-height: 1.5rem;
  font-size: 0.95rem;
}
.form-message.is-success { color: var(--text); }
.form-message.is-error { color: #d69b9b; }
.contact-direct {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-direct p,
.contact-direct a {
  font-family: var(--sans);
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.footer-statement,
.footer-copy {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}
.footer-nav,
.footer-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-family: var(--serif);
}
.footer-secondary a,
.footer-copy {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
}
.footer-copy {
  color: var(--muted);
  font-style: normal;
}

/* Responsive */
@media (max-width: 900px) {
  .home-about-split,
  .available-grid,
  .split-layout,
  .about-layout,
  .three-card-grid,
  .works-gateway-grid,
  .footer-inner,
  .series-grid,
  .panel-grid.two-up {
    grid-template-columns: 1fr;
  }

  .home-about-copy {
    order: 2;
    padding: 2rem 1rem 0;
  }
  .home-about-image-wrap {
    order: 1;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
  .about-image-col { order: -1; }
  .sticky-media { position: static; }
  .series-cover { max-width: 100%; }
  .footer-inner { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(8,8,8,0.96);
    border-bottom: 1px solid var(--line);
    padding: 0;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu,
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav li { border-top: 1px solid var(--line); }
  .primary-nav a {
    display: block;
    padding: 1rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow-container { width: min(100% - 1.25rem, 100%); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .meta-grid div { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* Award credential */
.award-note {
  font-style: italic;
  opacity: 0.65;
  font-size: 0.95em;
  margin-top: 1.5rem;
}

/* ── Prints shop section ── */
.prints-shop-intro {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  max-width: 560px;
}

.prints-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}

.print-card {
  display: flex;
  flex-direction: column;
}

.print-card-img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.print-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.print-card:hover .print-card-img {
  transform: scale(1.02);
}

.print-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.print-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.3rem;
  letter-spacing: 0.03em;
}

.print-card-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.print-card-select {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.78rem;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  appearance: none;
  border-radius: 2px;
}

.print-card-select:focus {
  outline: none;
  border-color: var(--line-accent);
}

.print-card-btn {
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-top: auto;
}

.prints-shop-footer {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  text-align: center;
}

/* ── NEW STYLES v8 ── */

/* Remove old award note */
.award-note { display: none; }

/* Prints preview on homepage */
.prints-preview-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.prints-preview-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.prints-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.print-preview-item {
  display: block;
  text-decoration: none;
  color: var(--text);
}
.print-preview-img-wrap {
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
  aspect-ratio: 4/5;
}
.print-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.print-preview-item:hover .print-preview-img-wrap img { transform: scale(1.03); }
.print-preview-title {
  font-family: var(--serif);
  font-size: 1rem;
  display: block;
}

/* Book tease */
.book-tease-section { background: var(--bg-soft); }
.book-tease-wrap { text-align: left; }
.book-tease-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 0.8rem;
}
.book-tease-wrap p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

/* Email capture */
.email-capture-section { background: var(--bg-panel); }
.email-capture-wrap { text-align: left; }
.email-capture-wrap h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 0.8rem;
  margin-bottom: 0.75rem;
}
.email-capture-wrap > p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.email-capture-form { max-width: 480px; }
.email-capture-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.email-capture-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
}
.email-capture-row input[type="email"]:focus {
  outline: none;
  border-color: var(--line-accent);
}
.email-capture-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4rem;
  color: var(--muted);
}
.email-capture-message.is-success { color: var(--text); }
.email-capture-message.is-error { color: #d69b9b; }

/* Series gallery */
.series-gallery-section { padding: clamp(2rem, 5vw, 4rem) 0; }
.series-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 0.75rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item--portrait { grid-column: span 4; }
.gallery-item--landscape { grid-column: span 8; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  min-height: 320px;
}
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.gallery-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* Series context */
.series-context-section { border-top: 1px solid var(--line); }
.series-context-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2rem;
}
.series-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Prints page */
.prints-paper-note { padding: clamp(2rem, 4vw, 3rem) 0; background: var(--bg-soft); }
.paper-recommendation {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.paper-recommendation p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.paper-recommendation strong { color: var(--text); }

.prints-gallery-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.print-feature {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}
.print-feature:first-child { padding-top: 0; }
.print-feature:last-child { border-bottom: none; }
.print-feature--reversed {
  grid-template-columns: 1fr 55%;
}
.print-feature--reversed .print-feature-image-wrap { order: 2; }
.print-feature--reversed .print-feature-copy { order: 1; }
.print-feature-image-wrap {
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}
.print-feature-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.print-feature:hover .print-feature-img { transform: scale(1.02); }
.print-feature-img--portrait { aspect-ratio: 3/4; object-fit: cover; }
.print-feature-img--landscape { aspect-ratio: 4/3; object-fit: cover; }
.print-feature-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}
.print-feature-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.print-feature-sizes { margin-bottom: 2rem; }
.print-feature-sizes .eyebrow { margin-bottom: 0.75rem; display: block; }
.size-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.size-list li {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.print-feature-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Shipping grid */
.prints-shipping-section { background: var(--bg-soft); }
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.shipping-item .eyebrow { display: block; margin-bottom: 0.6rem; }
.shipping-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.shipping-item a { color: var(--text); border-bottom: 1px solid var(--line-accent); }

/* About page image stack */
.about-image-stack { display: flex; flex-direction: column; gap: 1rem; }
.about-stack-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  object-fit: cover;
}
.about-stack-offset { margin-top: -2rem; margin-left: 1.5rem; }

/* Press page */
.press-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.press-block:last-of-type { border-bottom: none; }
.press-block .eyebrow { display: block; margin-bottom: 0.75rem; }

/* Book notify */
.book-notify-wrap {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}
.book-notify-wrap .eyebrow { display: block; margin-bottom: 0.5rem; }
.book-notify-wrap p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.book-prints-link { margin-top: 2rem; }
.book-prints-link p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }

/* Footer social */
.footer-social { margin-top: 0.75rem; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-social-link:hover { color: var(--accent); }
.footer-credential { display: none; }

/* Footer nav update */
.footer-nav a {
  font-family: var(--serif);
  font-size: 0.95rem;
}
.footer-secondary a {
  font-size: 0.82rem;
}

/* Responsive additions */
@media (max-width: 900px) {
  .prints-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .print-feature,
  .print-feature--reversed {
    grid-template-columns: 1fr;
  }
  .print-feature--reversed .print-feature-image-wrap,
  .print-feature--reversed .print-feature-copy { order: unset; }
  .shipping-grid { grid-template-columns: 1fr; }
  .series-gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--portrait,
  .gallery-item--landscape { grid-column: span 1; }
  .gallery-item figcaption { opacity: 1; }
  .about-stack-offset { margin-top: 0; margin-left: 0; }
}

@media (max-width: 600px) {
  .prints-preview-grid { grid-template-columns: 1fr 1fr; }
  .series-gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--portrait,
  .gallery-item--landscape { grid-column: span 1; }
  .email-capture-row { flex-direction: column; }
  .email-capture-row input[type="email"],
  .email-capture-row .button { width: 100%; }
  .series-cta-row { flex-direction: column; }
  .print-feature-actions { flex-direction: column; align-items: flex-start; }
}

/* ── Editorial image sections (intentional, contained) ── */
.editorial-images-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.editorial-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.editorial-img-item {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.editorial-img-item--tall img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-img-item--short {
  margin-top: 4rem;
}
.editorial-img-item--short img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-img-item:hover img { transform: scale(1.02); }
.editorial-img-caption {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.75rem;
}

.editorial-single-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.editorial-single-wrap { display: flex; justify-content: center; }
.editorial-single-img-item {
  margin: 0;
  width: min(480px, 100%);
}
.editorial-single-img-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.editorial-single-img-item:hover img { transform: scale(1.01); }

@media (max-width: 600px) {
  .editorial-images-grid { grid-template-columns: 1fr; }
  .editorial-img-item--short { margin-top: 0; }
}

/* ── Logo styles ── */
.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.brand:hover .brand-logo { opacity: 0.85; }

.footer-logo {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

/* ── WebP hero image ── */
#hero-home {
  position: relative;
  overflow: hidden;
}
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Prints banner ── */
.prints-banner-section {
  width: 100%;
  overflow: hidden;
  background: #1a1714;
  position: relative;
}
.prints-banner-inner {
  width: 100%;
}
.prints-banner-wall {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.wall-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,248,235,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255,248,235,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.banner-prints-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: nowrap;
}
.banner-print-frame {
  position: relative;
  flex-shrink: 0;
}
/* Fix height so all prints feel the same size regardless of orientation */
.banner-print-portrait {
  height: clamp(160px, 20vw, 260px);
  width: auto;
}
.banner-print-landscape {
  height: clamp(120px, 14vw, 180px);
  width: auto;
}
.banner-print-portrait .frame-mat,
.banner-print-landscape .frame-mat {
  height: 100%;
  display: flex;
  align-items: center;
}
.banner-print-portrait .frame-image-wrap,
.banner-print-landscape .frame-image-wrap {
  height: 100%;
}
.banner-print-portrait .frame-image-wrap img,
.banner-print-landscape .frame-image-wrap img {
  height: 100%;
  width: auto;
  max-width: none;
}
.frame-mat {
  background: #f5f2ed;
  padding: clamp(8px, 1.5vw, 18px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.frame-mat::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 2;
}
.frame-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.frame-shadow {
  position: absolute;
  bottom: -8px;
  left: 4px;
  right: -4px;
  height: 20px;
  background: rgba(0,0,0,0.25);
  filter: blur(8px);
  z-index: 0;
}
.banner-caption {
  text-align: center;
}
.banner-caption .eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.5);
}
.banner-caption p {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  font-style: italic;
}

/* ── Print view toggle ── */
.print-view-toggle {
  display: inline-flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  width: fit-content;
  border-radius: 2px;
  overflow: hidden;
}
.pvt-btn {
  background: transparent;
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.pvt-btn + .pvt-btn {
  border-left: 1px solid var(--line-strong);
}
.pvt-btn--active {
  background: var(--text);
  color: var(--bg);
}
.pvt-btn:hover:not(.pvt-btn--active) {
  background: var(--bg-panel);
  color: var(--text);
}

/* ── Print / Wall view panels ── */
.print-view {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.print-view.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Wall mockup ── */
.wall-mockup {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.wall-mockup--portrait { aspect-ratio: 3/4; }
.wall-mockup--landscape { aspect-ratio: 4/3; }
.wall-mockup-bg {
  position: absolute;
  inset: 0;
  background: #cec5b8;
}
.wall-texture-subtle {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.wall-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,250,235,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(80,60,40,0.2) 0%, transparent 50%);
}
.wall-mockup-frame {
  position: relative;
  z-index: 2;
  width: 52%;
}
.wall-mockup--landscape .wall-mockup-frame { width: 72%; }
.wall-mockup-mat {
  background: #f5f2ed;
  padding: clamp(12px, 3%, 28px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.15),
    0 4px 12px rgba(0,0,0,0.2),
    0 12px 40px rgba(0,0,0,0.2),
    0 30px 80px rgba(0,0,0,0.12),
    4px 8px 20px rgba(0,0,0,0.1);
  position: relative;
}
.wall-mockup-mat::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
  z-index: 1;
}
.wall-mockup-mat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
}
.wall-mockup-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.wall-frame-shadow {
  position: absolute;
  bottom: -16px;
  left: 8px;
  right: -8px;
  height: 30px;
  background: rgba(0,0,0,0.18);
  filter: blur(12px);
  z-index: 0;
  border-radius: 50%;
}

/* Size price inline */
.size-price {
  float: right;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text);
}

@media (max-width: 600px) {
  .banner-prints-row {
    gap: 0.5rem;
  }
  .banner-print-portrait {
    height: clamp(100px, 28vw, 140px);
  }
  .banner-print-landscape {
    height: clamp(75px, 20vw, 105px);
  }
  .frame-mat {
    padding: 6px;
  }
  .wall-mockup { min-height: 220px; }
  .wall-mockup-frame { width: 65%; }
  .wall-mockup--landscape .wall-mockup-frame { width: 80%; }
}

/* ── WooCommerce product page — variation selects ── */
.variations select,
.woocommerce-variation-add-to-cart select,
table.variations select {
  background-color: var(--bg-panel);
  color: var(--text);
  border: 1px solid var(--line-strong);
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8944a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  min-width: 200px;
  cursor: pointer;
}
.variations select:focus {
  outline: none;
  border-color: var(--accent);
}
.variations select option {
  background-color: var(--bg-panel);
  color: var(--text);
}
.variations td, .variations th {
  padding: 0.5rem 0.75rem 0.5rem 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ── Hide WooCommerce product meta (SKU, category) ── */
.product_meta {
  display: none;
}

/* ── Hide Creativehub room visualiser on product page ── */
.woocommerce-product-gallery__image img[src*="room"],
.woocommerce-product-gallery__image img[src*="mockup"],
.woocommerce-product-gallery__image img[src*="wall"],
.woocommerce-product-gallery__image img[src*="frame"],
.woocommerce-product-gallery .flex-viewport,
.woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images {
  display: none;
}

/* ── Hide Apple Pay / payment request button on product page ── */
.single-product .wc-stripe-payment-request-button-separator,
.single-product #wc-stripe-payment-request-button,
.single-product .wc-stripe-payment-request-button-label-container {
  display: none !important;
}

/* ── Direct add-to-cart size buttons on prints page ── */
.size-list--buttons {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.size-atc-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.size-atc-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}
.size-atc-size {
  color: var(--text);
}
.size-atc-price {
  color: var(--accent);
  font-size: 0.85rem;
}
