/* ============================================================
   CS MEDIA — Design System
   Dark | Cormorant Garamond + Karla | Photography-first
   Inspired by tobiasyoder.com, rayhennessy.com, Mirro template
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --bg-lift:     #111111;
  --bg-card:     #161616;
  --text:        #e8e0d4;
  --text-dim:    rgba(232, 224, 212, 0.55);
  --text-dimmer: rgba(232, 224, 212, 0.28);
  --border:      rgba(232, 224, 212, 0.1);
  --border-mid:  rgba(232, 224, 212, 0.2);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Karla', system-ui, sans-serif;

  --nav-h:  68px;
  --max-w:  1280px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:    650ms;
  --dur-fast: 200ms;
  --dur-mid:  350ms;

  /* Glow tokens */
  --glow-warm:    rgba(232, 224, 212, 0.12);
  --glow-heading: 0 0 40px rgba(232, 224, 212, 0.08), 0 0 80px rgba(232, 224, 212, 0.04);
  --glow-btn:     0 0 20px rgba(232, 224, 212, 0.1), 0 0 40px rgba(232, 224, 212, 0.05);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background var(--dur-mid) var(--ease),
              backdrop-filter var(--dur-mid) var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: opacity var(--dur-fast) var(--ease);
}
.nav__logo:hover { opacity: 0.7; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width var(--dur-mid) var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active::after {
  opacity: 0.55;
  box-shadow: 0 1px 8px rgba(232, 224, 212, 0.2);
}

.nav__instagram {
  display: flex;
  align-items: center;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease);
}
.nav__instagram:hover { color: var(--text); }
.nav__instagram svg { width: 18px; height: 18px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--dur-mid) var(--ease),
              opacity var(--dur-mid) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile.open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  z-index: -1;
}
.nav__mobile .nav__link {
  font-size: 1rem;
  color: var(--text-dim);
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
  transition: background var(--dur-mid) var(--ease-out),
              color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: var(--glow-btn);
}
.btn:active {
  transform: scale(0.97);
}

/* ── Sections ────────────────────────────────────────────── */
.page-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 6rem)) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-shadow: var(--glow-heading);
}
.page-header__sub {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
  max-width: 540px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.footer__copy {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-dimmer);
  text-transform: uppercase;
}
.footer__instagram {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-dimmer);
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease);
}
.footer__instagram:hover { color: var(--text); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at center, rgba(232, 224, 212, 0.02) 0%, transparent 70%);
}
.cta-section__inner { max-width: 520px; margin: 0 auto; }
.cta-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 0 50px rgba(232, 224, 212, 0.1), 0 0 100px rgba(232, 224, 212, 0.05);
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — index.html
   ══════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 30%,
    rgba(10,10,10,0.6)  70%,
    rgba(10,10,10,0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.55);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
  text-shadow: var(--glow-heading);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.5);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero__categories {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.35);
  margin-top: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}

.hero__cta {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.1s forwards;
}
.hero__btn {
  font-family: var(--font-body);
  background: rgba(232, 224, 212, 0.1);
  border-color: rgba(232, 224, 212, 0.4);
  color: rgba(232, 224, 212, 0.9);
}
.hero__btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 0 30px rgba(232, 224, 212, 0.15);
}
.hero__btn--secondary {
  background: transparent;
  border-color: rgba(232, 224, 212, 0.2);
  color: rgba(232, 224, 212, 0.55);
}
.hero__btn--secondary:hover {
  background: rgba(232, 224, 212, 0.06);
  border-color: rgba(232, 224, 212, 0.4);
  color: rgba(232, 224, 212, 0.9);
  box-shadow: none;
}

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

/* Selected Work */
.selected-work {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.selected-work__header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.selected-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.work-item {
  overflow: hidden;
  display: block;
  position: relative;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.work-item:hover img { transform: scale(1.04); }

.work-item--tall { aspect-ratio: 2/3; }
.work-item--wide { aspect-ratio: 4/3; }
.work-item--square { aspect-ratio: 1; }

/* Specific grid layout for 6 images in 2 rows of 3 */
.work-item:nth-child(1),
.work-item:nth-child(2),
.work-item:nth-child(3) { aspect-ratio: 4/3; }
.work-item:nth-child(4),
.work-item:nth-child(5),
.work-item:nth-child(6) { aspect-ratio: 3/4; }

/* ══════════════════════════════════════════════════════════
   PORTFOLIO — portfolio.html (Category Landing)
   ══════════════════════════════════════════════════════════ */

/* Category Blocks */
.cat-blocks {
  display: flex;
  flex-direction: column;
}
.cat-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  overflow: hidden;
}
.cat-block__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cat-block:hover .cat-block__img {
  transform: scale(1.04);
}
.cat-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
  transition: background var(--dur-mid) var(--ease-out);
}
.cat-block:hover .cat-block__overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.4) 100%);
}
.cat-block__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 0 30px rgba(232, 224, 212, 0.15), 0 0 60px rgba(232, 224, 212, 0.06);
  transition: text-shadow var(--dur-mid) var(--ease-out);
}
.cat-block:hover .cat-block__title {
  text-shadow: 0 0 40px rgba(232, 224, 212, 0.25), 0 0 80px rgba(232, 224, 212, 0.1);
}

/* Back Link */
.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  transition: color var(--dur-fast) var(--ease);
}
.back-link:hover { color: var(--text); }

/* Coming Soon Note */
.coming-soon-note {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

/* Masonry Grid */
.masonry-wrap {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.masonry {
  columns: 3;
  column-gap: 14px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  position: relative;
  background: var(--bg-card);
}

/* Single-image gallery layout */
.masonry--single {
  columns: 1;
  max-width: 540px;
}
.masonry--single .masonry-item {
  margin: 0 auto;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out),
              filter 0.8s var(--ease-out);
}
.masonry-item {
  transition: box-shadow 0.5s var(--ease-out);
}
.masonry-item:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(232, 224, 212, 0.03);
}
.masonry-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.masonry-item[data-filter="hidden"] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 5, 5, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__close {
  position: absolute;
  top: calc(var(--nav-h) / 2 - 12px);
  right: clamp(1.5rem, 5vw, 4rem);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease);
}
.lightbox__close:hover { color: var(--text); }
.lightbox__close svg { width: 20px; height: 20px; }

/* Lightbox Arrows */
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dimmer);
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.lightbox__arrow:hover {
  color: var(--text);
  border-color: var(--border-mid);
  background: rgba(10, 10, 10, 0.7);
}
.lightbox__arrow svg { width: 20px; height: 20px; }
.lightbox__arrow--prev { left: clamp(0.75rem, 2vw, 2rem); }
.lightbox__arrow--next { right: clamp(0.75rem, 2vw, 2rem); }
.lightbox__arrow.hidden { opacity: 0; pointer-events: none; }
.lightbox__img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding-bottom: 1.5rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox__img.loaded {
  opacity: 1;
}
.lightbox__caption {
  text-align: center;
  width: 100%;
  max-width: 580px;
  flex-shrink: 0;
  padding: 0 1rem;
}
.lightbox__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 20px rgba(232, 224, 212, 0.1);
}
.lightbox__desc {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  line-height: 1.7;
}
.btn-print {
  margin-top: 1.25rem;
  font-size: 0.65rem;
  padding: 0.55rem 1.5rem;
  border-color: rgba(232, 224, 212, 0.3);
  color: rgba(232, 224, 212, 0.7);
}
.btn-print:hover {
  border-color: rgba(232, 224, 212, 0.5);
  color: rgba(232, 224, 212, 0.9);
  background: transparent;
  box-shadow: 0 0 15px rgba(232, 224, 212, 0.06);
}
.btn-print.active {
  border-color: rgba(232, 224, 212, 0.5);
  color: rgba(232, 224, 212, 0.9);
}

/* ══════════════════════════════════════════════════════════
   ABOUT — about.html
   ══════════════════════════════════════════════════════════ */

.about-layout--flipped {
  padding-top: clamp(6rem, 10vw, 10rem);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--border);
}

.about-layout {
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(5rem, 8vw, 8rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
}
.about-photo-col {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-text-col {
  padding-top: clamp(3rem, 5vw, 5rem);
}
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  text-shadow: var(--glow-heading);
  margin-top: 1rem;
}
.about-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 1rem;
  margin-bottom: 1.75rem;
}
.about-signature {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 2.5rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   SERVICES — services.html
   ══════════════════════════════════════════════════════════ */

/* Page header list */
.page-header__list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-header__list li {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.page-header__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dimmer);
}

.services-layout {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(5rem, 8vw, 8rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Service Cards Grid ─────────────────────────────────── */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.svc-card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  background: var(--bg-lift);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
}
.svc-card:hover {
  border-color: rgba(232, 224, 212, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(232, 224, 212, 0.02);
  transform: translateY(-3px);
}

.svc-card__icon {
  width: 32px;
  height: 32px;
  color: var(--text-dimmer);
  margin-bottom: 1.5rem;
}
.svc-card__icon svg { width: 100%; height: 100%; }

.svc-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.svc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover .svc-card__thumb img {
  transform: scale(1.04);
}

.svc-card__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 0.4rem;
}

.svc-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.svc-card__duration {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
  margin-bottom: 1.25rem;
}

.svc-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.svc-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.svc-card__features li {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.svc-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 224, 212, 0.25);
}

.svc-card__btn {
  align-self: flex-start;
  font-size: 0.65rem;
  padding: 0.7rem 2rem;
}

/* ── Featured Combo Card ────────────────────────────────── */
.svc-featured {
  position: relative;
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid rgba(232, 224, 212, 0.18);
  background: linear-gradient(135deg, rgba(232, 224, 212, 0.03) 0%, transparent 60%);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  transition: border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}
.svc-featured:hover {
  border-color: rgba(232, 224, 212, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(232, 224, 212, 0.03);
}

.svc-featured__badge {
  position: absolute;
  top: -1px;
  right: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

.svc-featured__content {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.svc-featured__icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dimmer);
  flex-shrink: 0;
}
.svc-featured__icon svg { width: 28px; height: 28px; }
.svc-featured__plus {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-dimmer);
}

.svc-featured__price-col {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.svc-featured__savings {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  font-style: italic;
}

.svc-featured__features {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 1.5rem;
}

.svc-featured .svc-card__btn {
  align-self: flex-start;
}

/* ── Prints Card ─────────────────────────────────────────── */
.svc-prints {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  background: var(--bg-lift);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
}
.svc-prints:hover {
  border-color: rgba(232, 224, 212, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(232, 224, 212, 0.02);
  transform: translateY(-3px);
}
.svc-prints__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.svc-prints__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-prints__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-prints:hover .svc-prints__thumb img {
  transform: scale(1.04);
}

.svc-prints .svc-card__btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── How It Works ───────────────────────────────────────── */
.how-it-works {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.how-it-works__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
.how-it-works__step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.how-it-works__step-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: rgba(232, 224, 212, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.how-it-works__step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.how-it-works__step-body {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── Policies Bar ───────────────────────────────────────── */
.svc-policies {
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}
.svc-policies__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.svc-policies__item {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.svc-policies__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(232, 224, 212, 0.2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CONTACT — contact.html
   ══════════════════════════════════════════════════════════ */

.contact-layout {
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(5rem, 8vw, 8rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}
.contact-info {
  padding-top: clamp(1.5rem, 3vw, 3rem);
}
.contact-info__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: var(--glow-heading);
}
.contact-info__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}
.contact-info__detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.contact-info__item {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.contact-info__link {
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease);
}
.contact-info__link:hover { color: var(--text); }

.contact-info__response {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dimmer);
  letter-spacing: 0.04em;
}

.contact-form-col {
  padding-top: clamp(1.5rem, 3vw, 3rem);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.form-label .required {
  color: #c06060;
  margin-left: 2px;
}
.form-required-note {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 224, 212, 0.2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.75rem 0;
  width: 100%;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dimmer); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--text-dim); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(232,224,212,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
  color: var(--text-dim);
}
.form-select option { background: #1a1a1a; color: var(--text); }
.form-textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.7;
}
.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form-submit .btn {
  background: rgba(232, 224, 212, 0.1);
  border-color: rgba(232, 224, 212, 0.4);
  color: rgba(232, 224, 212, 0.9);
}
.form-submit .btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 0 30px rgba(232, 224, 212, 0.15);
}

.contact-success {
  display: none;
  padding: 3rem 0;
  text-align: left;
}
.contact-success__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.contact-success__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.contact-success__sub a {
  color: var(--text);
  border-bottom: 1px solid var(--border-mid);
  transition: border-color var(--dur-fast) var(--ease);
}
.contact-success__sub a:hover {
  border-color: var(--text);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-col { position: static; }
  .about-photo { aspect-ratio: 4/3; }
  .contact-layout { grid-template-columns: 1fr; }
  .how-it-works__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-featured__content { flex-direction: column; align-items: flex-start; }
  .svc-featured__price-col { margin-left: 0; text-align: left; }
}

/* Inline about photo — hidden on desktop, shown on mobile */
.about-photo-inline {
  display: none;
}

@media (max-width: 768px) {
  .about-layout {
    display: block;
  }
  .about-layout--flipped {
    padding-top: clamp(4rem, 8vw, 6rem);
    margin-top: clamp(3rem, 6vw, 5rem);
  }
  /* Hide the sidebar photo on mobile */
  .about-photo-col {
    display: none;
  }
  /* Show and float the inline photo */
  .about-photo-inline {
    display: block;
    float: right;
    width: 50%;
    margin: 0 0 1rem 1.25rem;
    shape-outside: margin-box;
  }
  .about-photo-inline .about-photo {
    aspect-ratio: 3/4;
    width: 100%;
    border-radius: 2px;
  }
  .about-text-col {
    padding-top: 0;
  }
  .about-heading {
    margin-top: 0;
  }
  .about-body {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  /* Mobile menu polish — staggered link reveals */
  .nav__mobile .nav__link {
    font-size: 1.15rem;
    letter-spacing: 0.22em;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease-out),
                transform 0.4s var(--ease-out),
                color var(--dur-fast) var(--ease);
  }
  .nav__mobile.open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__mobile.open li:nth-child(1) .nav__link { transition-delay: 0.06s; }
  .nav__mobile.open li:nth-child(2) .nav__link { transition-delay: 0.12s; }
  .nav__mobile.open li:nth-child(3) .nav__link { transition-delay: 0.18s; }
  .nav__mobile.open li:nth-child(4) .nav__link { transition-delay: 0.24s; }
  .nav__mobile.open li:nth-child(5) .nav__link { transition-delay: 0.30s; }

  .selected-work__grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5),
  .work-item:nth-child(6) { aspect-ratio: 4/3; }

  .masonry { columns: 2; }
  .filter-bar { gap: 1.5rem; }

  /* Hero — stack CTA on mobile */
  .hero__cta { flex-direction: column; gap: 0.75rem; }
  .hero__btn { text-align: center; }
  .hero__name { margin-bottom: 1rem; }
  .hero { padding-bottom: clamp(3rem, 6vw, 5rem); }

  /* Category blocks — shorter on mobile */
  .cat-block { min-height: 55vh; }

  /* Lightbox — hide arrows on mobile (swipe works) */
  .lightbox__arrow { display: none; }
  .lightbox__close {
    width: 44px;
    height: 44px;
    top: 6px;
    right: 6px;
  }
  .lightbox__close svg { width: 22px; height: 22px; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer__copy {
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 0.68rem;
  }
  .footer__instagram {
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 0.68rem;
  }

  /* Touch active states */
  .btn:active,
  .work-item:active,
  .masonry-item:active,
  .cat-block:active { opacity: 0.85; }
  .cat-block:active .cat-block__img { transform: scale(1.02); }

  /* Form — larger touch targets */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
    padding: 0.85rem 0;
  }
  .form-select { padding-right: 2.5rem; }
  .form-submit .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-featured__features { flex-direction: column; }
}

@media (max-width: 640px) {
  .how-it-works__grid { grid-template-columns: 1fr; }
  .svc-policies__inner { flex-direction: column; gap: 0.75rem; }
  .svc-policies__sep { display: none; }
}

@media (max-width: 480px) {
  .masonry { columns: 2; column-gap: 8px; }
  .masonry-item { margin-bottom: 8px; }
  .selected-work__grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .work-item { aspect-ratio: 4/3 !important; }
  .lightbox { padding: var(--nav-h) 0.75rem 1rem; }
  .lightbox__caption {
    max-height: 50vh;
    overflow-y: auto;
    padding: 0 0.5rem;
  }
  .lightbox__title { font-size: 1.1rem; }
  .cat-block { min-height: 45vh; }
  .page-header { padding-bottom: clamp(2rem, 4vw, 3rem); }
}

/* ══════════════════════════════════════════════════════════
   Print Shop Selector
   ══════════════════════════════════════════════════════════ */

.print-selector {
  width: 100%;
  max-width: 580px;
  margin-top: 1rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.print-selector.open {
  max-height: 420px;
  opacity: 1;
}
.print-selector__step {
  margin-bottom: 1rem;
}

/* Step 1: Type Cards */
.print-selector__types {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.print-type-card {
  flex: 1;
  max-width: 180px;
  padding: 0.9rem 0.75rem;
  border: 1px solid var(--border);
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.print-type-card:hover {
  border-color: rgba(232, 224, 212, 0.35);
}
.print-type-card:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}
.print-type-card.selected {
  border-color: rgba(232, 224, 212, 0.5);
  background: rgba(232, 224, 212, 0.05);
}
.print-type-card__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.print-type-card__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Step 2: Dropdowns */
.print-selector__fields {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.print-selector__field {
  flex: 1;
  max-width: 200px;
  text-align: left;
}
.print-selector__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}
.print-selector__select {
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text);
  background: var(--bg-lift);
  border: 1px solid var(--border);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(232,224,212,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 10px 6px;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease);
}
.print-selector__select:hover,
.print-selector__select:focus {
  border-color: rgba(232, 224, 212, 0.35);
  outline: none;
}

/* Step 3: Order */
.print-selector__order {
  text-align: center;
  padding-top: 0.25rem;
}
.print-selector__order-btn {
  font-size: 0.7rem;
  padding: 0.7rem 2rem;
  border-color: rgba(232, 224, 212, 0.4);
  color: var(--text);
}
.print-selector__order-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: 0 0 25px rgba(232, 224, 212, 0.15), 0 0 50px rgba(232, 224, 212, 0.05);
}
.print-selector__fine-print {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin-top: 0.6rem;
  line-height: 1.6;
}
.print-selector__error {
  font-size: 0.7rem;
  color: #e05050;
  margin-top: 0.5rem;
}

/* Print Selector Responsive */
@media (max-width: 768px) {
  .print-selector__types {
    flex-direction: column;
    align-items: center;
  }
  .print-type-card {
    max-width: 100%;
    width: 100%;
    min-height: 44px;
  }
  .print-selector__fields {
    flex-direction: column;
    align-items: center;
  }
  .print-selector__field {
    max-width: 100%;
    width: 100%;
  }
  .print-selector__select {
    min-height: 44px;
  }
  .print-selector__order-btn {
    min-height: 44px;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   Print Shop Pages (success/cancel)
   ══════════════════════════════════════════════════════════ */

.print-shop-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}
.print-shop-page p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.print-shop-page .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   Glow & Animation Enhancements (all viewports)
   ══════════════════════════════════════════════════════════ */

/* ── Hero name — slow warm glow pulse ── */
.hero__name {
  animation: fadeUp 1s var(--ease) 0.5s forwards,
             glowPulse 4s ease-in-out 2s infinite;
}

/* ── Nav — glowing border when scrolled ── */
.nav.scrolled {
  border-bottom-color: rgba(232, 224, 212, 0.08);
  box-shadow: 0 1px 30px rgba(232, 224, 212, 0.04);
}

/* ── About photo — soft edge glow (desktop sidebar) ── */
.about-photo {
  box-shadow: 0 4px 30px rgba(232, 224, 212, 0.05),
              0 0 60px rgba(232, 224, 212, 0.03);
}

/* ── About heading — warm glow ── */
.about-heading {
  text-shadow: 0 0 30px rgba(232, 224, 212, 0.12),
               0 0 60px rgba(232, 224, 212, 0.05);
}

/* ── Masonry items — glow on scroll reveal ── */
.masonry-item.reveal.visible {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(232, 224, 212, 0.03);
}

/* ── Category block titles — stronger glow ── */
.cat-block__title {
  text-shadow: 0 0 30px rgba(232, 224, 212, 0.2),
               0 0 60px rgba(232, 224, 212, 0.1),
               0 0 100px rgba(232, 224, 212, 0.05);
}

/* ── CTA section — animated ambient glow ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 224, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: ctaGlow 5s ease-in-out infinite;
  pointer-events: none;
}
.cta-section__heading {
  text-shadow: 0 0 40px rgba(232, 224, 212, 0.15),
               0 0 80px rgba(232, 224, 212, 0.06);
}

/* ── Buttons — glow on hover and active ── */
.btn:active {
  box-shadow: 0 0 20px rgba(232, 224, 212, 0.15),
              0 0 40px rgba(232, 224, 212, 0.06);
}
.hero__btn {
  box-shadow: 0 0 15px rgba(232, 224, 212, 0.05);
}

/* ── Page header titles — subtle glow ── */
.page-header__title {
  text-shadow: 0 0 40px rgba(232, 224, 212, 0.1),
               0 0 80px rgba(232, 224, 212, 0.04);
}

/* ── Lightbox image — soft ambient glow ── */
.lightbox__img.loaded {
  filter: drop-shadow(0 0 40px rgba(232, 224, 212, 0.04));
}

/* ── Footer logo — warm glow ── */
.footer__logo {
  text-shadow: 0 0 20px rgba(232, 224, 212, 0.08);
}

/* ── Form focus glow ── */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: rgba(232, 224, 212, 0.4);
  box-shadow: 0 2px 15px rgba(232, 224, 212, 0.06);
}

/* ── Scroll reveal — glow fade-in ── */
.reveal.visible {
  animation: revealGlow 1.2s var(--ease-out) forwards;
}

/* ── Contact heading — warm glow ── */
.contact-info__heading {
  text-shadow: 0 0 25px rgba(232, 224, 212, 0.1),
               0 0 50px rgba(232, 224, 212, 0.04);
}

/* ── Service card hover glow ── */
.svc-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
              0 0 60px rgba(232, 224, 212, 0.03);
}

/* ── Mobile-only glow additions ── */
@media (max-width: 768px) {
  .nav__mobile.open .nav__link {
    text-shadow: 0 0 20px rgba(232, 224, 212, 0.1);
  }
  .about-photo-inline {
    filter: drop-shadow(0 0 20px rgba(232, 224, 212, 0.06));
  }
}

/* ── Glow Keyframes ─────────────────────────────────────── */
@keyframes glowPulse {
  0%, 100% { text-shadow: var(--glow-heading); }
  50%      { text-shadow: 0 0 50px rgba(232, 224, 212, 0.14),
                          0 0 100px rgba(232, 224, 212, 0.06),
                          0 0 150px rgba(232, 224, 212, 0.02); }
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes revealGlow {
  0%   { filter: drop-shadow(0 0 15px rgba(232, 224, 212, 0.08)); }
  100% { filter: drop-shadow(0 0 0px transparent); }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
