.ajax_loading_indicator
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: black;
	font: bold 12px Arial,Tahoma,Verdana,Helvetica,sans-serif;
	margin: 0;
	z-index: 100000;
}

.ajax_loading_indicator span
{
	background: #FFD62B;
	display: block;
	width: 15em;
	margin: 0 auto;
	text-align: center;
	padding: 0.3em 0;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
/* =============================================================================
   AUSLIGHT V2 — Main Stylesheet
   Australian Light Fine Art Landscape Photography
   =============================================================================

   TABLE OF CONTENTS
   1.  Design Tokens (CSS Custom Properties)
   2.  CSS Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Header & Navigation
   6.  Mobile Navigation Drawer
   7.  Hero Carousel
   8.  Section: Featured Prints
   9.  Product Cards (.thumb_grid)
   10. Buttons
   11. Footer
   12. Lazy Load Fade-In
   13. Picture Blocks
   14. Collections Grid
   15. News Section
   16. Responsive Breakpoints
   17. Menu Generator Output
   27. Homepage Composition Pass
   ============================================================================= */


/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */

:root {
  /* Backgrounds */
  --bg-primary:    #181818;
  --bg-secondary:  #232323;
  --bg-tertiary:   #262626;

  /* Text */
  --text-primary:  #ffffff;
  --text-secondary: #b6b6b6;
  --text-muted:    #878787;
  --text-placeholder: #676767;

  /* Accent */
  --accent:        #fcca28;
  --accent-hover:  #fcc411;
  --accent-dark:   #261e06;

  /* Borders */
  --border:        #262626;
  --border-light:  #3a3a3a;

  /* Typography */
  --font-body:     'Halant', serif;        /* body copy */
  --font-serif:    'Manuale', serif;       /* headings / product titles */
  --font-sans:     'Outfit', sans-serif;   /* UI / nav / buttons */

  /* Spacing */
  --space-xs:   0.5rem;    /*  8px */
  --space-sm:   0.75rem;   /* 12px */
  --space-md:   1rem;      /* 16px */
  --space-lg:   1.5rem;    /* 24px */
  --space-xl:   2rem;      /* 32px */
  --space-2xl:  3rem;      /* 48px */
  --space-3xl:  4rem;      /* 64px */
  --space-4xl:  5rem;      /* 80px */
  --space-5xl:  6.25rem;   /* 100px */

  /* Layout */
  --max-width:      1430px;
  --header-height:  90px;
  --header-height-sm: 70px;

  /* Transitions */
  --ease:   cubic-bezier(.4, 0, .2, 1);
  --t-fast: .15s cubic-bezier(.4, 0, .2, 1);
  --t-mid:  .25s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .5s cubic-bezier(.4, 0, .2, 1);
}


/* =============================================================================
   2. CSS RESET & BASE
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-primary);       /* fallback if component fails */
}

body {
  padding-top: var(--header-height);
  overflow-x: hidden;                  /* prevent horizontal scroll from full-bleed elements */
  background: transparent;             /* let dithered background show through */
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

/* Dithered background — fixed viewport layer behind all content */
#site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--accent-hover);
}

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

/* Inputs */
input,
textarea,
select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.625rem 0.875rem;
  width: 100%;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-placeholder);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Dividers */
hr {
  border: none;
  border-top: 1px solid var(--border);
}

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


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.625rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Section labels */
.section-label {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
}

/* Section headings with label above */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-label {
  margin-bottom: var(--space-md);
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}


/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */

.container {
  width: 92%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =============================================================================
   5. HEADER & NAVIGATION
   ============================================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  transition: height 0.35s cubic-bezier(.4,0,.2,1);
}

.site-header__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Left zone — primary nav */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: 10px;
}

/* Center zone — logo */
.site-header__logo {
  text-align: center;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo-img {
  height: auto;
  width: 382px;
  max-width: 100%;
  display: block;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
}

.site-header__logo a:hover {
  opacity: 0.85;
}

/* Compact header — all viewports */
.site-header.is-compact {
  height: 60px;
}

.site-header.is-compact .site-header__nav {
  padding-top: 0;
}

.site-header.is-compact .site-header__logo-img {
  width: 260px;
}

.site-header.is-compact ~ .header-search-panel {
  top: 60px;
}

/* Right zone — icons */
.site-header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-lg);
}

/* Search icon */
.header-search-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color var(--t-fast);
}

.header-search-btn:hover {
  color: var(--accent);
}

.header-search-btn svg {
  width: 18px;
  height: 18px;
}

/* Search panel — slides down from under the header */
.header-search-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 1090;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--space-3xl);
  height: 56px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.35s cubic-bezier(.4,0,.2,1);
}

.header-search-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-search-panel__form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

.header-search-panel__icon {
  color: var(--accent);
  flex-shrink: 0;
}

.header-search-panel__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 6px 0;
  -webkit-appearance: none;
}

.header-search-panel__input::placeholder {
  color: var(--text-muted);
}

/* Hide browser's native clear button */
.header-search-panel__input::-webkit-search-cancel-button { display: none; }

.header-search-panel__close {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}

.header-search-panel__close:hover {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .header-search-panel {
    padding: 0 var(--space-lg);
  }
}

/* Cart icon */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.header-cart:hover {
  color: var(--accent);
}

.header-cart svg {
  width: 20px;
  height: 20px;
}

/* Hamburger — mobile only */
.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--t-mid), opacity var(--t-fast);
}

/* Mini cart container — required AJAX target ID */
#minicart {
  display: flex;
  align-items: center;
}

/* Cart icon link within #minicart */
#minicart .cart-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: #181818;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}


/* =============================================================================
   6. MOBILE NAVIGATION DRAWER
   ============================================================================= */

/* Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: none;
}

/* Left-sliding drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  background: #fcca28;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-nav-drawer__close:hover {
  opacity: 0.6;
}

.mobile-nav-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 44px 0 20px;
  overflow-y: auto;
  height: 100%;
}

/* Top-level links and toggle button share the same appearance */
.mobile-nav-drawer__links a,
.mobile-nav-drawer__toggle {
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: opacity var(--t-fast);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-drawer__links a:hover,
.mobile-nav-drawer__toggle:hover {
  opacity: 0.6;
}

/* The − / + toggle icon */
.mobile-nav-drawer__toggle-icon {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.mobile-nav-drawer__toggle[aria-expanded="true"] .mobile-nav-drawer__toggle-icon {
  transform: rotate(90deg);
}

/* Subcategory links — hidden until expanded */
.mobile-nav-drawer__sub {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.06);
}

.mobile-nav-drawer__sub.is-open {
  display: flex;
}

.mobile-nav-drawer__sub a {
  font-size: 0.75rem;
  padding: 6px 20px 6px 34px;
  letter-spacing: 0.08em;
}


/* =============================================================================
   7. HERO CAROUSEL
   ============================================================================= */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 400px;
  max-height: 80vh;
  overflow: hidden;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CTA area — vertically centered, left-aligned */
.hero-cta {
  position: absolute;
  top: 50%;
  left: var(--space-5xl);
  transform: translateY(-50%);
  z-index: 10;
  animation: heroCtaIn 0.6s cubic-bezier(.4, 0, .2, 1) 0.55s both;
}

@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(calc(-50% + 20px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--t-fast);
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--text-primary);
}


/* =============================================================================
   8. SECTION: FEATURED PRINTS
   ============================================================================= */

.section--featured-prints {
  background: var(--bg-primary);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section--featured-prints .section-header {
  margin-bottom: var(--space-xl);
}

.section--featured-prints .view-all-link {
  display: block;
  text-align: center;
  margin-top: var(--space-3xl);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
}

.section--featured-prints .view-all-link:hover {
  color: var(--accent-hover);
}

.section--featured-prints .view-all-link::after {
  content: ' →';
}


/* =============================================================================
   9. PRODUCT CARDS (.thumb_grid)
      Overrides the LemonStand partial's existing .thumb_grid class
   ============================================================================= */

ul.thumb_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 550px) {
  ul.thumb_grid { grid-template-columns: 1fr; }
}

ul.thumb_grid li {
  position: relative;
}

/* Image container — enforces uniform 700×234 panoramic aspect on every card */
ul.thumb_grid li .thumb-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 700 / 234;
}

/* Single column — use a taller crop ratio so portrait images get more height */
@media (max-width: 600px) {
  ul.thumb_grid li .thumb-image-wrap {
    aspect-ratio: 3 / 2;
  }
}

ul.thumb_grid li a.thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

ul.thumb_grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-mid), opacity var(--t-fast);
}

ul.thumb_grid li:hover img {
  transform: scale(1.03);
}

/* Hover overlay — slides up from bottom */
ul.thumb_grid li .thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #181818;
  padding: 12px 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(.4, 0, .2, 1), opacity 0.2s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.thumb_grid li:hover .thumb-overlay {
  transform: translateY(0);
  opacity: 0.85;
}

.thumb-overlay-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* Card text */
ul.thumb_grid li .thumb-info {
  padding: 1.1rem 0 1rem;
}

/* Vendor / photographer label above title */
ul.thumb_grid li .thumb-vendor {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #a9a9a9;
  margin-top: 0;
  margin-bottom: 0;
}

ul.thumb_grid li .thumb-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.18;
  margin-top: 0.35rem;
  margin-bottom: 0;
  text-decoration: none;
  display: block;
}

ul.thumb_grid li .thumb-title:hover {
  color: var(--text-primary);
}

ul.thumb_grid li .thumb-price {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0;
  margin-bottom: 0;
}

ul.thumb_grid li .thumb-photographer {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}


/* =============================================================================
   10. BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.875rem 2rem;
  border-radius: 0;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

/* Primary — gold CTA */
.btn--primary {
  background-color: #fcca28;
  color: #000000;
  border: 1px solid #fcca28;
}

.btn--primary:hover {
  background-color: #fcc411;
  border-color: #fcc411;
  color: #000000;
}

/* Secondary — dark with gold border */
.btn--secondary {
  background-color: #000000;
  color: #fcca28;
  border: 1px solid #fcca28;
}

.btn--secondary:hover {
  background-color: #261e06;
  border-color: #261e06;
  color: #fcca28;
}

/* Full-width variant */
.btn--full {
  width: 100%;
}

/* Hero CTA */
.btn--hero {
  padding: 15px 24px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.payment-cta {
  margin: 0;
  padding: 0;
}
.payment-cta--stripe,
.payment-cta--paypal {
  display: grid;
  gap: 10px;
}
.payment-provider-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin-top: var(--space-xs);
  padding: var(--space-sm) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
  color: var(--text-secondary);
}
.payment-provider-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border: 1px solid rgba(252, 202, 40, 0.22);
  background: rgba(252, 202, 40, 0.08);
  color: var(--accent);
}
.payment-provider-note__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.payment-provider-note__body {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.payment-provider-note__label {
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.payment-provider-note__body span:not(.payment-provider-note__label) {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.payment-provider-note a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(252, 202, 40, 0.45);
  text-underline-offset: 3px;
}
.payment-provider-note a:hover {
  color: var(--accent-hover);
  text-decoration-color: currentColor;
}
.payment-alternative {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0px 0px 37px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.payment-alternative__link {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(252, 202, 40, 0.45);
  text-underline-offset: 3px;
}
.payment-alternative__link:hover,
.payment-alternative__link:focus {
  color: var(--accent-hover);
  text-decoration-color: currentColor;
}
.stripe-payment-element {
  min-height: 76px;
}
.stripe-payment-message {
  position: relative;
  min-height: 0;
  padding: 11px 14px 11px 42px;
  border: 1px solid rgba(255, 107, 107, 0.32);
  background: rgba(255, 107, 107, 0.07);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #f3d0d0;
}
.stripe-payment-message::before {
  content: "!";
  position: absolute;
  top: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 107, 107, 0.5);
  color: #ff8a8a;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.stripe-payment-message:empty {
  display: none;
}
.stripe-payment-message:empty::before {
  content: none;
}
.btn--stripe,
.btn--paypal {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  border: 0;
  color: #141414;
  background: var(--accent);
  letter-spacing: 0.08em;
  box-shadow: none;
}
.btn--stripe:hover,
.btn--paypal:hover {
  background: var(--accent-hover);
  box-shadow: none;
}
.btn--stripe:disabled,
.btn--paypal:disabled {
  cursor: wait;
  opacity: 0.7;
}
.payment-cta--offline {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-lg);
}
.payment-cta--offline p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Top-of-page pay panel on /cart/pay — total on the left, big CTA on the right */
.pay-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(440px, 1fr);
  gap: clamp(var(--space-xl), 4.2vw, var(--space-3xl));
  align-items: start;
  background: rgba(35, 35, 35, 0.82);
  border: 1px solid var(--border);
  padding: clamp(var(--space-lg), 3vw, var(--space-2xl));
  margin-bottom: var(--space-2xl);
}
.pay-summary__total {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding-top: 0;
}
.pay-summary__total-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.pay-summary__total-value {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
}
.pay-summary__currency {
  display: inline-flex;
  align-items: center;
  margin-left: var(--space-xs);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}
.pay-summary__total-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pay-summary__breakdown {
  width: 100%;
  display: grid;
  gap: 0;
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pay-summary__breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  align-items: baseline;
  min-height: 34px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.pay-summary__breakdown-row:last-child {
  border-bottom: 0;
}
.pay-summary__breakdown-row span:first-child {
  color: var(--text-muted);
}
.pay-summary__breakdown-row span:last-child {
  color: var(--text-primary);
  font-weight: 400;
}
.pay-summary__breakdown-row small {
  color: var(--text-muted);
  font-size: 0.6875rem;
}
.pay-summary__cta {
  min-width: 0;
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

@media (max-width: 960px) {
  .pay-summary {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
  .pay-summary__total {
    display: grid;
    grid-template-columns: minmax(180px, 0.58fr) minmax(260px, 1fr);
    column-gap: var(--space-xl);
    row-gap: 7px;
    align-items: start;
  }
  .pay-summary__breakdown {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .pay-summary__cta {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .pay-summary {
    gap: var(--space-lg);
    padding: var(--space-lg);
  }
  .pay-summary__total {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .pay-summary__total-value {
    font-size: 2rem;
  }
  .pay-summary__breakdown {
    margin-top: var(--space-lg);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}


/* =============================================================================
   11. FOOTER
   ============================================================================= */

.site-footer {
  background: #141414;
  margin-top: 0;
  padding: 0;
}

/* Bottom bar aligns to the same three-column rhythm as the link columns */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1180px;
  margin-top: 0;
  padding: 2rem 15px 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1rem clamp(2.5rem, 5vw, 5rem);
}

.site-footer__legal {
  grid-column: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.125rem;
}

.site-footer__legal a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: #aaa;
  text-decoration: none;
  letter-spacing: 0;
  transition: color var(--t-fast);
}

.site-footer__legal a:hover {
  color: var(--text-secondary);
}

.site-footer__copyright {
  grid-column: 3;
  justify-self: end;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: right;
}

/* SEO link columns */
.site-footer__seo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 1180px;
  padding-top: 4.75rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__seo-col {
  min-width: 0;
}

.site-footer__seo-heading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8d8d8;
  margin-bottom: var(--space-lg);
}

.site-footer__seo-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__seo-links a {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #8f8f8f;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.55;
  transition: color var(--t-fast);
}

.site-footer__seo-links a:hover {
  color: #d6d6d6;
}

@media (max-width: 719px) {
  .site-footer__seo {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
  }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .site-footer__seo {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__legal,
  .site-footer__copyright {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}


/* =============================================================================
   12. LAZY LOAD FADE-IN
   ============================================================================= */

@keyframes placeholder-pulse {
  0%   { background-color: #252525; }
  100% { background-color: #181818; }
}

.js-lazy:not(.is-loaded) {
  animation: placeholder-pulse 1s var(--ease) infinite alternate;
}

/* IntersectionObserver-based fade (auslight-v2.js) */
.js-lazy {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.js-lazy.is-loaded {
  opacity: 1 !important;
  animation: none !important;
}

/* Placeholder background while loading */
.js-lazy-placeholder {
  background: var(--bg-tertiary);
}


/* =============================================================================
   12b. LIGHTBOX
   ============================================================================= */

.v2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.v2-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.v2-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
}

.v2-lightbox__content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading spinner */
.v2-lightbox__spinner {
  display: none;
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: v2-spin 0.8s linear infinite;
}

@keyframes v2-spin {
  to { transform: rotate(360deg); }
}

/* Image — hidden until loaded */
.v2-lightbox__img {
  display: block;
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.v2-lightbox__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.v2-lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity var(--t-fast), background var(--t-fast);
  z-index: 1;
}

.v2-lightbox__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 719px) {
  .v2-lightbox__content {
    max-width: 98vw;
    max-height: 96vh;
  }

  .v2-lightbox__img {
    max-width: 98vw;
    max-height: 94vh;
  }

  .v2-lightbox__close {
    top: 10px;
    right: 10px;
  }
}


/* =============================================================================
   13. PICTURE BLOCKS
   ============================================================================= */

.picture-block {
  display: flex;
  align-items: stretch;
  background: var(--bg-secondary);
}

.picture-block--right {
  flex-direction: row-reverse;
}

.picture-block__img {
  width: 50%;
  overflow: hidden;
}

.picture-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.picture-block__content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.125rem 0;
}

.picture-block__inner {
  max-width: 60%;
  text-align: center;
}

.picture-block__heading {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  line-height: 3.875rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 30px;
}

.picture-block__body {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.picture-block__link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
}

.picture-block__link:hover {
  color: var(--accent-hover);
}


/* =============================================================================
   14. PHOTOGRAPHER CARDS
   ============================================================================= */

.section--photographers {
  padding: var(--space-3xl) 0;
}

.photographers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photographer-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.photographer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.photographer-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.photographer-card__body {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.24) 36%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-sm);
  padding: var(--space-2xl);
  transition: none;
}

.photographer-card:hover .photographer-card__body {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.24) 36%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.photographer-card__name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: #fff;
  text-align: left;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.85);
}

.photographer-card__browse {
  display: inline-block;
  border: 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0;
  opacity: 1;
  transform: none;
}

.photographer-card:hover .photographer-card__browse {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .photographers-grid {
    grid-template-columns: 1fr;
  }
  .photographer-card {
    aspect-ratio: 3 / 2;
  }
}


/* =============================================================================
   15. COLLECTIONS GRID
   ============================================================================= */

.section--collections {
  padding: 60px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 45px;
}

/* Card is now the <a> itself — whole card is clickable */
.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  text-decoration: none;
  background: var(--bg-tertiary);
}

/* Image fills the card, scales on hover */
.collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.collection-card:hover .collection-card__img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

/* Placeholder when no category image is set */
.collection-card__img--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #222 0%, #2a2a2a 100%);
}

/* Gradient overlay — bottom readability layer, stable on hover */
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.64) 0%,
    rgba(0, 0, 0, 0.26) 36%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: none;
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.64) 0%,
    rgba(0, 0, 0, 0.26) 36%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.collection-card__name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.85);
  transition: transform 0.3s var(--ease);
}

.collection-card:hover .collection-card__name {
  transform: none;
}

.collection-card__browse {
  display: inline-block;
  border: 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0;
  margin-top: 12px;
  opacity: 0.95;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.collection-card:hover .collection-card__browse {
  transform: none;
}


/* =============================================================================
   15. NEWS SECTION
   ============================================================================= */

.section--news {
  padding: 60px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.news-card__date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color var(--t-fast);
}

.news-card__title:hover {
  color: var(--accent);
}

.news-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.news-card__more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
}

.news-card__more:hover {
  color: var(--accent-hover);
}


/* =============================================================================
   16. RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* --- Desktop nav / mobile hamburger boundary (960px) --- */
@media (max-width: 960px) {
  /* Smaller header — match 719px sizing */
  :root {
    --header-height: var(--header-height-sm);
  }

  .site-header__inner {
    padding: 0 var(--space-md);
  }

  .site-header__logo-img {
    height: auto;
    width: 200px;
  }

  .site-header__nav {
    padding-top: 0;
  }

  /* Compact header — shrinks when content scrolls */
  .site-header.is-compact {
    height: 52px;
  }

  .site-header.is-compact .site-header__logo-img {
    width: 160px;
  }

  .site-header.is-compact ~ .header-search-panel {
    top: 52px;
  }

  /* Hide desktop nav links — keep the nav wrapper visible so hamburger shows */
  .primary-nav {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  /* Hero: wider ratio on tablet/mobile */
  .hero {
    aspect-ratio: 96 / 50;
    min-height: 280px;
  }

  /* News: 2 columns */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Picture blocks: stack vertically, content above image */
  .picture-block,
  .picture-block--right {
    flex-direction: column-reverse;
  }

  .picture-block__img,
  .picture-block__content {
    width: 100%;
  }

  .picture-block__img {
    min-height: 300px;
  }

  .picture-block__inner {
    max-width: 80%;
  }
}

/* --- Tablet --- */
@media (max-width: 1023px) {

  /* Collections: 2-column on tablet */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    left: var(--space-3xl);
  }
}

/* --- Mobile (< 719px) --- */
@media (max-width: 719px) {

  /* Collections: 1 column */
  .collections-grid {
    grid-template-columns: 1fr;
  }

  /* News: 1 column */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* Picture block image full width, stacked */
  .picture-block__img {
    width: 100%;
    min-height: 220px;
  }

  .picture-block__heading {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }

  /* Hero */
  .hero {
    aspect-ratio: 96 / 50;
    min-height: 250px;
  }

  .hero-cta {
    position: absolute;
    top: 50%;
    left: var(--space-md);
    transform: translateY(-50%);
  }


  /* Full-width CTAs on mobile */
  .btn--hero {
    width: 100%;
    justify-content: center;
  }

  /* Footer bottom bar: stack on mobile */
  .site-footer__bottom {
    gap: 1.25rem;
  }


  /* Section header */
  .section-header {
    margin-bottom: var(--space-2xl);
  }
}

/* --- Large screens (> 1440px) --- */
@media (min-width: 1440px) {
  .hero {
    max-height: 620px;
  }
}

/* --- Extra-large screens (> 1920px) --- */
@media (min-width: 1920px) {
  .hero {
    max-height: 540px;
  }
}


/* =============================================================================
   17. MENU GENERATOR OUTPUT — target actual class names from auslight:menu_generator
       (the generator outputs plain <li> and <a> tags, not BEM classes)
   ============================================================================= */

/* Nav list — horizontal row (direct child only; nested dropdown-menu must NOT flex) */
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top-level nav items */
.primary-nav ul > li {
  position: relative;
  list-style: none;
}

/* No vertical separator between nav items */

.primary-nav ul > li > a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 15px;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.primary-nav ul > li > a:hover,
.primary-nav ul > li > a:focus {
  color: #c2c2c2;
  background: none;
  outline: none;
}

/* Drop indicator on links with children (class="drop") */
.primary-nav ul > li > a.drop::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.2em;
  transition: transform var(--t-fast);
}

.primary-nav ul > li:hover > a.drop::after,
.primary-nav ul > li:focus-within > a.drop::after {
  transform: rotate(225deg) translateY(2px);
}

/* Dropdown wrapper — menu_generator wraps in <div class="dropdown"> */
/* !important required — ls_styles overrides display and position on .dropdown */
.primary-nav ul > li .dropdown {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 218px;
  background: #fcca28 !important;
  border: none;
  padding: 15px 0 18px;
  z-index: 200;
}

.primary-nav ul > li:hover .dropdown,
.primary-nav ul > li:focus-within .dropdown {
  display: block !important;
}

/* Dropdown list items and links */
.primary-nav ul > li .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav ul > li .dropdown-menu li a {
  display: block;
  padding: 4px 42px 7px 25px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #000000;
  text-decoration: none;
  transition: opacity var(--t-fast);
  white-space: nowrap;
}

.primary-nav ul > li .dropdown-menu li a:hover {
  opacity: 0.7;
  color: #000000;
  background: transparent;
}


/* =============================================================================
   19. PAGE BANNER (subpage slim hero)
   ============================================================================= */

.page-banner {
  position: relative;
  height: 280px;
  background-color: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.60) 100%);
}

.page-banner__title {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
  padding: 0 var(--space-xl);
}


/* =============================================================================
   20. SUBPAGE CONTENT (prose styles)
   ============================================================================= */

.subpage-content {
  max-width: 860px;
  padding: var(--space-4xl) var(--space-xl);
}

.subpage-content h1,
.subpage-content h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-lg);
}

.subpage-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.subpage-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-sm);
  margin-top: var(--space-3xl);
}

/* Section heading (e.g. "FREQUENTLY ASKED QUESTIONS") */
.subpage-content h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-primary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: var(--space-3xl) 0 var(--space-xl);
}

/* Sub-section label */
.subpage-content h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: var(--space-xl) 0 var(--space-sm);
}

/* Question / item heading (e.g. FAQ questions, small subheadings) */
.subpage-content h5 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin: var(--space-xl) 0 var(--space-xs);
}

.subpage-content h6 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: var(--space-lg) 0 var(--space-xs);
}

.subpage-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 var(--space-md);
}

.subpage-content ul,
.subpage-content ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
  padding-left: var(--space-xl);
}

.subpage-content li {
  margin-bottom: var(--space-xs);
}

.subpage-content a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}

.subpage-content a:not(.btn):hover {
  text-decoration: underline;
}

.subpage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-xl);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.subpage-content th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.subpage-content td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.subpage-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: var(--space-lg) 0;
}

.subpage-content blockquote {
  border-left: 3px solid var(--accent);
  margin: var(--space-xl) 0;
  padding: var(--space-md) var(--space-xl);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
}

/* Shared styling for static content pages */
.content-page {
  max-width: 820px;
  margin: 0 auto;
}

.content-page--wide {
  max-width: 960px;
}

.content-page__header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.subpage-content .content-page__lead {
  max-width: 720px;
  color: var(--text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
  margin: 0;
}

.content-section {
  margin-top: var(--space-2xl);
}

.subpage-content .content-section:first-child {
  margin-top: 0;
}

.subpage-content .content-section h2 {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  margin-top: 0;
}

.subpage-content .content-list {
  list-style: disc;
}

.subpage-content .content-list li::marker {
  color: var(--accent);
}

.subpage-content .content-note {
  border-left: 3px solid var(--accent);
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
}

.content-figure {
  margin: var(--space-xl) 0;
}

.content-figure img {
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.content-figure--small {
  max-width: 520px;
}

.size-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.size-guide-tile {
  margin: 0;
  min-width: 0;
}

.size-guide-tile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.size-guide-tile figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: var(--space-sm) 0 0;
}

.size-guide-tile figcaption span {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.faq-list {
  display: grid;
  gap: var(--space-lg);
}

.faq-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.subpage-content .faq-item__question {
  border-bottom: 0;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0 0 var(--space-sm);
  padding-bottom: 0;
}

.faq-item p:last-child,
.contact-details__item p:last-child,
.tracking-optout p:last-child {
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.contact-details__item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.subpage-content .contact-details__item h2 {
  border-bottom: 0;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0 0 var(--space-xs);
  padding-bottom: 0;
}

.tracking-optout {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.subpage-content .tracking-optout h3 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.tracking-optout iframe {
  display: block;
  width: 100%;
  max-width: 550px;
  height: 150px;
  border: 0;
  margin-top: var(--space-md);
}

@media (max-width: 719px) {
  .page-banner {
    height: 200px;
  }

  .subpage-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .content-page__header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  .size-guide-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .tracking-optout {
    padding: var(--space-md);
  }
}


/* =============================================================================
   21. GALLERY LAYOUT (2-col: main + sidebar)
   ============================================================================= */

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0 var(--space-4xl);
  padding: var(--space-xl) var(--space-xl) var(--space-4xl);
  align-items: start;
}

.gallery-main {
  min-width: 0; /* prevent grid blowout */
}

/* Gallery text header (above product grid) */
.gallery-header {
  margin-bottom: var(--space-xl);
}

.gallery-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm);
}

.gallery-header__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--space-lg);
}


/* =============================================================================
   22. GALLERY SIDEBAR
   ============================================================================= */

.gallery-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.gallery-sidebar__heading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}

.gallery-sidebar__heading--spaced {
  margin-top: var(--space-3xl);
}

.gallery-sidebar__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-sidebar__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--t-fast);
}

.gallery-sidebar__link:hover {
  color: var(--text-primary);
}

.gallery-sidebar__link.is-active {
  color: var(--accent);
  font-weight: 400;
}


/* =============================================================================
   23. PAGINATION
   ============================================================================= */

.pagination-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin: var(--space-l) 0;
  font-family: var(--font-sans);
}

.pagination-nav__count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex: 1;
}

.pagination-nav__count strong {
  color: var(--text-secondary);
  font-weight: 400;
}

.pagination-nav__btn {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.pagination-nav__btn:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* =============================================================================
   GALLERY RESPONSIVE
   ============================================================================= */

@media (max-width: 960px) {
  .gallery-layout {
    grid-template-columns: 1fr;
    padding-top: 0px;
  }

  /* Move sidebar above the gallery grid, non-sticky so it doesn't
     obscure product images in landscape orientation.
     Full-bleed: break out of container to span full viewport width. */
  .gallery-sidebar {
    position: static;
    z-index: 90;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    order: -1;
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    margin-top: 0;
    margin-bottom: var(--space-xl);
    background: var(--bg-primary);
  }

  /* Hide headings — compact strip doesn't need them */
  .gallery-sidebar__heading {
    display: none;
  }

  /* Flatten both link lists into one continuous wrapping strip */
  .gallery-sidebar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .gallery-sidebar__links {
    display: contents;
  }

  .gallery-sidebar__links li {
    display: inline;
  }

  .gallery-sidebar__link {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    white-space: nowrap;
  }

  .gallery-sidebar__link:hover {
    border-color: var(--text-muted);
  }

  .gallery-sidebar__link.is-active {
    border-color: var(--accent);
    background: var(--accent-dark);
  }
}

@media (max-width: 719px) {
  .gallery-sidebar__nav {
    gap: 5px;
  }

  .gallery-sidebar__link {
    padding: 3px 8px;
    font-size: 0.625rem;
  }
}

@media (max-width: 719px) {
  .gallery-layout {
    padding: 0px var(--space-lg) var(--space-2xl);
  }

}

/* =============================================================================
   PHOTOGRAPHER DIRECTORY GRID
   ============================================================================= */

ul.photographer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Photographer directory cards use the shared class without the overlay body */
ul.photographer-grid .photographer-card {
  overflow: visible;
  aspect-ratio: unset;
  display: block;
}

ul.photographer-grid .photographer-card img {
  height: 100%;
  aspect-ratio: unset;
}

.photographer-card__link {
  display: block;
  text-decoration: none;
}

.photographer-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-secondary);
  overflow: hidden;
}

.photographer-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.photographer-card__link:hover .photographer-card__img-wrap img {
  transform: scale(1.04);
}

.photographer-card__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-top: var(--space-md);
  letter-spacing: 0;
  text-shadow: none;
  transition: color var(--t-fast);
}

.photographer-card__link:hover .photographer-card__name {
  color: var(--accent);
}

@media (max-width: 719px) {
  ul.photographer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   GALLERY LISTING GRID — show full image, no crop
   Scoped to .gallery-main so homepage panoramic cards are unaffected
   ============================================================================= */

.gallery-main ul.thumb_grid li .thumb-image-wrap {
  aspect-ratio: unset;
  height: 240px;
  background: rgba(13,13,13,0.4);
  padding: 20px 10px;
}

.gallery-main ul.thumb_grid li img {
  object-fit: contain;
  transform: none !important;
}

.gallery-main ul.thumb_grid li:hover img {
  transform: none !important;
}

@media (max-width: 550px) {
  .gallery-main ul.thumb_grid li .thumb-image-wrap {
    height: auto;
    aspect-ratio: unset;
    padding: 0;
  }
  .gallery-main ul.thumb_grid li img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    aspect-ratio: auto;
    margin: 0 auto;
    display: block;
  }
}

/* ── Homepage featured prints — show full image, no crop ── */
.section--featured-prints ul.thumb_grid li .thumb-image-wrap {
  aspect-ratio: unset;
  height: 240px;
  background: rgba(13,13,13,0.4);
  padding: 20px 10px;
}

.section--featured-prints ul.thumb_grid li img {
  object-fit: contain;
  transform: none !important;
}

.section--featured-prints ul.thumb_grid li:hover img {
  transform: none !important;
}

@media (max-width: 550px) {
  .section--featured-prints ul.thumb_grid li .thumb-image-wrap {
    height: auto;
    aspect-ratio: unset;
    padding: 0;
  }
  .section--featured-prints ul.thumb_grid li img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    aspect-ratio: auto;
    margin: 0 auto;
    display: block;
  }
}


/* =============================================================================
   24. IMAGE DETAIL PAGE
   ============================================================================= */

/* --- Layout: horizontal (default) --- */
.image-detail {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0 var(--space-4xl);
  padding: var(--space-lg) var(--space-xl) var(--space-3xl);
  align-items: start;
}

.image-detail__main {
  min-width: 0;
}

/* --- Layout: vertical (portrait images) --- */
.image-detail--vert {
  padding-top: 0px;
  grid-template-columns: auto 1fr;
}

.image-detail__img-col {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  width: min(40vw, 450px); /* proportional to viewport, caps at 450px */
}

/* Container fills the column width; height derived from aspect ratio.
   max-height caps extreme portraits; overflow clips rather than distorts. */
.image-detail--vert #frame-preview-container {
  width: 100%;
  aspect-ratio: var(--framed-ar, 0.75);
  max-height: clamp(460px, calc(100vh - var(--header-height) - 80px), 700px);
  overflow: hidden;
}

.image-detail--vert frame-preview {
  width: 100%;
  height: 100%;
}

/* Fallback link + image: cover fills edge-to-edge, no bars */
.image-detail--vert #frame-preview-fallback-link {
  display: block;
  width: 100%;
  height: 100%;
}

.image-detail--vert #frame-preview-fallback {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
}

.image-detail__right {
  min-width: 0;
}

/* --- Image wrapper --- */
.image-detail__img-wrap {
  position: relative;
  background: transparent;
  line-height: 0;
}

.image-detail--vert .image-detail__img-wrap {
  background: transparent;
}

.image-detail__img-wrap a.v2-lightbox-trigger {
  display: block;
  cursor: zoom-in;
}

.image-detail__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.image-detail--vert .image-detail__img-wrap #frame-preview-fallback {
  height: 100%;
  object-fit: contain;
}

/* --- Price badge --- */
.image-price-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--accent);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  text-decoration: none;
  line-height: 1.3;
  transition: background var(--t-fast);
}

.image-price-badge:hover {
  background: var(--accent-hover);
}

.image-price-badge__label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.65);
}

.image-price-badge__price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
}

/* --- Prev / Next navigation --- */
.image-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.image-nav__spacer {
  flex: 1;
}

.image-nav__btn {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
  transition: color var(--t-fast);
}

.image-nav__btn:hover {
  color: var(--text-primary);
}

.image-nav__btn--prev::before { content: '← '; }
.image-nav__btn--next::after  { content: ' →'; }

.image-nav__btn--disabled {
  pointer-events: none;
  opacity: 0;
}

/* --- Multi-image viewer wrapper --- */
.image-detail__viewer {
  display: block;
}

/* When there are thumbnails: flex row — thumbs left, main image right */
.image-detail__viewer.has-thumbs {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: flex-start;
}

/* Vertical thumbnail strip */
.has-thumbs .image-detail__thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 90px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* Main image takes remaining space */
.has-thumbs .image-detail__img-wrap {
  flex: 1;
  min-width: 0;
}

.image-detail__thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 68px;
  background: #0d0d0d;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.image-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-detail__thumb:hover {
  border-color: var(--text-muted);
}

.image-detail__thumb.is-active {
  border-color: var(--accent);
}

/* Room mockup view (shown instead of frame-preview for non-print images) */
#mockup-view {
  width: 100%;
}

#mockup-img {
  width: 100%;
  display: block;
  height: auto;
}

/* --- Header: vendor / title / subtitle --- */
.image-detail__header {
  padding: var(--space-md) 0 0;
}

/* --- Bottom two-column: info (left) + configurator (right) --- */
.image-detail__bottom {
  display: grid;
  grid-template-columns: 1fr 265px;
  gap: 0 var(--space-2xl);
  align-items: start;
  margin-top: var(--space-sm);
}

@media (max-width: 1200px) {
  .image-detail__bottom {
    grid-template-columns: 1fr 200px;
  }
}

/* Config column — top padding matches image-detail__header */
.image-detail__config {
  padding-top: var(--space-md);
}

/* Strip the top separator from print-config when it sits in the config column */
.image-detail__config .print-config,
.image-detail__config #print-config {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.image-detail__vendor {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 var(--space-sm);
}

.image-detail__vendor a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.image-detail__vendor a:hover {
  color: var(--accent);
}

.image-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 6px;
}

.image-detail__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 var(--space-sm);
}

/* --- Story: the photographer's description --- */
.image-detail__story {
  font-family: var(--font-body);
  font-size: inherit;
  line-height: 1.85;
  color: var(--text-secondary);
  padding: var(--space-lg) 0 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-md);
}

.image-detail__story p {
  margin: 0 0 var(--space-md);
}

.image-detail__story p:last-child {
  margin-bottom: 0;
}

.image-detail__cta {
  margin-top: var(--space-2xl);
}

.image-detail__unavailable {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
}

/* --- About our prints: full-width 3-col callout band --- */
.image-prints-band {
  background: var(--bg-secondary);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-sm);
}

.image-prints-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4xl);
}

.image-prints-band__heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 var(--space-md);
}

.image-prints-band p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.image-prints-band a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}

.image-prints-band a:hover {
  color: var(--accent);
}

@media (max-width: 719px) {
  .image-prints-band__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

/* --- Vertical: sidebar is now a direct grid child (not inside .image-detail__right) ---
   These base values apply at desktop 1581px+ and are overridden at ≤1580px below. */
.gallery-sidebar--inline {
  position: static;
  border-top: 1px solid var(--border);
  padding-top: var(--space-3xl);
  margin-top: var(--space-3xl);
}

/* --- Vertical: sidebar shows as full-bleed pill strip at top for 960px–1580px ---
   Extends the same pill treatment that .gallery-sidebar gets at ≤960px,
   applied here with higher-specificity selectors so it overrides the base rule. */
@media (max-width: 1580px) {
  .image-detail--vert > .gallery-sidebar--inline {
    grid-column: 1 / -1;
    order: -1;
    position: static;
    z-index: 90;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    margin-top: 0;
    margin-bottom: var(--space-xl);
    background: var(--bg-primary);
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__heading {
    display: none;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__links {
    display: contents;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__links li {
    display: inline;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__link {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    white-space: nowrap;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__link:hover {
    border-color: var(--text-muted);
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__link.is-active {
    border-color: var(--accent);
    background: var(--accent-dark);
  }
}

/* --- Vertical: true 3-column layout at 1581px+ ---
   img-col (auto/450px) | content (1fr) | sidebar (260px)
   Matches horizontal layout's sidebar-on-right pattern. */
@media (min-width: 1581px) {
  .image-detail--vert {
    grid-template-columns: auto 1fr 260px;
  }
  .image-detail--vert > .gallery-sidebar--inline {
    grid-column: 3;
    grid-row: 1;
    order: 0;
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom: none;
    background: transparent;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__heading {
    display: block;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__nav {
    display: block;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__links {
    display: block;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__links li {
    display: list-item;
  }
  .image-detail--vert > .gallery-sidebar--inline .gallery-sidebar__link {
    display: block;
    padding: 5px 0;
    font-size: 0.8125rem;
    border: none;
    border-radius: 0;
    white-space: normal;
  }
}

/* --- Not found --- */
.image-not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: var(--space-4xl) var(--space-xl);
}

.image-not-found__inner {
  text-align: center;
}

.image-not-found__message {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: var(--space-3xl);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .image-detail {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .image-detail--vert {
    grid-template-columns: 1fr;
  }
  .image-detail__img-col {
    position: static;
  }
  .image-detail__bottom {
    grid-template-columns: 1fr;
  }
  .image-detail__config .print-config,
  .image-detail__config #print-config {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
  }

  /* Portrait image: constrain width so it doesn't become excessively tall,
     but never narrower than 250px (max-height+aspect-ratio can shrink the container
     for very narrow portrait images — min-width on both wrapper and container prevents that) */
  .image-detail--vert .image-detail__img-col {
    max-width: min(70vw, 380px);
    min-width: 250px;
    margin: 0 auto;
  }
  .image-detail--vert #frame-preview-container {
    min-width: 250px;
  }

  /* Thumbs: horizontal strip below the main image on mobile */
  .image-detail__viewer.has-thumbs {
    flex-direction: column-reverse;
  }
  .has-thumbs .image-detail__thumbs {
    flex-direction: row;
    flex: none;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .image-detail__thumb {
    width: 72px;
    height: 54px;
  }
}

@media (max-width: 719px) {
  .image-detail {
    padding: 0 var(--space-lg) var(--space-2xl);
  }
  .image-price-badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
  }
  .image-nav__btn {
    max-width: 165px;
    font-size: 0.625rem;
  }
}


/* =============================================================================
   25. PRINT CONFIGURATOR
   Options panel (#print-config) — frame preview handled by external web component.
   ============================================================================= */

/* Options panel — below image on horizontal, right column on vertical */
.print-config,
#print-config {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}


/* ── Section wrapper ────────────────────────────────── */

.pc-section {
  margin-bottom: var(--space-md);
}

.pc-section__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ── Pill buttons ───────────────────────────────────── */

.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-pills--wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.pc-pill {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 7px 8px;
  cursor: pointer;
  text-align: center;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  line-height: 1.3;
}

.pc-pill:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.pc-pill.is-active {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 400;
}

/* Hidden native selects (synced by JS) */
.pc-hidden-select {
  display: none;
}

/* ── Matte + Frame selects (side by side) ──────────── */

.pc-selects-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: var(--space-xl);
}

.pc-field {
  min-width: 0;
}

/* When JS hides one panel, collapse its grid track */
.pc-field[style*="display: none"],
.pc-field[style*="display:none"] {
  display: none;
}

.pc-field__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.pc-select-shell {
  position: relative;
  /* ::after arrow removed — Choices.js renders its own indicator */
}

.pc-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  padding: 9px 32px 9px 12px;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.pc-select:focus {
  outline: none;
  border-color: var(--text-muted);
}

/* ── Footer: price + add-to-cart ────────────────────── */

.pc-footer {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

.pc-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 120px;
}

.pc-price__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

#image_final_cost {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  min-height: 1.2em;
}

.pc-submit {
  flex-shrink: 0;
  padding: 11px 28px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

/* ── frame-preview web component ────────────────────── */

frame-preview {
  display: block;
  width: 100%; /* overridden for vertical layout by .image-detail--vert frame-preview */
  --fp-background: transparent;
  --fp-loading-color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 719px) {
  .pc-pills--wrap {
    grid-template-columns: 1fr;
  }

  .pc-selects-row {
    grid-template-columns: 1fr;
  }

  .pc-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .pc-price {
    flex-direction: row;
    align-items: baseline;
    gap: var(--space-md);
  }

  .pc-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   15. 404 Page
   ═══════════════════════════════════════════════════════ */

.error-404 {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.error-404__code {
  font-family: var(--font-sans);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin: 0 0 var(--space-md);
}

.error-404__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-lg);
}

.error-404__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 var(--space-2xl);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   16. Blog
   ═══════════════════════════════════════════════════════ */

/* ── Blog listing grid ───────────────────────────────── */

.blog-category-heading {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 var(--space-2xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
}

.blog-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-tertiary);
}

.blog-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-xs);
}

.blog-card__category {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card__category a {
  color: var(--accent);
  text-decoration: none;
}

.blog-card__category a:hover {
  opacity: 0.8;
}

.blog-card__title,
.subpage-content .blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-card__title a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--accent);
}


.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-card__excerpt p {
  margin: 0;
}

.blog-card__more {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  margin-top: var(--space-sm);
  align-self: flex-start;
}

.blog-card__more:hover {
  opacity: 0.8;
}

/* ── Single post ─────────────────────────────────────── */

.post {
  max-width: 800px;
}

.post-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}


/* Post body inherits subpage-content prose styles via .subpage-content .post-content */
.post-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 400;
  margin: var(--space-2xl) 0 var(--space-md);
  line-height: 1.25;
}

.post-content p {
  margin: 0 0 var(--space-lg);
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: var(--space-xl) 0;
}

.post-content a {
  color: var(--accent);
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content ul,
.post-content ol {
  margin: 0 0 var(--space-lg);
  padding-left: var(--space-xl);
}

.post-content li {
  margin-bottom: var(--space-xs);
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  margin: var(--space-xl) 0;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-muted);
  font-style: italic;
}

/* ── Responsive ─────────────────────────────────────── */

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

/* ═══════════════════════════════════════════════════════
   17. Search
   ═══════════════════════════════════════════════════════ */

.search-no-results {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: var(--space-xl) 0;
}

.search-no-results a {
  color: var(--accent);
  text-decoration: none;
}

.search-no-results a:hover {
  text-decoration: underline;
}

.search-form {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  max-width: 560px;
  margin: var(--space-xl) 0;
}

.search-form__input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  outline: none;
}

.search-form__input::placeholder {
  color: var(--text-muted);
}

.search-form__input:focus {
  border-color: var(--accent);
}


/* ═══════════════════════════════════════════════════════
   18. Cart & Checkout
   ═══════════════════════════════════════════════════════ */

body.cart #content.subpage-content {
  max-width: 1180px;
}

/* ── Button variants (sm, lg, outline) ── */
.btn--outline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

/* ── Cart header ── */
.cart-header {
  margin-bottom: var(--space-2xl);
}
.cart-header__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-primary);
}
.cart-header__subtitle {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  margin-top: 4px;
}

/* ── Cart empty ── */
.cart-empty {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.cart-empty__text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
}
.cart-empty a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}

/* ── Cart items — card layout ── */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.cart-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 120px 86px 120px 40px;
  grid-template-areas: "image details price qty subtotal remove";
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border: 1px solid var(--border);
}
.cart-item__image {
  grid-area: image;
  height: 106px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cart-item__details {
  grid-area: details;
}
.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color var(--t-fast);
}
.cart-item__name:hover { color: var(--accent); }
.cart-item__options {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.55;
}
.cart-item__spec {
  line-height: 1.5;
}
.cart-item__options strong {
  color: var(--text-muted);
  font-weight: 500;
}
.cart-item__price-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cart-item__price-value {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.cart-item__price {
  grid-area: price;
}
.cart-item__qty {
  grid-area: qty;
}
.cart-item__qty-input {
  width: 60px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 6px 8px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.cart-item__qty-input:focus { border-color: var(--accent); }
.cart-item__subtotal {
  grid-area: subtotal;
}
.cart-item__remove {
  grid-area: remove;
}
.cart-item__pricing {
  display: contents; /* children participate directly in the parent grid */
}
.cart-item__qty-value {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  display: inline-block;
  padding: 6px 0;
}
/* Read-only receipt variant — drops the remove column */
.cart-item--readonly {
  grid-template-columns: 160px minmax(0, 1fr) 120px 86px 120px;
  grid-template-areas: "image details price qty subtotal";
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}
.cart-remove-btn:hover { color: #e05252; }

/* ── Cart bottom: 2-col layout — coupon | totals+actions ── */
.cart-bottom {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(430px, 1fr);
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-xl);
}
.cart-bottom__summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ── Cart totals ── */
.cart-totals {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-lg);
}
.cart-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.cart-totals__row:last-child { border-bottom: none; }
.cart-totals__row--total {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 14px;
}
.cart-totals__row small {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ── Cart actions ── */
.cart-actions {
  display: flex;
  width: 100%;
  gap: var(--space-md);
}
.cart-actions .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

/* ── Cart coupon ── */
.cart-coupon {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  align-self: start;
}
/* Higher specificity (.cart-coupon h3) beats .subpage-content h3 */
.cart-coupon .cart-coupon__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}
.cart-coupon__form { margin: 0; }
.cart-coupon__inner {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.cart-coupon__input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.7rem 0.875rem;
  outline: none;
  min-width: 0;
}
.cart-coupon__input::placeholder { color: var(--text-muted); }
.cart-coupon__input:focus { border-color: var(--accent); }

/* ── Checkout layout — 2-column ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: start;
}
.checkout-layout__sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

/* ── Checkout progress bar ── */
.checkout-progress {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 var(--space-2xl);
  padding: 0;
}
.checkout-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  position: relative;
}
.checkout-progress__step::after {
  content: '';
  position: absolute;
  /* span from right edge of this circle to left edge of next circle */
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  top: 14px;
  height: 1px;
  background: var(--border);
}
.checkout-progress__step:last-child::after { display: none; }
.checkout-progress__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--t-fast);
}
.checkout-progress__label {
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--t-fast);
  margin-top: 8px;
}
.checkout-progress__step.is-active .checkout-progress__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.checkout-progress__step.is-active .checkout-progress__label { color: var(--text-primary); }
.checkout-progress__step.is-completed .checkout-progress__num {
  background: var(--bg-secondary);
  border-color: var(--accent);
  color: var(--accent);
}
.checkout-progress__step.is-completed .checkout-progress__label { color: var(--text-secondary); }

/* ── Checkout step content ── */
.checkout-step__title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.checkout-form__section-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.checkout-form__actions {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Form fields — floating label ── */
.form-row { margin-bottom: var(--space-md); }
.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-field { position: relative; }
.form-field__input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 1.45rem 1rem 0.5rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-field__input--textarea {
  resize: vertical;
  min-height: 88px;
}
.form-field__input:focus { border-color: var(--accent); }
.form-field__label {
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}
/* Float label when input has content or is focused */
.form-field__input:focus ~ .form-field__label,
.form-field__input:not(:placeholder-shown) ~ .form-field__label {
  top: 0.35rem;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}
.form-field__input:focus ~ .form-field__label { color: var(--accent); }
.form-field__optional {
  color: var(--text-muted);
  font-size: 0.6875rem;
}

/* Select fields */
.form-field--select .form-field__select,
#billing_states select,
#shipping_states select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  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='%23878787' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-field--select .form-field__select:focus,
#billing_states select:focus,
#shipping_states select:focus { border-color: var(--accent); }
.form-field__label--select {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}


.form-field__intl-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: var(--space-sm);
  grid-column: 1 / -1;
}
.form-field__intl-note a {
  color: var(--accent);
  text-decoration: none;
}
.form-field__intl-note a:hover { text-decoration: underline; }

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border);
}
.form-check__input {
  width: 18px;
  height: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.form-check__input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-check__input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}
.form-check__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  user-select: none;
}

/* ── Checkout summary sidebar ── */
.checkout-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.checkout-summary__title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.checkout-summary__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-summary__line:last-child { border-bottom: none; }
.checkout-summary__line--total {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 12px;
}
.checkout-summary__line small {
  font-size: 0.625rem;
  color: var(--text-muted);
}
.checkout-summary__address {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.checkout-summary__address-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 600;
}
.checkout-summary__address p {
  margin: 0;
  line-height: 1.5;
}
/* Reset subpage-content ul/li styles that bleed into summary lists */
.checkout-summary ul,
.checkout-summary li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: inherit;
  line-height: inherit;
}
.checkout-summary__method {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
}
.checkout-summary__method-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.checkout-summary__method-value {
  color: var(--text-secondary);
  text-align: right;
}

/* ── Shipping options ── */
.shipping-options { margin-bottom: var(--space-xl); }
.shipping-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.shipping-option:hover { border-color: var(--accent); }
.shipping-option__radio {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.shipping-option__radio:checked { border-color: var(--accent); }
.shipping-option__radio:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.shipping-option__name {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-primary);
}
.shipping-option__price {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.shipping-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.shipping-quote strong {
  color: var(--text-primary);
  font-size: 1rem;
}
.checkout-no-shipping {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.checkout-no-shipping a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Payment page ── */
.payment-page__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.payment-page__subtitle {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  margin-bottom: var(--space-xl);
}
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-2xl);
  align-items: start;
}
.payment-layout__sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}
.payment-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-xl);
}
.payment-section__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.payment-section p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
}
.payment-form { margin-top: var(--space-lg); }
.payment-success {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.payment-success h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}
.payment-success p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* ── Payment info sidebar ── */
.payment-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.payment-info__title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.payment-info__logo {
  display: block;
  max-width: 100px;
  margin: 0 0 var(--space-md);
}
.payment-info__gateway {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 0 var(--space-md);
  border: 1px solid rgba(252, 202, 40, 0.28);
  background: var(--accent-dark);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.payment-info p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.payment-info p:last-child { margin-bottom: 0; }

/* ── Order complete ── */
.order-complete {
  padding: 0 0 var(--space-xl) 0;
}
.order-complete__hero {
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}
.order-complete__icon {
  color: var(--accent);
  display: block;
  margin: 0 auto var(--space-lg);
}
.order-complete__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.order-complete__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-sans);
  margin-bottom: var(--space-lg);
}
.order-complete__meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-sm) var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: var(--space-sm) var(--space-lg);
}
.order-complete__meta strong {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
}
.order-complete__meta-sep {
  color: var(--text-muted);
}
/* Compact variant — used on /cart/pay so the gold pay panel stays near the top */
.order-complete__hero--compact {
  margin-bottom: var(--space-lg);
}
.order-complete__hero--compact .order-complete__icon {
  margin-bottom: var(--space-md);
}
.order-complete__hero--compact .order-complete__title {
  font-size: 1.875rem;
  margin-bottom: var(--space-sm);
}
.order-complete__hero--compact .order-complete__subtitle {
  margin-bottom: var(--space-md);
}
.order-complete__section-heading {
  margin-bottom: var(--space-lg);
}
/* Receipt variant of cart-bottom: only the summary column, right-aligned */
.cart-bottom--receipt {
  grid-template-columns: minmax(380px, 1fr);
  justify-content: end;
}

/* ── Override subpage-content h2/h3 defaults inside checkout/cart ── */
.subpage-content .checkout-step__title {
  font-size: 1.625rem;
  font-weight: 300;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
}
/* checkout-summary__title keeps its component border-bottom/spacing — only reset the h3 top margin */
.subpage-content .checkout-summary__title {
  margin-top: 0;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.subpage-content .payment-section__title,
.subpage-content .payment-info__title,
.subpage-content .cart-header__title {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
/* Order Review heading on /cart/thankyou — uses .cart-header__title visual,
   but needs space above the items grid */
.subpage-content .order-complete__section-heading {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  border-bottom: none;
  padding-bottom: 0;
  font-size: 1.5rem;
}
/* Section titles within the form need top breathing room */
.subpage-content .checkout-form__section-title {
  border-bottom: none;
  padding-bottom: 0;
}
.subpage-content .cart-header__title {
  font-size: 2.25rem;
  font-weight: 300;
}
.subpage-content .payment-section__title {
  font-size: 1.375rem;
  font-weight: 300;
}
.subpage-content .payment-page__title,
.subpage-content .order-complete__title {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
}

/* ── Utility ── */
.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;
}

/* ── Responsive: cart & checkout ── */
@media (max-width: 960px) {
  .checkout-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }
  .checkout-layout__sidebar {
    position: static;
  }
  .payment-layout__sidebar {
    position: static;
    order: -1;
  }
}

/* 641px–1080px: 2-row layout, all fields visible */
@media (max-width: 1080px) {
  .cart-item {
    grid-template-columns: 132px minmax(0, 1fr) 88px 114px 40px;
    grid-template-areas:
      "image details details details remove"
      "image price qty subtotal remove";
    gap: var(--space-md);
  }
  .cart-item--readonly {
    grid-template-columns: 132px minmax(0, 1fr) 88px 114px;
    grid-template-areas:
      "image details details details"
      "image price qty subtotal";
  }
  .cart-item__image {
    height: 96px;
  }
  .cart-item__price,
  .cart-item__qty,
  .cart-item__subtotal {
    align-self: end;
  }
  .cart-bottom {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
    gap: var(--space-lg);
  }
  .cart-actions {
    gap: var(--space-sm);
  }
  .cart-actions .btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 820px) {
  .cart-bottom {
    grid-template-columns: 1fr;
  }
  .cart-bottom__summary {
    order: -1;
  }
}

/* ≤640px: compact card — image + details + pricing row */
@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 80px minmax(0, 1fr) 36px;
    grid-template-areas:
      "image details remove"
      "image pricing pricing";
    row-gap: var(--space-xs);
    column-gap: var(--space-md);
    padding: var(--space-md);
  }
  .cart-item--readonly {
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-areas:
      "image details"
      "image pricing";
  }
  .cart-item__image {
    height: 86px;
  }
  /* Pricing wrapper becomes a flex row spanning the second grid row */
  .cart-item__pricing {
    grid-area: pricing;
    display: flex;
    gap: var(--space-md);
  }
  .cart-item__price,
  .cart-item__qty,
  .cart-item__subtotal {
    align-self: auto;
  }
  .cart-item__price-label {
    font-size: 0.5625rem;
  }
  .cart-item__price-value {
    font-size: 0.8125rem;
  }
  .cart-item__qty-input {
    width: 48px;
    padding: 4px 6px;
    font-size: 0.8125rem;
  }
  .subpage-content .cart-header__title {
    font-size: 2rem;
  }
  .cart-item__name {
    font-size: 1rem;
  }
  .cart-item__options {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  .cart-bottom {
    grid-template-columns: 1fr;
  }
  .cart-bottom__summary { order: -1; }
  .cart-actions {
    flex-direction: column;
  }
  .cart-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cart-coupon {
    padding: var(--space-md);
  }
  .cart-coupon .cart-coupon__title {
    font-size: 0.6875rem;
  }
  .cart-coupon__input {
    font-size: 0.875rem;
    padding: 0.6rem 0.875rem;
  }
  .form-row--two {
    grid-template-columns: 1fr;
  }
  .checkout-progress__label { display: none; }
}


/* =============================================================================
   26. CHOICES.JS DARK THEME — overrides for matte & frame selects on product pages
   ============================================================================= */

/* Container */
.choices {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* The button/trigger that opens the dropdown */
.choices__inner {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: border-color var(--t-fast);
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 8px;
}

.choices__inner:focus,
.choices.is-open .choices__inner {
  border-color: var(--accent);
  outline: none;
}

/* Selected item text */
.choices__list--single .choices__item {
  color: var(--text-primary);
  padding: 0;
}

/* Arrow: use Choices.js default — just recolour it to match the dark theme */
.choices[data-type*="select-one"]::after {
  border-color: var(--text-secondary) transparent transparent !important;
}

.choices[data-type*="select-one"].is-open::after {
  border-color: transparent transparent var(--accent) !important;
}

/* Dropdown panel */
.choices__list--dropdown,
.choices__list[aria-expanded] {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  z-index: 300;
}

/* Individual dropdown options */
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  color: var(--text-secondary);
  padding: 10px 14px;
  font-size: 0.875rem;
  transition: background-color var(--t-fast), color var(--t-fast);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* Selected option in list */
.choices__list--dropdown .choices__item[aria-selected="true"],
.choices__list[aria-expanded] .choices__item[aria-selected="true"] {
  color: var(--accent);
}

/* Placeholder text */
.choices__placeholder {
  color: var(--text-muted);
  opacity: 1;
}

/* No results / no choices */
.choices__list--dropdown .choices__notice,
.choices__list[aria-expanded] .choices__notice {
  color: var(--text-muted);
  padding: 10px 14px;
  font-size: 0.8125rem;
}

/* Disabled item */
.choices__list--dropdown .choices__item--disabled {
  color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
}


/* =============================================================================
   27. HOMEPAGE COMPOSITION PASS
   ============================================================================= */

.home-main {
  --home-copy: #cfcfcf;
  --home-soft-copy: #a9a9a9;
  --home-rule: rgba(255, 255, 255, 0.08);
  background: var(--bg-primary);
}

.home-main .container {
  max-width: 1320px;
}

.home-main .section-header {
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
}

.home-main .section-header .section-label {
  margin-bottom: var(--space-sm);
}

.home-main .section-label {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-main .section-header h2 {
  font-size: 2.875rem;
  line-height: 1.08;
}

.home-section-intro {
  max-width: 660px;
  margin: var(--space-md) auto 0;
  color: var(--home-soft-copy);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Featured prints */
.home-main .section--featured-prints {
  padding: 5.75rem 0 6.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--bg-primary);
  border-bottom: 1px solid var(--home-rule);
}

.home-main .section--featured-prints .section-header {
  margin-bottom: var(--space-3xl);
}

.home-main .featured-prints-gallery {
  max-width: 1240px;
  margin: 0 auto;
}

.home-main .section--featured-prints ul.thumb_grid {
  gap: 3rem;
}

.home-main .section--featured-prints ul.thumb_grid li .thumb-image-wrap {
  height: 295px;
  padding: 22px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-main .section--featured-prints ul.thumb_grid li img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.home-main .section--featured-prints .view-all-link {
  display: table;
  margin: var(--space-4xl) auto 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.875rem;
  letter-spacing: 0;
}

/* Editorial bands */
.home-main .picture-block {
  min-height: 560px;
  background: #1f1f1f;
  border-top: 1px solid var(--home-rule);
}

.home-main .picture-block:first-child {
  margin-top: 0.5rem;
}

.home-main .picture-block--finish {
  background: #191919;
}

.home-main .picture-block__content {
  padding: 5rem 6rem;
}

.home-main .picture-block__inner {
  max-width: 560px;
  text-align: left;
}

.home-main .picture-block__eyebrow {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.4;
}

.home-main .picture-block__heading {
  font-size: 3.5rem;
  line-height: 1.04;
  margin-bottom: var(--space-lg);
}

.home-main .picture-block__body {
  color: var(--home-copy);
  font-size: 1.125rem;
  line-height: 1.75;
}

.home-main .picture-block__body + .picture-block__body {
  margin-top: var(--space-md);
}

.home-main .picture-block__quote p {
  color: var(--home-copy);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
}

.home-main .picture-block__quote cite {
  display: block;
  margin-top: var(--space-lg);
  color: var(--home-soft-copy);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-style: normal;
}

/* Photographers */
.home-main .section--photographers {
  padding: 6.25rem 0 5.75rem;
  background: var(--bg-primary);
}

.home-main .photographers-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: var(--space-lg);
}

.home-main .photographer-card {
  aspect-ratio: 5 / 3;
}

.home-main .photographer-card__name {
  font-size: 2.35rem;
  line-height: 1.05;
}

/* Collections */
.home-main .section--collections {
  padding: 6.25rem 0 7rem;
  background: #151515;
  border-top: 1px solid var(--home-rule);
}

.home-main .collections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .home-main .section--featured-prints ul.thumb_grid li .thumb-image-wrap {
    height: 250px;
  }

  .home-main .picture-block__content {
    padding: 4.25rem 7%;
  }

  .home-main .picture-block__inner {
    max-width: 680px;
  }

  .home-main .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .home-main .picture-block:first-child {
    margin-top: 0;
  }
}

@media (max-width: 719px) {
  .home-main .container {
    width: 90%;
    padding: 0;
  }

  .home-main .section-header {
    margin-bottom: var(--space-2xl);
  }

  .home-main .section-header h2 {
    font-size: 2rem;
  }

  .home-section-intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-main .section--featured-prints,
  .home-main .section--photographers,
  .home-main .section--collections {
    padding-top: 4.25rem;
    padding-bottom: 4.75rem;
  }

  .home-main .section--featured-prints ul.thumb_grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .home-main .section--featured-prints ul.thumb_grid li .thumb-image-wrap {
    height: auto;
    aspect-ratio: 3 / 1;
    padding: 12px;
  }

  .home-main .picture-block {
    min-height: 0;
  }

  .home-main .picture-block__content {
    padding: 3.75rem 7%;
  }

  .home-main .picture-block__heading {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .home-main .picture-block__body,
  .home-main .picture-block__quote p {
    font-size: 1.0625rem;
  }

  .home-main .photographers-grid {
    gap: var(--space-md);
  }

  .home-main .photographer-card__body {
    padding: var(--space-xl);
  }

  .home-main .photographer-card__name {
    font-size: 2rem;
  }

  .home-main .collections-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .home-main .collection-card {
    aspect-ratio: 3 / 2;
  }

  .home-main .collection-card__name {
    font-size: 1.5rem;
  }

}

