/* =============================================================================
   NASHTERPIECE — styles.css
   Premium handcrafted stained glass by Michael
   Gold & black prestige. Warm, human, slightly medieval. Definitely rockstar.
   ============================================================================= */

/* =============================================================================
   ROOT — Brand colour system & typography scale
   ============================================================================= */
:root {
  /* Core palette */
  --gold-dark:       #7A5C10;
  --gold-mid:        #C49A2A;
  --gold-light:      #D4AF37;
  --gold-bright:     #F0CF60;
  --gold-pale:       #FAE9A0;
  --black:           #0A0A0A;
  --black-soft:      #141414;
  --black-mid:       #1E1E1E;
  --black-panel:     #222018;
  --ivory:           #F5F0E8;
  --ivory-warm:      #EDE8DC;
  --parchment:       #E8E1D0;
  --parchment-dark:  #D0C8B4;
  --text-on-dark:    #F5F0E8;
  --text-on-light:   #1A1810;
  --text-muted:      #7A7060;

  /* Stained-glass jewel accents (use sparingly) */
  --jewel-ruby:      #8B1A1A;
  --jewel-sapphire:  #1A3060;
  --jewel-emerald:   #1A5028;
  --jewel-amber:     #C07810;
  --jewel-amethyst:  #4A1A6A;

  /* Gold gradient (the house gradient) */
  --gradient-gold: linear-gradient(135deg,
    #7A5C10 0%,
    #C49A2A 25%,
    #F0CF60 50%,
    #C49A2A 75%,
    #7A5C10 100%
  );
  --gradient-gold-h: linear-gradient(90deg,
    #7A5C10 0%,
    #C49A2A 30%,
    #F0CF60 50%,
    #C49A2A 70%,
    #7A5C10 100%
  );
  --gradient-dark: linear-gradient(160deg, #0A0A0A 0%, #1E1C14 50%, #0A0A0A 100%);
  --gradient-parchment: linear-gradient(160deg, #F5F0E8 0%, #EDE8DC 50%, #E0D8C4 100%);

  /* Borders */
  --border-gold:    1px solid #C49A2A;
  --border-gold-2:  2px solid #C49A2A;
  --border-black:   2px solid #0A0A0A;
  --border-black-4: 4px solid #0A0A0A;
  --border-light:   1px solid rgba(212, 175, 55, 0.25);

  /* Shadows */
  --shadow-gold:  0 4px 24px rgba(192, 150, 30, 0.20);
  --shadow-gold-lg: 0 8px 48px rgba(192, 150, 30, 0.28);
  --shadow-dark:  0 4px 24px rgba(0,0,0,0.40);
  --shadow-dark-lg: 0 12px 60px rgba(0,0,0,0.55);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.15);

  /* Typography */
  --font-heading: Georgia, 'Times New Roman', 'Palatino Linotype', Palatino, serif;
  --font-body:    'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-label:   'Trebuchet MS', 'Gill Sans MT', 'Gill Sans', Calibri, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-mid:  0.4s ease;
  --transition-slow: 0.7s ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-arch: 50% 50% 0 0 / 30% 30% 0 0;  /* arch top */
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-on-light);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em, i { font-style: italic; }

strong { font-weight: 700; }

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.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;
}

/* Gold horizontal rule */
.gold-rule {
  border: none;
  height: 1px;
  background: var(--gradient-gold-h);
  margin: var(--space-md) 0;
  opacity: 0.5;
}

/* Diamond divider */
.diamond-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: var(--space-md) auto;
}
.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.45;
}
.diamond-divider .diamond {
  width: 10px; height: 10px;
  background: var(--gradient-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-md);
}
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.section-rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.5;
}
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-style: italic;
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto var(--space-md);
  font-size: 1.05rem;
}

/* Badge */
.badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 2px;
  font-weight: 600;
}
.badge-gold {
  background: var(--gradient-gold);
  color: var(--black);
}
.badge-outline {
  border: 1px solid currentColor;
}
.badge-available { color: #2a7a3a; border-color: #2a7a3a; }
.badge-commissioned { color: #7a2a2a; border-color: #7a2a2a; }
.badge-sold { color: var(--text-muted); border-color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  border: 2px solid transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 2px solid var(--gold-light);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

/* =============================================================================
   SCROLL ANIMATIONS
   ============================================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.fade-up-delay { transition-delay: 0.15s; }
.animate-on-scroll.fade-up-delay-2 { transition-delay: 0.3s; }

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
.site-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .crest-mini {
  width: 36px;
  height: 42px;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.8;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold-bright);
}
.nav-links .nav-cta {
  background: var(--gradient-gold);
  color: var(--black) !important;
  opacity: 1 !important;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
}
.nav-links .nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  flex-shrink: 0;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* =============================================================================
   INLINE SVG CREST STYLES
   ============================================================================= */
.crest-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-crest {
  width: 140px;
  height: 164px;
  margin: 0 auto var(--space-md);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
  animation: crestGlow 3s ease-in-out infinite alternate;
}
@keyframes crestGlow {
  from { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3)); }
  to   { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.55)); }
}

/* =============================================================================
   1. HERO SECTION
   ============================================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(122, 92, 16, 0.15) 0%, transparent 70%),
    linear-gradient(160deg, #0A0A0A 0%, #1A160A 40%, #0D0D08 70%, #0A0A0A 100%);
  will-change: transform;
}

/* Hero background image (shows if file exists) */
.hero-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
}

/* Gold corner decorations */
.hero-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 1px at 15% 20%, rgba(212, 175, 55, 0.6) 0%, transparent 1px),
    radial-gradient(circle 1px at 85% 25%, rgba(212, 175, 55, 0.6) 0%, transparent 1px),
    radial-gradient(circle 1px at 12% 75%, rgba(212, 175, 55, 0.4) 0%, transparent 1px),
    radial-gradient(circle 1px at 88% 78%, rgba(212, 175, 55, 0.4) 0%, transparent 1px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.hero-headline {
  color: var(--ivory);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-headline em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subhead {
  color: rgba(245, 240, 232, 0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto var(--space-md);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Stained-glass arch decoration above crest */
.hero-arch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 170px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: none;
  border-radius: 170px 170px 0 0;
  pointer-events: none;
  z-index: 1;
}
.hero-arch::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  bottom: 0;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: none;
  border-radius: 160px 160px 0 0;
}

/* Bottom section transition */
.hero-bottom-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold-h);
  opacity: 0.6;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.35);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollHintPulse 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.4), transparent);
  display: block;
}
@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7;  transform: translateX(-50%) translateY(4px); }
}

/* =============================================================================
   SECTION WRAPPERS — alternating dark / light
   ============================================================================= */
.section-dark {
  background: var(--gradient-dark);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-dark .section-subtitle { color: rgba(245,240,232,0.65); }
.section-dark h2 { color: var(--ivory); }
.section-dark h3 { color: var(--ivory); }

.section-light {
  background: var(--gradient-parchment);
  color: var(--text-on-light);
  padding: var(--space-xl) 0;
  border-top: var(--border-black);
  border-bottom: var(--border-black);
}
.section-light .section-eyebrow { color: var(--gold-dark); }

.section-black {
  background: var(--black);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0;
}

/* =============================================================================
   2. FEATURED PIECES
   ============================================================================= */
#featured {
  background: var(--ivory);
  border-top: var(--border-black-4);
  padding: var(--space-xl) 0;
}
#featured .section-eyebrow { color: var(--gold-dark); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-md);
}

.featured-card {
  background: var(--black);
  border: var(--border-black);
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold-lg);
}

.featured-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.featured-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-card-image img { transform: scale(1.05); }
.featured-card-image .img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Individual fallback gradients for featured pieces */
.fallback-gothic {
  background: linear-gradient(160deg, #0C0820 0%, #1A1040 30%, #2A0A50 55%, #120828 80%, #0C0820 100%);
}
.fallback-botanical {
  background: linear-gradient(160deg, #081808 0%, #123820 30%, #1E5C18 55%, #7C5C08 80%, #0E1808 100%);
}
.fallback-suncatcher {
  background: linear-gradient(160deg, #401008 0%, #882808 30%, #C05010 55%, #D4820A 80%, #401008 100%);
}
.fallback-panel {
  background: linear-gradient(160deg, #0A1030 0%, #182858 35%, #401020 55%, #183020 75%, #0A1030 100%);
}
.fallback-custom {
  background: linear-gradient(160deg, #201008 0%, #503018 30%, #382010 55%, #201830 80%, #201008 100%);
}
.fallback-gifts {
  background: linear-gradient(160deg, #200808 0%, #501818 30%, #181830 55%, #203018 80%, #200808 100%);
}
.fallback-default {
  background: linear-gradient(160deg, #1A1408 0%, #3A2C10 40%, #1E1A0A 70%, #1A1408 100%);
}

/* Stained-glass light effect on image hover */
.featured-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(212,175,55,0.0) 0%,
    rgba(212,175,55,0.08) 50%,
    rgba(212,175,55,0.0) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-mid);
}
.featured-card:hover .featured-card-image::after { opacity: 1; }

.featured-card-body {
  padding: 1.5rem;
  border-top: 2px solid var(--gold-light);
}
.featured-card-category {
  margin-bottom: 0.5rem;
}
.featured-card-title {
  color: var(--ivory);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.featured-card-meta {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.featured-card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =============================================================================
   3. GALLERY
   ============================================================================= */
#gallery {
  background: var(--black-soft);
  padding: var(--space-xl) 0;
  border-top: 4px solid var(--black);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.gallery-filter-btn {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: rgba(245,240,232,0.7);
  background: transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.gallery-filter-btn:hover {
  border-color: var(--gold-light);
  color: var(--ivory);
}
.gallery-filter-btn.active {
  background: var(--gradient-gold);
  color: var(--black);
  border-color: transparent;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.1);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.4);
}

.gallery-item-image {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.gallery-item-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item-image img { transform: scale(1.07); }
.gallery-item-image .img-fallback {
  position: absolute; inset: 0;
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, transparent 100%);
  padding: 1.25rem;
  transform: translateY(8px);
  transition: transform var(--transition-mid);
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }

.gallery-item-title {
  color: var(--ivory);
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}
.gallery-item-meta {
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =============================================================================
   4. ABOUT MICHAEL
   ============================================================================= */
#about {
  background: var(--ivory);
  border-top: var(--border-black-4);
  border-bottom: var(--border-black-4);
  padding: var(--space-xl) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--fallback-custom);
  border: var(--border-black);
  /* Arch top shape */
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  max-width: 380px;
  margin: 0 auto;
}
.about-image-frame .img-fallback {
  position: absolute; inset: 0;
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Gold border accent */
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  border: 1px solid rgba(212,175,55,0.3);
  border-bottom: none;
  pointer-events: none;
}
/* Signature-style gold accent strip */
.about-image-accent {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold-h);
}

.about-text { color: var(--text-on-light); }
.about-text .section-eyebrow { color: var(--gold-dark); }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; color: #2A2820; font-size: 1.05rem; }
.about-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1.5rem;
  display: block;
}

/* =============================================================================
   5. PHILOSOPHY SECTION
   ============================================================================= */
#philosophy {
  background: var(--black);
  padding: var(--space-2xl) 0;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: relative;
  overflow: hidden;
}
/* Geometric background ornament */
#philosophy::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(212,175,55,0.06);
  border-radius: 50%;
  pointer-events: none;
}
#philosophy::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 400px; height: 400px;
  border: 1px solid rgba(212,175,55,0.06);
  pointer-events: none;
}

.philosophy-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.philosophy-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-light);
  opacity: 0.25;
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}
.philosophy-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.philosophy-quote .quote-highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}
.philosophy-attribution {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
}

/* =============================================================================
   6. PROCESS SECTION
   ============================================================================= */
#process {
  background: var(--parchment);
  border-top: var(--border-black-4);
  padding: var(--space-xl) 0;
}
#process .section-eyebrow { color: var(--gold-dark); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.process-step {
  background: var(--black);
  border: var(--border-black);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.process-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.7;
}
.process-step h4 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-label);
}
.process-step p {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold-h);
  opacity: 0.5;
}

/* =============================================================================
   7. CUSTOM COMMISSIONS
   ============================================================================= */
#commissions {
  background: var(--black-panel);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.commissions-intro {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.commissions-intro p {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
}

.commissions-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: var(--space-lg);
  position: relative;
}
/* Connecting line */
.commissions-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 1rem);
  right: calc(33.33% - 1rem);
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.35;
}

.commission-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.commission-step:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
}
.commission-step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.commission-step h4 {
  color: var(--ivory);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}
.commission-step p {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.commissions-cta {
  text-align: center;
}
.commissions-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  font-style: italic;
  font-family: var(--font-label);
}

/* =============================================================================
   8. SHOP / PRODUCT CARDS
   ============================================================================= */
#shop {
  background: var(--ivory-warm);
  border-top: var(--border-black-4);
  padding: var(--space-xl) 0;
}
#shop .section-eyebrow { color: var(--gold-dark); }

.shop-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-md);
}
.shop-intro p { color: #2A2820; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--black);
  border: 2px solid var(--black);
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.3);
}

.product-card-image {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-image .img-fallback { position: absolute; inset: 0; }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212,175,55,0.3);
}
.product-card-category {
  margin-bottom: 0.4rem;
}
.product-card-title {
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.product-card-meta {
  font-family: var(--font-label);
  font-size: 0.73rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.product-card-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================================
   9. TESTIMONIALS
   ============================================================================= */
#testimonials {
  background: var(--black);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition-mid);
}
.testimonial-card:hover { border-color: rgba(212,175,55,0.4); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem; left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  pointer-events: none;
}

.testimonial-text {
  color: rgba(245,240,232,0.8);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonial-name {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.testimonial-location {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}
.testimonial-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* =============================================================================
   10. CARE & SAFETY
   ============================================================================= */
#care {
  background: var(--parchment);
  border-top: var(--border-black-4);
  padding: var(--space-xl) 0;
}
#care .section-eyebrow { color: var(--gold-dark); }

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.care-card {
  background: var(--black);
  padding: 1.75rem;
  border-left: 3px solid var(--gold-light);
  transition: box-shadow var(--transition-fast);
}
.care-card:hover { box-shadow: var(--shadow-gold); }
.care-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.care-card h4 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.care-card p, .care-card li {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}
.care-card ul { list-style: none; padding: 0; }
.care-card ul li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.25rem;
}
.care-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  opacity: 0.6;
}

/* =============================================================================
   11. SHIPPING & PACKAGING
   ============================================================================= */
#shipping {
  background: var(--ivory);
  border-top: 2px solid var(--black);
  padding: var(--space-xl) 0;
}
#shipping .section-eyebrow { color: var(--gold-dark); }

.shipping-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.shipping-text h3 { margin-bottom: 1rem; }
.shipping-text p { margin-bottom: 1rem; color: #2A2820; }
.shipping-detail-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.shipping-detail-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--parchment-dark);
  font-size: 0.95rem;
  color: #2A2820;
}
.shipping-detail-list li:last-child { border-bottom: none; }
.shipping-detail-list strong {
  min-width: 140px;
  color: var(--text-on-light);
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shipping-note-box {
  background: var(--black);
  padding: 2rem;
  border: none;
  border-left: 4px solid var(--gold-light);
  color: var(--text-on-dark);
}
.shipping-note-box h4 { color: var(--ivory); margin-bottom: 0.75rem; }
.shipping-note-box p {
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================================================
   12. FAQ
   ============================================================================= */
#faq {
  background: var(--black-soft);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.faq-list {
  max-width: 780px;
  margin: var(--space-md) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.faq-item:first-child { border-top: 1px solid rgba(212,175,55,0.15); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 3rem 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--ivory);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
  display: block;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold-bright); }

/* Plus/minus indicator */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  line-height: 1;
  font-family: var(--font-label);
}
.faq-item.is-open .faq-question::after {
  content: '−';
}
.faq-item.is-open .faq-question { color: var(--gold-bright); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: rgba(245,240,232,0.68);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-answer-inner p { margin-bottom: 0.5rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* =============================================================================
   13. CONTACT
   ============================================================================= */
#contact {
  background: var(--ivory-warm);
  border-top: var(--border-black-4);
  padding: var(--space-xl) 0;
}
#contact .section-eyebrow { color: var(--gold-dark); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--black);
  border: 1px solid rgba(212,175,55,0.2);
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  color: var(--ivory);
}
.contact-channel:hover {
  border-color: var(--gold-light);
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-label);
}
.contact-channel-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
  opacity: 0.75;
}
.contact-channel-value {
  font-size: 0.95rem;
  color: var(--ivory);
}

.contact-inquiry {
  background: var(--black);
  padding: 2rem;
  border: 1px solid rgba(212,175,55,0.2);
}
.contact-inquiry h3 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.contact-inquiry p {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.inquiry-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.inquiry-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}
.inquiry-checklist li:last-child { border-bottom: none; }
.inquiry-checklist .check-box {
  width: 16px; height: 16px;
  border: 1px solid rgba(212,175,55,0.4);
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 2px;
}

.contact-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* =============================================================================
   14. FOOTER
   ============================================================================= */
.site-footer {
  background: var(--black);
  border-top: 4px solid var(--black);
  padding: var(--space-lg) 0 var(--space-md);
  color: var(--text-on-dark);
}

.footer-top-rule {
  height: 2px;
  background: var(--gradient-gold-h);
  opacity: 0.5;
  margin-bottom: var(--space-lg);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-brand-area .footer-crest {
  width: 56px; height: 66px;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(245,240,232,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  font-family: var(--font-label);
}
.footer-closing {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.75;
}

/* =============================================================================
   PRINT STYLES — Custom Order Inquiry Checklist
   ============================================================================= */
.printable-checklist {
  display: none; /* hidden on screen, shown when user clicks Print button */
}

@media print {
  body { font-family: Georgia, serif; color: #000 !important; background: #fff !important; }
  .site-header, .hero-section, #featured, #gallery, #about, #philosophy,
  #process, #commissions, #shop, #testimonials, #care, #shipping, #faq,
  .contact-channels, .contact-inquiry-actions, .site-footer, .no-print { display: none !important; }

  #contact { border: none; padding: 0; background: #fff; }
  #contact .section-eyebrow, #contact h2 { display: none; }
  #contact .contact-layout { display: block; }
  #contact .contact-inquiry { background: #fff; border: none; padding: 0; }

  .printable-checklist {
    display: block !important;
    page-break-inside: avoid;
  }
  .print-title {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .print-subtitle {
    font-size: 12px;
    color: #555;
    margin-bottom: 24px;
  }
  .print-field {
    margin-bottom: 16px;
  }
  .print-field label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
  }
  .print-field .print-line {
    display: block;
    border-bottom: 1px solid #999;
    height: 24px;
    width: 100%;
    margin-bottom: 2px;
  }
  .print-field .print-line-sm {
    display: block;
    border-bottom: 1px solid #ccc;
    height: 18px;
    width: 100%;
  }
  .print-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .print-footer {
    margin-top: 32px;
    font-size: 10px;
    color: #666;
    border-top: 1px solid #ccc;
    padding-top: 8px;
    text-align: center;
  }
}

/* =============================================================================
   RESPONSIVE — Tablet (1024px)
   ============================================================================= */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================================
   RESPONSIVE — Mobile (768px)
   ============================================================================= */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--space-md) var(--space-md);
    gap: 0.25rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    border-bottom: 2px solid rgba(212,175,55,0.3);
    z-index: 999;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    font-size: 0.9rem;
  }
  .nav-links .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    border-bottom: none;
  }

  /* Sections */
  .featured-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .about-layout { grid-template-columns: 1fr; }
  .about-image-frame { max-width: 300px; margin: 0 auto 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .commissions-steps { grid-template-columns: 1fr; }
  .commissions-steps::before { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .shipping-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-filter-bar { gap: 0.35rem; }
  .gallery-filter-btn { padding: 0.45rem 0.9rem; font-size: 0.7rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }

  .philosophy-mark { font-size: 4rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* =============================================================================
   MULTI-PAGE ADDITIONS
   Logo image, page headers, artists section, inner page styles
   ============================================================================= */

/* Real logo image */
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: filter var(--transition-fast);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}
.hero-logo-img {
  height: 180px;
  width: auto;
  margin: 0 auto var(--space-md);
  display: block;
  filter: drop-shadow(0 0 24px rgba(180, 150, 20, 0.45));
  animation: crestGlow 3s ease-in-out infinite alternate;
}
.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Inner page header banner */
.page-header {
  background: var(--gradient-dark);
  padding: calc(var(--nav-height) + 4rem) 0 3.5rem;
  text-align: center;
  border-bottom: 4px solid var(--black);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(122,92,16,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold-h);
  opacity: 0.55;
}
.page-header .section-eyebrow {
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}
.page-header h1 {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.page-header .page-subtitle {
  color: rgba(245,240,232,0.55);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Home page artists section */
.artists-section {
  background: var(--black-soft);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.artist-photo-frame {
  width: 220px;
  height: 260px;
  position: relative;
  overflow: hidden;
  border: var(--border-gold-2);
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
}
.artist-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.artist-photo-frame .img-fallback {
  position: absolute; inset: 0;
}
.artist-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 40px rgba(10,10,10,0.4);
  pointer-events: none;
}
.artist-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.artist-role {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
  margin-bottom: 1rem;
}
.artist-bio {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* About page — full artist layout */
.artist-full-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-xl);
}
.artist-full-layout.reverse {
  grid-template-columns: 1fr 380px;
}
.artist-full-layout.reverse .artist-full-image { order: 2; }
.artist-full-layout.reverse .artist-full-text { order: 1; }

.artist-full-image {
  position: relative;
}
.artist-full-photo {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  border-radius: 50% 50% 0 0 / 15% 15% 0 0;
}
.artist-full-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.artist-full-photo .img-fallback {
  position: absolute; inset: 0;
}
.artist-full-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 60px rgba(10,10,10,0.3);
  pointer-events: none;
}
.artist-full-photo-accent {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold-h);
}

.artist-full-text .section-eyebrow { color: var(--gold-dark); }
.artist-full-text h2 { margin-bottom: 1rem; }
.artist-full-text p { color: #2A2820; font-size: 1.05rem; margin-bottom: 1rem; }
.artist-full-text.on-dark p { color: rgba(245,240,232,0.7); }
.artist-full-text.on-dark h2 { color: var(--ivory); }
.artist-full-text.on-dark .section-eyebrow { color: var(--gold-light); }

.artist-divider {
  border: none;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.3;
  margin: var(--space-lg) 0;
}

/* Home CTA strip */
.home-cta-strip {
  background: var(--gradient-gold);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
.home-cta-strip h2 {
  color: var(--black);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.home-cta-strip p {
  color: rgba(10,10,10,0.65);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.home-cta-strip .btn-primary {
  background: var(--black);
  color: var(--ivory);
  box-shadow: none;
}
.home-cta-strip .btn-primary:hover {
  background: var(--black-mid);
  filter: none;
}
.home-cta-strip .btn-secondary {
  color: var(--black);
  border-color: var(--black);
}
.home-cta-strip .btn-secondary:hover {
  background: rgba(0,0,0,0.1);
}

/* Responsive additions */
@media (max-width: 1024px) {
  .artist-full-layout,
  .artist-full-layout.reverse {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 768px) {
  .artists-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .artist-photo-frame { width: 180px; height: 212px; }
  .artist-full-layout,
  .artist-full-layout.reverse {
    grid-template-columns: 1fr;
  }
  .artist-full-layout.reverse .artist-full-image { order: 1; }
  .artist-full-layout.reverse .artist-full-text { order: 2; }
  .artist-full-photo { max-width: 320px; margin: 0 auto; }
  .hero-logo-img { height: 130px; }
}

/* =============================================================================
   POLISH PASS — Conversion UX improvements
   Typography hierarchy, spacing rhythm, button clarity, trust patterns,
   microcopy, visual weight, one-action-per-page focus.
   ============================================================================= */

/* ---- Body — warmer dark, more breathable line-height ---- */
body {
  line-height: 1.85;
  color: #1C1914;
}

/* ---- Headlines — tighter tracking improves perceived quality ---- */
h1 { letter-spacing: -0.025em; }
h2 { letter-spacing: -0.018em; }
h3 { letter-spacing: -0.01em; }

/* ---- Buttons — sentence case, generous padding, clear hierarchy ---- */
/* Sentence/title case is easier to read than ALLCAPS on primary CTAs */
.btn {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.18s ease;
  line-height: 1.3;
}
.btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.btn-secondary {
  padding: 0.9375rem 2.25rem;
}
.btn-outline-dark {
  padding: 0.9375rem 2.25rem;
}
.btn-ghost {
  font-size: 0.8125rem;
  padding: 0.625rem 1.35rem;
  letter-spacing: 0.015em;
}

/* Nav CTA pill stays uppercase — it is a label not a headline */
.nav-links .nav-cta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.5rem 1.1rem;
}

/* ---- Focus ring — accessible + premium ---- */
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- Trust row — small trust signals placed near CTAs ---- */
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
  max-width: 560px;
}
.cta-trust li {
  font-size: 0.775rem;
  color: rgba(245, 240, 232, 0.48);
  font-family: var(--font-label);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cta-trust li::before {
  content: '✓';
  color: var(--gold-light);
  font-size: 0.65rem;
  flex-shrink: 0;
  opacity: 0.8;
}
/* Trust row on light/parchment backgrounds */
.cta-trust.on-light li { color: rgba(28, 24, 16, 0.45); }
.cta-trust.on-light li::before { color: var(--gold-dark); }
/* Trust row on gold (CTA strip) backgrounds */
.cta-trust.on-gold li { color: rgba(10, 8, 0, 0.45); }
.cta-trust.on-gold li::before { color: var(--black); }

/* ---- Microcopy — quiet reassurance under forms/CTAs ---- */
.microcopy {
  display: block;
  font-size: 0.775rem;
  color: rgba(245, 240, 232, 0.42);
  font-family: var(--font-label);
  letter-spacing: 0.01em;
  margin-top: 0.65rem;
  font-style: italic;
  line-height: 1.5;
}
.microcopy.on-light { color: rgba(28, 24, 16, 0.4); }
.microcopy.on-gold  { color: rgba(10, 8, 0, 0.4); }

/* ---- Hero — breathing room, single dominant action ---- */
.hero-content { max-width: 700px; }
.hero-subhead {
  font-size: clamp(0.975rem, 1.75vw, 1.1rem);
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: var(--space-md);
}
.hero-ctas {
  gap: 0.875rem;
  margin-bottom: 0;
}

/* ---- Section headers — less visual clutter ---- */
.section-header { margin-bottom: 2.75rem; }
.section-rule { opacity: 0.28; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  opacity: 0.7;
}
/* Remove ornamental oversized quotation mark — it competes with the quote */
.philosophy-mark { display: none; }

/* ---- Philosophy — let the words carry the weight ---- */
.philosophy-quote {
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  line-height: 1.78;
  max-width: 740px;
  margin: 0 auto var(--space-md);
}
.philosophy-inner { padding: 0 var(--space-md); }

/* ---- Diamond dividers — quieter ---- */
.diamond-divider::before,
.diamond-divider::after { opacity: 0.2; }
.diamond-divider .diamond { width: 8px; height: 8px; opacity: 0.45; }

/* ---- Cards — consistent border-radius, subtler hover ---- */
.featured-card,
.product-card,
.testimonial-card,
.process-step,
.commission-step,
.care-card,
.contact-channel,
.contact-inquiry,
.gallery-item { border-radius: 3px; }

.featured-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 0 0 1px rgba(212,175,55,0.18); }
.product-card:hover  { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(212,175,55,0.2); }

/* ---- Process steps — breathing room, quieter numbers ---- */
.process-step { padding: 2rem 1.75rem; }
.process-step-number { font-size: 2.25rem; opacity: 0.55; }

/* ---- Artist bio text — more comfortable ---- */
.artist-bio { font-size: 0.96rem; line-height: 1.82; }

/* ---- Nav — quieter, less competing with content ---- */
.nav-brand-name { font-size: 1.1rem; }
.nav-links a { font-size: 0.775rem; opacity: 0.68; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }

/* ---- Footer — lighter weight ---- */
.footer-brand-name { font-size: 1.25rem; }
.footer-col h5 { opacity: 0.55; font-size: 0.68rem; }
.footer-col ul a { font-size: 0.855rem; }

/* ---- CTA strip — more emphasis on headline ---- */
.home-cta-strip h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.home-cta-strip p { margin-bottom: 1.75rem; }

/* ---- Contact channel hover — directional not bouncy ---- */
.contact-channel:hover { transform: translateX(5px); border-color: rgba(212,175,55,0.5); }

/* ---- Gallery filter — lower default opacity, cleaner active state ---- */
.gallery-filter-btn { opacity: 0.65; }
.gallery-filter-btn:hover { opacity: 0.9; }
.gallery-filter-btn.active { opacity: 1; font-weight: 700; }

/* ---- FAQ question — cleaner typography ---- */
.faq-question {
  font-size: 0.9875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  padding: 1.25rem 2.75rem 1.25rem 0;
}

/* ---- Images must paint above the absolute fallback gradient ---- */
/* The .img-fallback div is position:absolute; loaded img is normal flow.
   In CSS stacking order, positioned elements paint AFTER in-flow elements,
   so the fallback covers the image. Fix: give the img position:relative + z-index:1 */
.artist-full-photo img,
.featured-card-image img,
.gallery-item-image img,
.product-card-image img,
.about-image-frame img,
.artist-photo-frame img {
  position: relative;
  z-index: 1;
}
/* Also fix the about-image-frame border-radius to not clip Michael's horizontal photo */
.artist-full-photo img {
  object-position: center 20%;
}

/* ---- Responsive polish ---- */
@media (max-width: 768px) {
  body { line-height: 1.78; }
  .btn-primary { padding: 0.9375rem 2rem; font-size: 0.9375rem; }
  .btn-secondary { padding: 0.9375rem 1.75rem; }
  .hero-content { max-width: 100%; }
  .hero-subhead { font-size: 0.975rem; }
  .cta-trust { gap: 0.3rem 0.9rem; }
  .cta-trust li { font-size: 0.72rem; }
  .section-header { margin-bottom: 2rem; }
  .process-step { padding: 1.5rem 1.25rem; }
}

/* =============================================================================
   COMMISSION FORM — clean, trustworthy, conversion-focused
   ============================================================================= */
.commission-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 0.45rem;
}
.form-label .required-star {
  color: var(--gold-dark);
  margin-left: 2px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-on-light);
  background: #fff;
  border: 2px solid var(--parchment-dark);
  border-radius: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.12);
}
.form-input::placeholder { color: #999; }
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input { cursor: pointer; background-image: none; }
.form-hint {
  display: block;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-style: italic;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-action {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  font-family: var(--font-label);
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error .form-input { border-color: #c0392b; }
.form-group.has-error .form-error { display: block; }

/* Commission result state */
.commission-result {
  background: var(--parchment);
  border: 2px solid var(--gold-light);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2rem;
}
.commission-result h3 {
  color: var(--text-on-light);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.commission-result p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.commission-result a { color: var(--gold-dark); text-decoration: underline; }
.commission-compiled {
  width: 100%;
  min-height: 220px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 1rem;
  border: 1px solid var(--parchment-dark);
  background: #fff;
  border-radius: 4px;
  margin: 1rem 0;
  resize: vertical;
  color: var(--text-on-light);
  white-space: pre-wrap;
}
.commission-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Image gallery enhancements */
.gallery-item-image {
  position: relative;
  overflow: hidden;
}
.gallery-item-image img {
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item-image img {
  transform: scale(1.07);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =============================================================================
   PHONE & MOBILE OPTIMISATION — max-width: 767px
   Every rule here is scoped to phones only.
   Desktop (768px+) is completely untouched.
   Targets: iPhone SE through iPhone Pro Max, all Android phones.
   ============================================================================= */
@media (max-width: 767px) {

  /* ---- Spacing scale override ---- */
  :root {
    --space-xl:  3rem;
    --space-lg:  1.75rem;
    --space-2xl: 4.5rem;
    --nav-height: 64px;
  }

  /* Prevent horizontal overflow on any element */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* ---- Typography ---- */
  h1 { font-size: clamp(1.85rem, 9.5vw, 2.5rem); line-height: 1.15; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.4rem, 7vw, 1.9rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; }
  body { font-size: 1rem; line-height: 1.78; }
  p    { margin-bottom: 0.875rem; }
  blockquote { font-size: 1.05rem; }

  /* ---- Section padding ---- */
  .section-dark,
  .section-light,
  .section-black { padding: 2.75rem 0; }

  .container       { padding: 0 1.25rem; }
  .container-narrow{ padding: 0 1.25rem; }

  /* ---- Navigation ---- */
  .nav-container { padding: 0 1rem; }
  .nav-logo-img  { height: 38px; }
  .nav-brand-name{ font-size: 0.95rem; }

  /* Nav toggle — always visible on phones */
  .nav-toggle { display: flex; }

  /* Full-screen mobile nav panel */
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1.75rem;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.01em;
    opacity: 0.88;
    min-height: 48px; /* thumb target */
    display: flex;
    align-items: center;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    border-radius: 4px;
    min-height: 48px;
  }

  /* ---- Hero ---- */
  .hero-section {
    padding: calc(var(--nav-height) + 2rem) 1.25rem 3.5rem;
    min-height: auto;
  }
  .hero-logo-img { height: 100px; margin-bottom: 1.25rem; }
  .hero-eyebrow  { font-size: 0.65rem; letter-spacing: 0.18em; }
  .hero-headline { font-size: clamp(1.85rem, 9.5vw, 2.5rem); margin-bottom: 0.875rem; }
  .hero-subhead  { font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-arch      { display: none; } /* decorative only */
  .hero-scroll-hint { display: none; }

  /* Trust row — always centred */
  .cta-trust {
    gap: 0.3rem 0.9rem;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-trust li { font-size: 0.7rem; }

  /* Microcopy — always centred on mobile */
  .microcopy { text-align: center; display: block; width: 100%; }

  /* Standalone CTAs in section footers — centre on mobile */
  .section-dark  > .container > div[style*="text-align: center"],
  .section-light > .container > div[style*="text-align: center"],
  .section-black > .container > div[style*="text-align: center"],
  #featured .container > div[style*="text-align"],
  #follow   .container > div[style*="text-align"],
  .artists-section .container > div[style*="text-align"],
  #process  .container > div[style*="text-align"],
  #commissions .container > div[style*="text-align"],
  #shop     .container > div[style*="text-align"],
  #pricing  .container-narrow > div[style*="text-align"],
  .commissions-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .commissions-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .commissions-note { text-align: center; display: block; }

  /* ---- Page header ---- */
  .page-header {
    padding: calc(var(--nav-height) + 2rem) 1.25rem 2.25rem;
  }
  .page-header h1  { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .page-subtitle   { font-size: 0.95rem; }

  /* ---- Philosophy ---- */
  .philosophy-inner { padding: 0 1.25rem; }
  .philosophy-quote { font-size: clamp(1.05rem, 4.5vw, 1.3rem); line-height: 1.72; }
  .philosophy-attribution { font-size: 0.75rem; letter-spacing: 0.12em; }

  /* ---- Section headers ---- */
  .section-header { margin-bottom: 2rem; }
  .section-subtitle { font-size: 0.92rem; }

  /* ---- Buttons — 48px min touch target ---- */
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  .btn-primary  { padding: 0.9375rem 1.75rem; font-size: 0.95rem; }
  .btn-secondary{ padding: 0.9375rem 1.5rem; }
  .btn-ghost    { min-height: 40px; padding: 0.6rem 1.1rem; font-size: 0.78rem; }

  /* ---- Featured pieces ---- */
  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  /* ---- Gallery ---- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* Horizontally scrollable filter bar — no wrapping, no overflow on body */
  .gallery-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
    padding-bottom: 0.625rem;
    justify-content: flex-start;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filter-bar::-webkit-scrollbar { display: none; }
  .gallery-filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0.5rem 1.1rem;
    font-size: 0.72rem;
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .gallery-item-title { font-size: 0.88rem; }
  .gallery-item-meta  { font-size: 0.65rem; }

  /* ---- Artists grid (home page) ---- */
  .artists-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .artist-photo-frame { width: 170px; height: 200px; margin-bottom: 1.25rem; }

  /* ---- About page — artist full layout ---- */
  .artist-full-layout,
  .artist-full-layout.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .artist-full-layout .artist-full-image   { order: 1; }
  .artist-full-layout .artist-full-text    { order: 2; }
  .artist-full-layout.reverse .artist-full-image { order: 1; }
  .artist-full-layout.reverse .artist-full-text  { order: 2; }
  .artist-full-photo { max-width: 290px; margin: 0 auto; aspect-ratio: 3/4; }
  .artist-full-text p { font-size: 0.975rem; }
  .about-signature    { font-size: 1.25rem; }

  /* ---- Process section ---- */
  .process-grid { grid-template-columns: 1fr !important; gap: 0.875rem; }
  .process-step { padding: 1.4rem 1.25rem; }
  .process-step-number { font-size: 2rem; }

  /* Process image pair on about.html — override inline style */
  #process .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  #process .container > div[style*="grid-template-columns: 1fr 1fr"] img {
    height: 200px !important;
  }

  /* ---- Commissions steps ---- */
  .commissions-steps { grid-template-columns: 1fr; gap: 1rem; }
  .commissions-steps::before { display: none; }
  .commission-step { padding: 1.4rem 1.25rem; text-align: center; }
  .commission-step-icon { margin-bottom: 1rem; }
  .commissions-cta { text-align: center; }
  .commissions-note { display: block; margin-top: 0.75rem; }

  /* ---- Product grid ---- */
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  /* ---- Testimonials ---- */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }

  /* ---- Social proof stats (inline grid on index.html) ---- */
  #follow div[style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ---- Care grid ---- */
  .care-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .care-card  { padding: 1.4rem 1.25rem; }

  /* ---- Shipping ---- */
  .shipping-layout { grid-template-columns: 1fr; }

  /* ---- Contact ---- */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-channel { padding: 1rem 1.25rem; }
  .contact-channel:hover { transform: none; } /* no hover-slide on touch */

  /* ---- FAQ ---- */
  .faq-question {
    font-size: 0.92rem;
    padding: 1rem 2.5rem 1rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .faq-answer-inner { font-size: 0.9rem; }

  /* ---- Commission form ---- */
  .form-label { font-size: 0.74rem; }
  .form-input {
    font-size: 1rem; /* prevents iOS Safari auto-zoom on focus */
    padding: 0.8125rem 0.875rem;
  }
  textarea.form-input { min-height: 110px; }
  .form-row  { grid-template-columns: 1fr !important; gap: 0; }
  .form-action {
    align-items: center;
    width: 100%;
  }
  .form-action .btn-primary {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }
  .commission-form-wrap { padding: 0; }
  .commission-result  { padding: 1.5rem 1.25rem; }
  .commission-compiled{ font-size: 0.78rem; min-height: 160px; }
  .commission-actions { flex-direction: column; gap: 0.625rem; }
  .commission-actions .btn { width: 100%; justify-content: center; }

  /* ---- Pricing table (shop page inline grids) ---- */
  #pricing div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ---- What Michael Makes (commissions page inline grid) ---- */
  #commissions div[style*="grid-template-columns: 1fr 1fr"],
  .container-narrow div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
  }

  /* ---- CTA strip ---- */
  .home-cta-strip { padding: 2.5rem 1.25rem; }
  .home-cta-strip h2 { font-size: 1.35rem; }
  .home-cta-strip div[style*="display:flex"],
  .home-cta-strip div[style*="display: flex"] {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  /* ---- Legal pages ---- */
  .section-light h2[style] { font-size: 1.1rem !important; }

  /* ---- Footer ---- */
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-logo-img { height: 52px; }
  .footer-brand-name { font-size: 1.1rem; }
  .footer-tagline { font-size: 0.85rem; max-width: 100%; }
  .footer-col h5 { font-size: 0.65rem; }
  .footer-col ul a { font-size: 0.82rem; padding: 0.2rem 0; display: block; }

  /* ---- Diamond dividers — thinner on mobile ---- */
  .diamond-divider::before,
  .diamond-divider::after { opacity: 0.15; }

  /* ---- Microcopy ---- */
  .microcopy { font-size: 0.72rem; }
}

/* ---- Extra-small phones (375px and below, e.g. iPhone SE) ---- */
@media (max-width: 375px) {
  .gallery-grid  { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero-logo-img { height: 85px; }
  .hero-headline { font-size: 1.75rem; }
  .hero-subhead  { font-size: 0.9rem; }
  .featured-grid,
  .product-grid  { max-width: 100%; }
  .nav-brand-name{ display: none; } /* logo alone at very small size */
}

/* ---- Tablet landscape & small tablets (768–1023px) ---- */
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-grid    { grid-template-columns: repeat(2, 1fr); }
  .product-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-layout    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .artists-grid     { grid-template-columns: 1fr 1fr; }
  .hero-logo-img    { height: 140px; }
  .artist-full-layout { grid-template-columns: 280px 1fr; gap: 3rem; }
  .artist-full-layout.reverse { grid-template-columns: 1fr 280px; }
  .process-grid     { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Touch device — remove hover-only effects that feel broken on tap ---- */
@media (hover: none) and (pointer: coarse) {
  .featured-card:hover  { transform: none; box-shadow: none; }
  .product-card:hover   { transform: none; box-shadow: none; }
  .gallery-item:hover   { transform: none; box-shadow: var(--shadow-gold); }
  .contact-channel:hover{ transform: none; }
  .process-step:hover   { transform: none; box-shadow: none; }
  .testimonial-card:hover{ border-color: rgba(212,175,55,0.18); }
  .hero-crest           { animation: none; filter: none; }
}
