/* ─────────────────────────────────────────
   LIGHT THEME
   Shared stylesheet for every "light" page:
   index (home), photography, about, shop,
   contact, blog. The 3D/studio experience
   keeps using the original dark style.css
   untouched. Same fonts/radii/components as
   style.css, tokens inverted.
───────────────────────────────────────── */
:root {
  --bg:          #f5f1ec;
  --surface:     #fffdfa;
  --text:        #1a1720;
  --text-muted:  rgba(26, 23, 32, 0.72);
  --accent:      #1a1720;
  --border:      rgba(26, 23, 32, 0.14);

  --font-display: 'Bellefair', serif;
  --font-ui:      'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --panel-max: 680px;
  --header-h:  64px;
  --radius:    20px;
  --radius-sm: 10px;

  --clr-1: #3b82f6;
  --clr-2: #a855f7;
  --clr-3: #ec4899;
  --clr-4: #f97316;
  --clr-5: #22d3ee;
}

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

html { background: var(--bg); }

body {
  font-family: var(--font-body);
  color:       var(--text);
  line-height: 1.6;
  background:  var(--bg);
}

img, picture { max-width: 100%; display: block; -webkit-user-drag: none; user-drag: none; -webkit-user-select: none; user-select: none; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; color: inherit; }
a { color: var(--text); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:  0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 236, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
}

.site-logo {
  font-family: var(--font-ui); font-weight: 600; font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--text);
  transition: opacity 0.3s;
}
.site-logo:hover { opacity: 0.6; }

.primary-nav { display: flex; gap: clamp(16px, 2.5vw, 32px); align-items: center; }

.primary-nav a {
  font-family: var(--font-ui); font-size: clamp(11px, 1.2vw, 13px); font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
  position: relative; transition: color 0.3s;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--text); transition: width 0.3s ease;
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { width: 100%; }
.primary-nav a.current { color: var(--text); }
.primary-nav a.current::after { width: 100%; }

.nav-toggle { display: none; font-size: 22px; color: var(--text); line-height: 1; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: var(--text-muted); }
.mobile-nav-link {
  font-family: var(--font-ui); font-size: clamp(24px, 7vw, 34px); font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--text); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle {
    display: block; padding: 6px 8px; border: 1px solid var(--border); border-radius: 6px;
  }
}

/* ─────────────────────────────────────────
   PAGE TYPOGRAPHY  (same names as style.css)
───────────────────────────────────────── */
.panel-eyebrow {
  font-family: var(--font-ui); font-size: 11px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 12px;
}

.panel-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
  font-weight: 400; line-height: 1.08; color: var(--text); margin-bottom: 16px;
  text-wrap: balance;
}
h1.panel-title { font-size: clamp(36px, 6vw, 64px); }

.panel-subtitle {
  font-family: var(--font-ui); font-size: clamp(14px, 2vw, 18px); font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
}

.panel-body {
  font-size: clamp(14px, 1.5vw, 16px); color: rgba(26, 23, 32, 0.85);
  max-width: 60ch; margin-bottom: 24px; line-height: 1.75;
}

.discipline-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }

.tag {
  font-family: var(--font-ui); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 4px; padding: 6px 14px;
  transition: border-color 0.3s, color 0.3s;
}
.tag[data-cat], .tag[href] { cursor: pointer; }
.tag[data-cat]:hover, .tag[href]:hover { color: var(--text); border-color: rgba(26, 23, 32, 0.4); }

.panel-cta {
  display: inline-flex; align-items: center; font-family: var(--font-ui);
  font-size: 12px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bg); background: var(--text); border: none; border-radius: 6px;
  padding: 14px 28px; cursor: pointer; transition: opacity 0.3s, transform 0.2s;
}
.panel-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.panel-cta:active { transform: translateY(0); }
.panel-cta--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.panel-cta--ghost:hover { opacity: 1; border-color: rgba(26, 23, 32, 0.4); }
.panel-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.link-arrow {
  font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 3px;
  display: inline-flex; gap: 8px; transition: border-color 0.3s, gap 0.3s;
}
.link-arrow:hover { border-color: var(--text); gap: 12px; }

/* ─────────────────────────────────────────
   GLOW CARD  (rainbow border, same technique
   as style.css, on the light surface)
───────────────────────────────────────── */
@property --clr-1 { syntax: '<color>'; inherits: true; initial-value: #3b82f6; }
@property --clr-2 { syntax: '<color>'; inherits: true; initial-value: #a855f7; }
@property --clr-3 { syntax: '<color>'; inherits: true; initial-value: #ec4899; }
@property --clr-4 { syntax: '<color>'; inherits: true; initial-value: #f97316; }
@property --clr-5 { syntax: '<color>'; inherits: true; initial-value: #22d3ee; }

.glow-card {
  --gradient-glow: var(--clr-1), var(--clr-2), var(--clr-3), var(--clr-4), var(--clr-5), var(--clr-1);
  border: 2px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(var(--gradient-glow), var(--gradient-glow)) border-box;
  padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 44px);
  position: relative; isolation: isolate;
  animation: glowShift 24s infinite linear;
}
.glow-card::after {
  content: ''; position: absolute; inset: -2rem; z-index: -1;
  background: conic-gradient(var(--gradient-glow), var(--gradient-glow));
  filter: blur(2.5rem); opacity: 0.12; border-radius: inherit; pointer-events: none;
}
@keyframes glowShift {
  50% { --clr-1: #22d3ee; --clr-2: #3b82f6; --clr-3: #a855f7; --clr-4: #ec4899; --clr-5: #f97316; }
}

/* ─────────────────────────────────────────
   PAGE HERO  (non-home pages — simple header block)
───────────────────────────────────────── */
.page-hero { padding: 64px 0 8px; }

/* ─────────────────────────────────────────
   HOME HERO  (slideshow + about card)
───────────────────────────────────────── */
.hero { padding-top: 48px; }
.hero-grid {
  display: grid; grid-template-columns: 400px 1fr; gap: 32px; align-items: stretch;
  min-height: 600px; padding-bottom: 64px;
}
.about-card { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.about-card .panel-body { margin-bottom: 8px; }
.about-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 18px; }

.slideshow {
  display: block;
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface);
  transition: opacity 0.3s ease;
}
.slideshow:hover { opacity: 0.94; }
.slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: crossfade 24s infinite;
}
@keyframes crossfade {
  0% { opacity: 0; } 4% { opacity: 1; } 21% { opacity: 1; } 27% { opacity: 0; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slideshow img { animation: none; opacity: 0; }
  .slideshow img:first-child { opacity: 1; }
}
.slideshow-caption {
  position: absolute; left: 16px; bottom: 14px; z-index: 4;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #f5f1ec; background: rgba(26, 23, 32, 0.55); backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: 20px;
}

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
section { padding: 80px 0; }
.section-head { margin-bottom: 40px; }

/* ─────────────────────────────────────────
   PACKAGES  (reuses shop-card)
───────────────────────────────────────── */
.packages-note {
  margin-top: 8px; font-size: 14.5px; color: var(--text-muted);
  border-left: 2px solid var(--border); padding-left: 16px; max-width: 64ch;
}
.packages-cta { margin-top: 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Playful float — packages cards only (not the shop/print grid, which
   shares the same .shop-card component but should stay still). Each
   card gets its own resting tilt and drifts on X/Y at a different
   phase so they don't move in lockstep. */
#packages .shop-grid { perspective: 1400px; padding: 20px 4px 28px; }
#packages .shop-card {
  transform-style: preserve-3d;
  animation: package-float 8s ease-in-out infinite;
  transition: transform 0.4s ease, border-color 0.3s;
}
#packages .shop-card:nth-child(1) { --tilt-x: 3deg;  --tilt-y: -5deg; animation-delay: 0s; }
#packages .shop-card:nth-child(2) { --tilt-x: -2deg; --tilt-y: 1deg;  animation-delay: -2.7s; }
#packages .shop-card:nth-child(3) { --tilt-x: 3deg;  --tilt-y: 5deg;  animation-delay: -5.3s; }

@keyframes package-float {
  0%, 100% { transform: translateY(0)    rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
  50%      { transform: translateY(-10px) rotateX(calc(var(--tilt-x) * -1)) rotateY(calc(var(--tilt-y) * -1)); }
}

#packages .shop-card:hover {
  animation-play-state: paused;
  transform: translateY(-8px) rotateX(0deg) rotateY(0deg) scale(1.015);
  border-color: rgba(26, 23, 32, 0.3);
}

/* ─────────────────────────────────────────
   JOURNAL / BLOG
───────────────────────────────────────── */
.journal { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.journal-post { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.journal-post img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; }
.journal-post .cat {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}

.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px;
  margin-top: 8px;
}
.post-card { display: flex; flex-direction: column; gap: 12px; }
.post-card .thumb { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; }
.post-card .cat {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.post-card h3 { font-family: var(--font-display); font-size: 21px; color: var(--text); }
.post-card p { font-size: 14px; color: var(--text-muted); }
.post-card time { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); }

.post-body { max-width: 68ch; }
.post-body p { font-size: 16px; color: rgba(26, 23, 32, 0.85); line-height: 1.8; margin-bottom: 24px; }
.post-body figure { margin: 32px 0; }
.post-body figure img { border-radius: var(--radius-sm); width: 100%; }
.post-body figcaption {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.1em; color: var(--text-muted);
  margin-top: 10px;
}

/* ─────────────────────────────────────────
   GALLERY GRID  (Photography page)
───────────────────────────────────────── */
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.category-tab {
  font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); background: transparent; border: 1px solid var(--border);
  border-radius: 4px; padding: 6px 16px; cursor: pointer; transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.category-tab:hover { color: var(--text); border-color: rgba(26, 23, 32, 0.35); }
.category-tab.active { color: var(--bg); background: var(--text); border-color: var(--text); }

.gallery-grid { columns: 2; gap: 12px; margin-top: 24px; }
@media (min-width: 640px) { .gallery-grid { columns: 3; } }
.gallery-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px;
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #f5f1ec; background: linear-gradient(transparent, rgba(0,0,0,0.6)); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-empty { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); padding: 40px 0; }

@media (max-width: 640px) { .gallery-grid { columns: 1; } }

/* ─────────────────────────────────────────
   LIGHTBOX  (same behaviour, light-safe scrim)
───────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(26, 23, 32, 0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; opacity: 0; pointer-events: none; transition: opacity 0.35s; cursor: zoom-out;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-close { position: absolute; top: 24px; right: 28px; font-size: 28px; color: rgba(245,241,236,0.7); transition: color 0.3s; cursor: pointer; }
.lightbox-close:hover { color: #f5f1ec; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-caption { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,236,0.7); margin-top: 16px; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(245,241,236,0.12);
  border: 1px solid rgba(245,241,236,0.25); border-radius: 50%; color: #f5f1ec; font-size: 20px;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(6px); transition: background 0.2s, border-color 0.2s; z-index: 10;
}
.lightbox-prev { left: 16px; } .lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(245,241,236,0.22); border-color: rgba(245,241,236,0.5); }
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 16px; }
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-logo {
  --size: clamp(80px, 12vw, 120px); width: var(--size); height: var(--size);
  border-radius: 50%; object-fit: cover; margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}
.client-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin: 24px 0; opacity: 0.7; }
.client-logo { height: 32px; width: auto; filter: grayscale(1); }
.client-name {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.about-links { margin-top: 28px; }

/* ─────────────────────────────────────────
   SHOP
───────────────────────────────────────── */
.shop-intro { margin-bottom: 32px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 8px; }
.shop-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s;
}
.shop-card:hover { border-color: rgba(26, 23, 32, 0.3); transform: translateY(-2px); }
.shop-card--feature { border-color: rgba(26, 23, 32, 0.5); }
.shop-card-img-wrap { aspect-ratio: 4 / 3; overflow: hidden; background: rgba(26, 23, 32, 0.04); }
.shop-card-img-wrap--empty { display: flex; align-items: center; justify-content: center; }
.shop-card-img-wrap--empty::after {
  content: 'Image coming soon'; font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.shop-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.shop-card:hover .shop-card-img-wrap img { transform: scale(1.04); }
.shop-card-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--text); line-height: 1.2; }
.shop-card-meta { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.shop-card-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.shop-card-best { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px; }
.shop-card-size { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 12px; }
.shop-card-price { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--text); }

.shop-order-msg {
  display: none; font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.1em;
  padding: 16px 20px; border-radius: var(--radius-sm); margin-top: 24px; border: 1px solid transparent;
}
.shop-order-msg--success { display: block; color: #15803d; background: rgba(21, 128, 61, 0.08); border-color: rgba(21, 128, 61, 0.25); }
.shop-order-msg--cancelled { display: block; color: var(--text-muted); background: rgba(26, 23, 32, 0.04); border-color: var(--border); }

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

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.obfuscated-email {
  display: flex; flex-direction: row-reverse; justify-content: flex-end;
  font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.1em; color: var(--text);
  margin-bottom: 28px; user-select: all;
}
.obfuscated-email span { display: inline-block; unicode-bidi: bidi-override; direction: rtl; }

.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  background: rgba(26, 23, 32, 0.03); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--text); font-size: 14px; font-family: var(--font-body);
  transition: border-color 0.3s; width: 100%;
}
.form-input:focus { outline: none; border-color: rgba(26, 23, 32, 0.4); }
.form-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(26,23,32,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.form-select option { background: #fffdfa; color: var(--text); }
.form-success { display: none; font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { padding: 52px 0 40px; }
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.footer-nav a:hover { color: var(--text); }
.footer-social { display: flex; align-items: center; gap: 18px; }
.footer-social a { color: var(--text-muted); display: inline-flex; transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 20px;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.05em; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--text); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .slideshow { height: 52vh; }
  .journal-post { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}

/* ─────────────────────────────────────────
   IRIS TRANSITION — camera-shutter wipe into
   the 3D studio page. See src/iris.js.
───────────────────────────────────────── */
.iris-layer {
  position: fixed; inset: 0; z-index: 500;
  background:
    radial-gradient(1px 1px at 8% 22%, rgba(245,241,236,.9), transparent),
    radial-gradient(1px 1px at 18% 68%, rgba(245,241,236,.7), transparent),
    radial-gradient(1.5px 1.5px at 27% 40%, rgba(245,241,236,.9), transparent),
    radial-gradient(1px 1px at 35% 82%, rgba(245,241,236,.6), transparent),
    radial-gradient(1.5px 1.5px at 46% 15%, rgba(245,241,236,.8), transparent),
    radial-gradient(1px 1px at 58% 55%, rgba(245,241,236,.7), transparent),
    radial-gradient(1.5px 1.5px at 66% 30%, rgba(245,241,236,.9), transparent),
    radial-gradient(1px 1px at 74% 74%, rgba(245,241,236,.6), transparent),
    radial-gradient(1.5px 1.5px at 85% 20%, rgba(245,241,236,.8), transparent),
    radial-gradient(1px 1px at 92% 60%, rgba(245,241,236,.7), transparent),
    radial-gradient(1.5px 1.5px at 12% 90%, rgba(245,241,236,.7), transparent),
    radial-gradient(1px 1px at 63% 88%, rgba(245,241,236,.6), transparent),
    #1a1720;
  clip-path: circle(0% at var(--ix, 50%) var(--iy, 50%));
  transition: clip-path 900ms cubic-bezier(.65,0,.35,1);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.iris-layer.open { clip-path: circle(150% at var(--ix, 50%) var(--iy, 50%)); pointer-events: auto; }
.iris-content { text-align: center; opacity: 0; transition: opacity .4s ease .3s; }
.iris-layer.open .iris-content { opacity: 1; }
.iris-eyebrow { font-family: var(--font-ui); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,241,236,.6); }
