/* JTYLER GLOBAL CSS LOADED */

/* ========================================
   JTYLERART.COM GLOBAL CSS - UNIFIED THEME
   Responsive, Accessible, Production Ready
   ======================================== */

/* ========================================
   1. CSS VARIABLES & THEME
   ======================================== */
:root {
  /* COLOR PALETTE - GOLD STANDARDIZED ACROSS ENTIRE SITE */
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #171717;
  --mid: #262626;
  --border: #2d2d2d;
  --muted: #8b8b8b;
  --light: #c8c8c8;
  --white: #f4f1ec;
  --accent-gold: #e6a028;        /* PRIMARY ACCENT - GOLD (standardized everywhere) */
  --accent-gold-dark: #c96322;   /* HOVER STATE - BURNT ORANGE */
  
  /* SPACING SYSTEM */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* LAYOUT */
  --container: 1360px;
  --container-sm: 100%;
  --radius: 4px;
  
  /* TYPOGRAPHY */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   2. RESET & FOUNDATION
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  font-weight: 700;
}

h1, h2, h3 {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* WordPress Specific Overrides */
.entry-content,
.wp-site-blocks,
main {
  padding: 0 !important;
  margin: 0 !important;
}

/* ========================================
   3. CONTAINER & LAYOUT
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

section {
  padding: 5rem 0;
}

/* ========================================
   4. ACCESSIBILITY & UTILITIES
   ======================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: var(--spacing-sm);
  top: var(--spacing-sm);
  width: auto;
  height: auto;
  padding: 0.75rem var(--spacing-sm);
  background: var(--accent-gold);
  color: var(--black);
  z-index: 2000;
  border-radius: var(--radius);
  font-weight: 600;
}

.no-scroll {
  overflow: hidden;
}

/* ========================================
   5. HEADER & NAVIGATION (UNIFIED)
   ======================================== */
header.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

header.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  padding: 1.1rem 0;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-logo span {
  color: var(--accent-gold);
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--accent-gold-dark) !important;
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-lines span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: var(--transition);
}

.menu-toggle.active .menu-toggle-lines span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.menu-toggle.active .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle-lines span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

.mobile-menu-panel {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.mobile-menu nav ul {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-menu nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  padding: var(--spacing-sm);
  letter-spacing: 0.02em;
}

.mobile-menu nav a.mobile-contact {
  background: var(--accent-gold);
  color: var(--black) !important;
  border-radius: var(--radius);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   6. HERO SECTIONS
   ======================================== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.5) 100%),
              linear-gradient(120deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.1) 45%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 100%;
  text-align: center;
  padding: 4rem var(--spacing-md) var(--spacing-lg);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.95rem;
  border: 1px solid rgba(230, 160, 40, 0.7);
  border-radius: 2px;
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 6.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--accent-gold);
  font-style: normal;
}

.hero-sub {
  max-width: 780px;
  margin: 0 auto var(--spacing-lg);
  color: var(--light);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 10rem var(--spacing-md) 4rem;
  background: linear-gradient(to bottom, var(--off-black), var(--black));
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
}

.page-hero p {
  color: var(--light);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 800px;
}

/* ========================================
   7. BUTTONS (STANDARDIZED GOLD ACCENT)
   ======================================== */
.btn, a.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  border: none;
  white-space: nowrap;
  min-height: 48px;
}

/* Primary Button - GOLD ACCENT (standardized) */
.btn-primary, a.btn-primary {
  background: var(--accent-gold) !important;
  color: var(--black) !important;
  border: none !important;
}

.btn-primary:hover, a.btn-primary:hover {
  background: var(--accent-gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Secondary Button - Outlined */
.btn-secondary, a.btn-secondary {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid var(--border) !important;
}

.btn-secondary:hover, a.btn-secondary:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  background: rgba(230, 160, 40, 0.05) !important;
  transform: translateY(-2px);
}

/* Button Group */
.btn-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.btn-group.centered {
  justify-content: center;
}

.btn-group.stacked {
  flex-direction: column;
  width: 100%;
}

.btn-group.stacked .btn {
  width: 100%;
}

.jtyler-stripe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 1rem 2rem;
  background: var(--accent-gold) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.jtyler-stripe-btn:hover {
  background: var(--accent-gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   8. TYPOGRAPHY & SECTIONS
   ======================================== */
.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-body {
  max-width: 650px;
  color: var(--light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-band-content p,
.faq-answer p,
.contact-info-wrap p,
.contact-form-wrap p,
.page-hero + section .container p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-band-content h2,
.faq-section-title,
.contact-info-wrap h2,
.contact-form-wrap h2,
.page-hero + section .container h2 {
  margin-bottom: 1.6rem;
}

.page-hero + section .container h3 {
  margin-top: 2.35rem;
  margin-bottom: 1.1rem;
}

main > .page-hero + section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.faq-section + .faq-section {
  margin-top: 3rem;
}

.faq-item {
  background: var(--off-black);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: #151515;
}

.faq-question h3 {
  font-size: 1rem;
  margin: 0;
  flex: 1;
  color: var(--white);
  line-height: 1.35;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--light);
  line-height: 1.8;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section-title {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-wrap,
.contact-form-wrap {
  max-width: 100%;
  padding-top: 0.25rem;
}

.conditional-field input[type="checkbox"],
.conditional-field input[type="radio"] {
  accent-color: var(--accent-gold);
}

.conditional-field input[type="checkbox"]:checked + span,
.conditional-field input[type="radio"]:checked + span {
  color: var(--accent-gold);
}

.jta-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jta-form-status {
  margin-top: 1rem;
  color: var(--light);
}

.jta-form-status.is-success {
  color: var(--accent-gold);
}

.jta-form-status.is-error {
  color: #f2a0a0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

blockquote {
  margin: 1.8rem 0;
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ========================================
   9. GRID & LAYOUT COMPONENTS
   ======================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-1 {
  grid-template-columns: 1fr;
}

/* Intro Grid */
.intro-grid {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}

.intro-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.intro-card {
  background: var(--black);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition);
}

.intro-card:nth-child(3n) {
  border-right: none;
}

.intro-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.intro-card:hover {
  background: #111;
}

.intro-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.intro-card p {
  color: var(--light);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.intro-card a {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.intro-card a:hover {
  color: var(--white);
}

/* Selected Works */
.selected-works {
  background: var(--black);
  padding-top: 2.5rem;
}

.selected-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.selected-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.selected-frame {
  background: var(--off-black);
  border: 1px solid rgba(244, 241, 236, 0.08);
  padding: 1.35rem;
  transition: transform var(--transition), border-color var(--transition);
}

.selected-frame:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.selected-frame-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.selected-frame-inner img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

.selected-info h3 {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
}

.selected-info p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.selected-btns {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.selected-btns .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

.selected-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* About Band */
.about-band {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-band-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--off-black);
}

.about-band-image {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.08), rgba(10,10,10,0.42));
  pointer-events: none;
}

.about-band-flex {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-band-img-col {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: var(--mid);
  border: 1px solid var(--border);
  max-width: 320px;
  aspect-ratio: 4/5;
}

.about-band-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media (max-width: 900px) {
  .about-band-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  .about-band-img-col {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 2rem 0 0 0;
    justify-content: flex-start;
  }
  .about-band-img {
    max-width: 90vw;
    aspect-ratio: 4/5;
  }
  .about-band-content {
    padding: 2rem 1.25rem 2.5rem 1.25rem;
  }
}

/* CTA Band */
.cta-band {
  background: var(--black);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
  background: #111;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.cta-band-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-band-inner p {
  color: var(--light);
  max-width: 720px;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 1.75rem 1.4rem;
  transition: border-color var(--transition);
}

.process-step:hover {
  border-color: var(--accent-gold);
}

.process-step .num {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ========================================
   10. GALLERY SPECIFIC
   ======================================== */
.gallery-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.gallery-intro-copy p {
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.gallery-note {
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.gallery-note h2 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.gallery-note p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.gallery-list {
  display: grid;
  gap: 4rem;
  background: transparent;
}

.gallery-piece {
  background: transparent;
  border: 1px solid rgba(244, 241, 236, 0.06);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2rem 0;
}

.gallery-body {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  gap: 3rem;
}

.gallery-image {
  background: rgba(255, 255, 255, 0.025);
  border: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset;
  position: relative;
}

.gallery-image img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

.gallery-content {
  background: transparent;
  border-top: 0;
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.gallery-status {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
  border: 1px solid rgba(244, 241, 236, 0.12);
  line-height: 1;
}

.gallery-status.is-available {
  color: var(--accent-gold);
  background: rgba(201, 169, 97, 0.08);
  border-color: rgba(201, 169, 97, 0.24);
}

.gallery-status.is-sold {
  color: #d8b3aa;
  background: rgba(139, 0, 0, 0.16);
  border-color: rgba(139, 0, 0, 0.32);
}

.gallery-heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 2.25rem 1.25rem;
  text-align: center;
}

.gallery-heading h3 {
  width: 100%;
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 0;
}

.gallery-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
  margin: 0.25rem 0;
}

.gallery-details div {
  border-top: 1px solid rgba(244, 241, 236, 0.08);
  padding-top: 0.75rem;
}

.gallery-details dt {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-details dd {
  color: var(--light);
  font-size: 0.9rem;
  margin: 0.18rem 0 0;
}

.gallery-detail-price dd {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-piece.is-sold .gallery-image {
  position: relative;
}

.gallery-piece.is-sold .gallery-image img {
  position: relative;
  z-index: 1;
}

.gallery-sold-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  color: #fff7df;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.75rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  opacity: 0.96;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  padding: 0.14em 0.28em 0.18em;
  border: 0.06em solid rgba(255, 247, 223, 0.86);
  border-radius: 0.08em;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.18), rgba(230,160,40,0.72), rgba(255,255,255,0.14)),
    rgba(8, 8, 8, 0.5);
  box-shadow:
    0 0 0.16em rgba(255, 247, 223, 0.9),
    0 0 0.28em rgba(230, 160, 40, 0.82),
    0 0.08em 0.34em rgba(0,0,0,0.75);
  text-shadow:
    0 0 0.12em rgba(255,255,255,0.95),
    0 0.22em 0.36em rgba(0,0,0,0.82);
}

.gallery-content p {
  color: var(--light);
  line-height: 1.8;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.gallery-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.gallery-actions .btn {
  min-height: 40px;
  padding: 0.65rem 0.95rem;
}

.gallery-cta {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 2rem;
}

.gallery-cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.gallery-cta-inner p {
  color: var(--light);
  max-width: 720px;
}

/* ========================================
   11. SHOP SPECIFIC
   ======================================== */
.shop-sections-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.shop-section-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.shop-section-btn:hover,
.shop-section-btn.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: var(--black);
}

.shop-section {
  scroll-margin-top: 100px;
  margin-bottom: 4rem;
}

.shop-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--off-black);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

#originals .product-card {
  background: transparent;
  overflow: visible;
  gap: 1rem;
}

.product-image {
  aspect-ratio: 3 / 4;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

#originals .product-image {
  aspect-ratio: auto;
  min-height: 260px;
  max-height: 420px;
  padding: 1.25rem;
  overflow: visible;
}

#originals .product-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 390px;
  padding: 0;
}

#originals .product-info {
  padding: 1.25rem 0 0;
  gap: 0.65rem;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.75rem 0;
}

.product-status {
  font-size: 0.8rem;
  color: #4a7c59;
  margin-bottom: 1rem;
}

.product-status.sold {
  color: #8b0000;
}

.product-cta {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.purchase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.purchase-strip-item {
  background: var(--off-black);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.purchase-strip-item h2,
.purchase-strip-item h3 {
  font-size: 1.15rem;
}

.purchase-strip-item p {
  color: var(--light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.bundle-card,
.limited-card,
.commission-cta {
  background: var(--off-black);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.bundle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  padding: 2rem;
}

.included-designs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.included-design {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 0.75rem;
}

.included-design img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--dark);
}

.included-design span {
  display: block;
  margin-top: 0.6rem;
  color: var(--light);
  font-size: 0.78rem;
  line-height: 1.4;
}

.bundle-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black);
  border: 1px solid var(--border);
}

.bundle-table th,
.bundle-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--light);
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}

.bundle-table tr,
.individual-size-table tr {
  border-bottom: 1px solid var(--border);
}

.bundle-table th {
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bundle-table tr:last-child td {
  border-bottom: none;
}

.bundle-table .price-cell {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.bundle-table .edition-cell {
  color: var(--muted);
  font-size: 0.84rem;
}

.limited-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}

.limited-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 1rem;
}

.commission-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}

.commission-cta img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--dark);
}

.individual-print-grid {
  display: grid;
  gap: 1.4rem;
}

.individual-print-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.6rem;
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 1.35rem;
  align-items: center;
}

.individual-print-card:hover {
  border-color: var(--accent-gold);
}

.individual-print-image {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 0.75rem;
}

.individual-print-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.individual-print-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.individual-print-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.individual-print-content p {
  color: var(--light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.individual-print-options {
  margin-top: 1.1rem;
}

.individual-print-options summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent-gold);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.individual-print-options summary:hover {
  border-color: var(--accent-gold);
  background: rgba(230, 160, 40, 0.06);
}

.individual-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--black);
  border: 1px solid var(--border);
}

.individual-size-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--light);
  vertical-align: middle;
  line-height: 1.6;
}

.product-grid > *,
.individual-print-grid > * {
  margin-bottom: 2rem;
}

.individual-size-table tr:last-child td {
  border-bottom: none;
}

.individual-size-table td:first-child {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.individual-size-table td:nth-child(2) {
  color: var(--accent-gold);
  font-weight: 700;
  white-space: nowrap;
}

.individual-size-table .jtyler-stripe-btn {
  min-height: 40px;
  padding: 0.8rem 1.15rem;
  font-size: 0.72rem;
}

/* ========================================
   12. FOOTER (UNIFIED)
   ======================================== */
footer {
  background: var(--off-black);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

footer .jta-cookie-settings,
.footer-col .jta-cookie-settings {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--muted);
  cursor: pointer;
  display: inline;
  font: inherit;
  font-size: 0.88rem;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-transform: none;
  letter-spacing: 0;
}

footer .jta-cookie-settings:hover,
footer .jta-cookie-settings:focus-visible,
.footer-col .jta-cookie-settings:hover,
.footer-col .jta-cookie-settings:focus-visible {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--accent-gold);
  outline: none;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(230, 160, 40, 0.1);
}

/* ========================================
   13. UTILITIES & HELPERS
   ======================================== */
.flex {
  display: flex;
  gap: 1rem;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.text-accent {
  color: var(--accent-gold);
}

.text-muted {
  color: var(--muted);
}

.text-light {
  color: var(--light);
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  font-size: 1.2rem;
  font-weight: 700;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-3px);
}

/* ========================================
   14. ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.75s ease forwards;
}

/* ========================================
   15. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  section {
    padding: 4.5rem 0;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.7rem;
  }

  .intro-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-card:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .intro-card:nth-child(2n+1):nth-last-child(n+3) {
    border-bottom: 1px solid var(--border);
  }

  .selected-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-band-wrap {
    grid-template-columns: 1fr;
  }

  .about-band-image::after {
    background: none;
  }

  .about-band-content {
    padding: 3rem 2rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-intro-grid,
  .gallery-body,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .purchase-strip {
    grid-template-columns: 1fr;
  }

  .bundle-card,
  .limited-card,
  .commission-cta {
    grid-template-columns: 1fr;
  }

  .included-designs {
    grid-template-columns: repeat(2, 1fr);
  }

  .individual-print-grid {
    grid-template-columns: 1fr;
  }

  .individual-print-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ========================================
   16. SCROLL PROGRESS INDICATOR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-gold);
  z-index: 2000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--accent-gold), 0 0 20px rgba(230, 160, 40, 0.5);
}

.scroll-progress.hidden {
  opacity: 0;
}

/* ========================================
   17. GALLERY LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 40px rgba(230, 160, 40, 0.2);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 85svh;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }

  .page-hero {
    padding: 6rem 1rem 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .intro-grid-inner {
    grid-template-columns: 1fr;
  }

  .intro-card {
    padding: 2rem 1.5rem;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .intro-card:last-child {
    border-bottom: none !important;
  }

  .selected-grid {
    grid-template-columns: 1fr;
  }

  .selected-frame-inner {
    width: 100%;
  }

  .selected-frame-inner img {
    max-height: 260px;
  }

  .about-band-content {
    padding: 2.5rem 1.5rem;
  }

  .about-band-image {
    min-height: 300px;
    order: -1;
  }

  .about-band-content h2 {
    font-size: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 1.5rem;
  }

  .cta-band-inner {
    padding: 2rem;
  }

  .cta-band-inner h2 {
    font-size: 1.5rem;
  }

  .gallery-intro-grid {
    grid-template-columns: 1fr;
  }

  .gallery-list {
    gap: 2.25rem;
  }

  .gallery-image {
    padding: 1.1rem;
  }

  .gallery-image img {
    max-height: 300px;
  }

  .gallery-content {
    padding: 1.5rem;
  }

  .gallery-heading {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
  }

  .gallery-details {
    grid-template-columns: 1fr;
  }

  .gallery-actions {
    flex-direction: column;
  }

  .gallery-actions .btn {
    width: 100%;
  }

  main > .page-hero + section {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .gallery-cta-inner {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .shop-sections-nav {
    justify-content: center;
  }

  .shop-section-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .bundle-table,
  .bundle-table tbody,
  .bundle-table tr,
  .bundle-table td {
    display: block;
    width: 100%;
  }

  .bundle-table thead {
    display: none;
  }

  .bundle-table tr {
    border-bottom: 1px solid var(--border);
    padding: 1.15rem;
  }

  .bundle-table tr:last-child {
    border-bottom: none;
  }

  .bundle-table td {
    border-bottom: none;
    padding: 0.85rem 0.5rem;
  }

  .bundle-table td:last-child {
    padding-top: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .gallery-image img {
    max-height: 280px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }

  .page-hero {
    padding: 4rem 0.75rem 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .nav-wrap {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.8rem 1rem;
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .intro-card {
    padding: 1.5rem 1rem;
  }

  .selected-item {
    gap: 1rem;
  }

  #originals .product-image {
    min-height: 220px;
    max-height: 340px;
    padding: 1rem;
  }

  #originals .product-image img {
    max-height: 310px;
  }

  .product-card {
    border: 1px solid var(--border);
  }

  .bundle-card,
  .limited-card,
  .commission-cta,
  .purchase-strip-item {
    padding: 1.25rem;
  }

  .included-designs {
    grid-template-columns: 1fr;
  }

  .individual-print-card {
    padding: 1.25rem;
  }

  .individual-size-table,
  .individual-size-table tbody,
  .individual-size-table tr,
  .individual-size-table td {
    display: block;
    width: 100%;
  }

  .individual-size-table tr {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .individual-size-table tr:last-child {
    border-bottom: none;
  }

  .individual-size-table td {
    border-bottom: none;
    padding: 0.85rem 0.5rem;
  }

  .individual-size-table td:last-child {
    padding-top: 0.65rem;
  }

  .jtyler-stripe-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.75rem;
  }

  .faq-item {
    padding: 1rem 0;
  }

  .cta-band-inner {
    padding: 1.25rem;
  }

  .cta-band-inner h2 {
    font-size: 1.2rem;
  }

  .process-step {
    padding: 1.2rem;
  }

  .process-step .num {
    font-size: 1.8rem;
  }

  .mobile-menu nav a {
    font-size: 1.4rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

/* ========================================
   16. ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  :root {
    --light: #ffffff;
    --border: #404040;
  }
}

