/* ═══════════════════════════════════════════════════════════════
   CHANDRA DIGITAL — Est. 1975
   The family photo studio, three generations later.
   Pure CSS. No framework. Hand-built.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper:      #F7EFDE;   /* warm studio paper */
  --paper-deep: #EFE3C8;
  --ink:        #171210;   /* developer-tray black */
  --ink-soft:   #4A423B;
  --marigold:   #FFCB05;   /* the logo yellow */
  --marigold-d: #E6B400;
  --red:        #E23A28;   /* the beak red */
  --red-deep:   #B92A1B;
  --white:      #FFFDF7;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Archivo', -apple-system, sans-serif;

  --soft: "SOFT" 100, "WONK" 1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--marigold); color: var(--ink); }

/* ─── film grain overlay ─────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.7s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-1%); } 75% { transform: translate(-1%,2%); }
  100% { transform: translate(0,0); }
}

/* ─── ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--marigold);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker-track { display: inline-flex; animation: tick 36s linear infinite; }
.ticker-track span { padding-right: 8px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-foot { background: var(--marigold); color: var(--ink); }
.ticker-foot .ticker-track { animation-direction: reverse; }

/* ─── nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 5vw;
  background: rgba(247, 239, 222, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav-logo { height: 62px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 3px; background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 24px; height: 3px; background: var(--ink); }

/* ─── buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  font-size: 13.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-yellow { background: var(--marigold); color: var(--ink); }
.btn-ink    { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--red); }
.btn-ink:hover { box-shadow: 7px 7px 0 var(--red); }
.btn-ghost  { background: transparent; color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: 4px 4px 0 var(--red); }
.btn-ghost-light:hover { box-shadow: 7px 7px 0 var(--red); transform: translate(-2px,-2px); }
.btn-big { padding: 18px 38px; font-size: 15px; }

/* ─── kickers & headings ─────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 18px;
}
.kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: blink 1.6s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.kicker-light { color: var(--marigold); }
.kicker-light .kicker-dot { background: var(--red); }
.kicker-red { color: var(--red); }

.sect-head { text-align: center; padding: 0 5vw; margin-bottom: 54px; }
.sect-h {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.sect-h.light { color: var(--paper); }

/* ─── hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(70px, 11vh, 130px) 5vw clamp(80px, 12vh, 150px);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,203,5,0.22) 0%, transparent 60%),
    var(--paper);
}
.hero-inner { max-width: 1080px; margin: 0 auto; }
.hero-h {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(46px, 8.2vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  max-width: 18ch;
}
.oval-wrap { position: relative; display: inline-block; padding: 0 0.12em; isolation: isolate; }
.oval {
  position: absolute; inset: -8% -6%;
  width: 112%; height: 116%;
  z-index: -1;
}
.oval ellipse {
  fill: var(--marigold);
  transform-origin: center;
  animation: oval-pop 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}
@keyframes oval-pop { from { transform: scale(0); } to { transform: scale(1); } }
.red-u { color: var(--red); white-space: nowrap; }
.hero-sub {
  max-width: 560px;
  margin-top: 26px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-note {
  margin-top: 30px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}

/* rotating stamp */
.stamp {
  position: absolute;
  right: clamp(12px, 6vw, 110px);
  bottom: -64px;
  width: 128px; height: 128px;
  z-index: 5;
}
.stamp svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.stamp text {
  font-family: var(--body);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.18em;
  fill: var(--ink);
}
.stamp-ring { fill: var(--marigold); stroke: var(--ink); stroke-width: 2.5; }
.stamp-mid { font-family: var(--display) !important; font-size: 30px !important; font-weight: 900; text-anchor: middle; letter-spacing: 0 !important; }
.stamp-sub { font-size: 10px !important; text-anchor: middle; letter-spacing: 0.3em !important; }

/* ─── legacy film strip ──────────────────────────────────────── */
.legacy {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 11vh, 130px) 0 clamp(90px, 12vh, 140px);
}
.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}
.frame {
  border: 2px solid rgba(247,239,222,0.25);
  background: #100d0b;
  padding: 26px 20px;
  position: relative;
}
/* sprocket holes */
.frame::before, .frame::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 12px;
  background-image: radial-gradient(circle at 8px 6px, var(--paper) 4px, transparent 4.5px);
  background-size: 28px 12px;
  background-repeat: repeat-x;
  opacity: 0.35;
}
.frame::before { top: 7px; }
.frame::after  { bottom: 7px; }
.frame-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 16px 0 20px;
  filter: sepia(0.35) contrast(1.05);
  transition: filter 0.4s ease;
}
.frame:hover .frame-img { filter: sepia(0) contrast(1); }
.frame-img img { width: 100%; height: 100%; object-fit: cover; }

/* "Face reveal soon" placeholder frame */
.frame-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px dashed rgba(255,203,5,0.5);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(226,58,40,0.16) 0%, transparent 65%),
    #0c0a08;
  filter: none;
}
.frame:hover .frame-soon { filter: none; }
.frame-soon-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease infinite;
}
.frame-soon-text {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  text-align: center;
  color: var(--marigold);
}
.frame-no {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--marigold);
}
.frame-meta h3 {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 25px;
  margin: 8px 0 10px;
}
.frame-meta p { font-size: 14px; line-height: 1.7; color: rgba(247,239,222,0.72); }

/* ─── departments ────────────────────────────────────────────── */
.departments { padding: clamp(80px, 11vh, 130px) 5vw; }
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}
.dept {
  background: var(--white);
  border: 2.5px solid var(--ink);
  padding: 26px 22px 22px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dept:nth-child(odd)  { transform: rotate(-0.7deg); }
.dept:nth-child(even) { transform: rotate(0.6deg); }
.dept:hover {
  transform: rotate(0deg) translate(-3px,-3px);
  box-shadow: 10px 10px 0 var(--marigold);
  z-index: 2;
}
.dept-no {
  position: absolute; top: -14px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  padding: 3px 10px;
  border: 2px solid var(--ink);
}
.dept h3 {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 23px;
  margin: 6px 0 10px;
}
.dept p { font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); min-height: 4.8em; }
.dept-price {
  display: inline-block;
  margin-top: 14px;
  background: var(--marigold);
  border: 2px solid var(--ink);
  padding: 4px 12px;
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.dept-foot {
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* ─── rate card ──────────────────────────────────────────────── */
.ratecard {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 11vh, 130px) 5vw;
}
.rc-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 38px;
}
.rc-tab {
  padding: 9px 18px;
  font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--paper);
  border: 2px solid rgba(247,239,222,0.4);
  border-radius: 999px;
  transition: all 0.18s;
}
.rc-tab:hover { border-color: var(--marigold); color: var(--marigold); }
.rc-tab.active { background: var(--marigold); color: var(--ink); border-color: var(--marigold); }
.rc-board {
  max-width: 880px;
  margin: 0 auto;
  border: 2px dashed rgba(247,239,222,0.35);
  padding: clamp(22px, 4vw, 44px);
  position: relative;
}
.rc-panel { display: none; }
.rc-panel.active { display: block; animation: rc-in 0.35s ease; }
@keyframes rc-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rc-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(247,239,222,0.12);
}
.rc-row:last-of-type { border-bottom: none; }
.rc-name {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(19px, 2.6vw, 26px);
  white-space: nowrap;
}
.rc-dots { flex: 1; border-bottom: 2px dotted rgba(247,239,222,0.35); transform: translateY(-6px); min-width: 30px; }
.rc-detail { font-size: 13px; color: rgba(247,239,222,0.6); max-width: 320px; text-align: right; }
.rc-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--marigold);
  white-space: nowrap;
}
.rc-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(247,239,222,0.55);
  font-style: italic;
}
.addons {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 36px auto 0;
}
.addon-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1.5px solid rgba(247,239,222,0.4);
  border-radius: 4px;
  color: rgba(247,239,222,0.85);
  position: relative;
}
.addon-tag::before {
  content: '';
  position: absolute; left: -4px; top: 50%;
  width: 7px; height: 7px;
  background: var(--ink);
  border: 1.5px solid rgba(247,239,222,0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}
.rc-fineprint {
  text-align: center;
  font-size: 12px;
  color: rgba(247,239,222,0.45);
  max-width: 620px;
  margin: 28px auto 0;
}

/* ─── deals / coupons ────────────────────────────────────────── */
.deals { padding: clamp(80px, 11vh, 130px) 5vw; background: var(--paper-deep); border-bottom: 2px solid var(--ink); }
.coupon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.coupon {
  position: relative;
  background: var(--white);
  border: 2.5px dashed var(--ink);
  padding: 30px 26px 26px;
  text-align: center;
}
.coupon::before, .coupon::after {
  content: '';
  position: absolute; top: 50%;
  width: 22px; height: 22px;
  background: var(--paper-deep);
  border: 2.5px dashed var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}
.coupon::before { left: -13px; clip-path: inset(0 0 0 50%); border-left: none; }
.coupon::after  { right: -13px; clip-path: inset(0 50% 0 0); border-right: none; }
.coupon-scissor {
  position: absolute; top: -13px; left: 26px;
  background: var(--paper-deep);
  padding: 0 8px;
  font-size: 17px;
}
.coupon-label {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 12px;
}
.coupon h3 {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 12px;
}
.coupon p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.coupon-code {
  display: inline-block;
  margin-top: 18px;
  background: var(--ink); color: var(--marigold);
  font-size: 12px; font-weight: 800; letter-spacing: 0.22em;
  padding: 7px 16px;
}

/* ─── story ──────────────────────────────────────────────────── */
.story { padding: clamp(80px, 11vh, 140px) 5vw; }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.story-copy .sect-h { font-size: clamp(32px, 4.6vw, 54px); margin-bottom: 24px; }
.story-copy p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; max-width: 54ch; }
.story-stats { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 34px; }
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--red);
  line-height: 1;
}
.stat-l { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); margin-top: 6px; }

.story-photos { position: relative; min-height: 480px; }
.polaroid {
  position: absolute;
  background: var(--white);
  border: 1.5px solid rgba(23,18,16,0.18);
  padding: 10px 10px 38px;
  box-shadow: 0 14px 36px rgba(23,18,16,0.22);
  width: clamp(190px, 18vw, 260px);
  transition: transform 0.3s ease, z-index 0s;
}
.polaroid img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.polaroid span {
  position: absolute; bottom: 9px; left: 0; right: 0;
  text-align: center;
  font-family: var(--display); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
}
.p-a { top: 0; left: 4%; transform: rotate(-6deg); z-index: 1; }
.p-b { top: 26%; right: 0; transform: rotate(4deg); z-index: 2; }
.p-c { bottom: 0; left: 16%; transform: rotate(-2deg); z-index: 3; }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 10; }

/* ─── book cta ───────────────────────────────────────────────── */
.book {
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(226,58,40,0.34) 0%, transparent 65%),
    var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(100px, 15vh, 180px) 5vw;
  border-top: 6px solid var(--marigold);
}
.book-h {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.05;
  margin-bottom: 40px;
}
.book-actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.book .btn-yellow { border-color: var(--marigold); box-shadow: 4px 4px 0 var(--red); }
.book .btn-yellow:hover { box-shadow: 8px 8px 0 var(--red); }
.book-meta { margin-top: 36px; font-size: 14px; color: rgba(247,239,222,0.6); }
.book-meta a { text-decoration: underline; text-underline-offset: 3px; }
.book-meta a:hover { color: var(--marigold); }

/* ─── footer ─────────────────────────────────────────────────── */
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 5vw;
  background: var(--ink);
  color: rgba(247,239,222,0.6);
  font-size: 13px;
}
.footer-logo { height: 54px; width: auto; }

/* ─── reveal on scroll ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─── responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .filmstrip { grid-template-columns: repeat(2, 1fr); }
  .coupon-row { grid-template-columns: 1fr; max-width: 560px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photos { min-height: 420px; margin-top: 20px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 18px 5vw 22px;
    gap: 16px;
  }
}
@media (max-width: 720px) {
  .dept-grid { grid-template-columns: 1fr; }
  .dept:nth-child(odd), .dept:nth-child(even) { transform: none; }
  .stamp { width: 96px; height: 96px; bottom: -48px; }
  .rc-detail { display: none; }
  .rc-tab { padding: 7px 13px; font-size: 11.5px; }
  .rc-tabs { gap: 7px; }
  .filmstrip { grid-template-columns: 1fr; }
  .stamp { display: none; }
  .book-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SUBPAGES — about / portfolio / reviews
   ═══════════════════════════════════════════════════════════════ */

.nav-links a.active::after { width: 100%; background: var(--red); }

/* page hero */
.page-hero {
  text-align: center;
  padding: clamp(64px, 9vh, 110px) 5vw clamp(48px, 7vh, 80px);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(ellipse 55% 60% at 50% -10%, rgba(255,203,5,0.20) 0%, transparent 60%),
    var(--paper);
}
.page-hero-sub {
  max-width: 520px;
  margin: 22px auto 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* legacy "full story" link */
.legacy-more { text-align: center; margin-top: 44px; }

/* departments service-based note */
.dept-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* ─── about: era sections ────────────────────────────────────── */
.era { padding: clamp(70px, 10vh, 120px) 5vw; }
.era-alt { background: var(--paper-deep); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.era-inner { max-width: 1140px; margin: 0 auto; }
.era-marker {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.era-year {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 30px;
  background: var(--marigold);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 4px 16px;
}
.era-gen {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--red);
}
.era-h {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.era-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 8px 0 36px;
}
.era-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.era-grid-flip { grid-template-columns: 1.15fr 0.85fr; }
.era-photos { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.polaroid.p-static {
  position: static;
  transform: rotate(-3deg);
  width: clamp(180px, 16vw, 250px);
}
.polaroid.p-static:hover { transform: rotate(0) scale(1.03); z-index: 5; }
.polaroid.p-static img { aspect-ratio: 4/5; }
.polaroid.p-static-b { transform: rotate(3.5deg); margin-top: 26px; }
.polaroid.p-static-b:hover { transform: rotate(0) scale(1.03); }

/* mini face-reveal polaroid (about page) */
.p-soon-inner {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(226,58,40,0.18) 0%, transparent 65%),
    #0c0a08;
  border: 2px dashed rgba(255,203,5,0.5);
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-style: italic;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
  color: var(--marigold);
}

/* story callout (about page) */
.era-callout {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px !important;
  color: var(--ink) !important;
  background: rgba(255,203,5,0.18);
  border: 2px dashed var(--marigold-d);
  padding: 14px 18px;
  display: inline-block;
}
.era-link { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.era-link:hover { color: var(--red-deep); }
.era-copy p { font-size: 16.5px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }
.era-placeholder {
  font-family: var(--display);
  font-style: italic;
  color: var(--red) !important;
  border: 2px dashed rgba(226,58,40,0.45);
  padding: 12px 18px;
  display: inline-block;
  font-size: 15px !important;
}

/* ─── portfolio: filters + contact sheet ─────────────────────── */
.pf-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  padding: 34px 5vw 0;
}
.pf-filters .rc-tab { color: var(--ink); border-color: rgba(23,18,16,0.35); }
.pf-filters .rc-tab:hover { border-color: var(--ink); color: var(--ink); }
.pf-filters .rc-tab.active { background: var(--ink); color: var(--marigold); border-color: var(--ink); }

.sheet { padding: clamp(44px, 6vh, 70px) 5vw clamp(80px, 10vh, 120px); }
/* Masonry gallery — auto-arranges any photo shape, never crops.
   CSS columns balance tall/wide/square photos with zero per-photo config. */
.sheet-grid {
  column-count: 3;
  column-gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.shot {
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(23,18,16,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(23,18,16,0.22); }
.shot img { width: 100%; height: auto; display: block; }   /* natural ratio — no crop */
.shot figcaption { display: none; }                        /* clean, photo-forward */
.shot.hide { display: none; }
.sheet-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.sheet-note a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.sheet-note a:hover { color: var(--red); }

/* ─── reviews: guest book ────────────────────────────────────── */
.guestbook { padding: clamp(50px, 7vh, 80px) 5vw clamp(80px, 10vh, 130px); }
.gb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.gb-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 28px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gb-card:nth-child(odd) { transform: rotate(-0.6deg); }
.gb-card:nth-child(even) { transform: rotate(0.5deg); }
.gb-card:hover { transform: rotate(0) translate(-3px,-3px); box-shadow: 10px 10px 0 var(--marigold); }
.gb-stars { color: var(--marigold); font-size: 19px; letter-spacing: 4px; margin-bottom: 14px; text-shadow: 0 1px 0 var(--ink); }
.gb-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.gb-name { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.gb-type {
  display: inline-block;
  margin-left: 8px;
  background: var(--marigold);
  border: 1.5px solid var(--ink);
  font-size: 10.5px;
  padding: 2px 9px;
  letter-spacing: 0.06em;
}
.gb-card-cta {
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 6px;
}
.gb-card-cta .gb-quote { color: rgba(247,239,222,0.75); font-size: 15.5px; }
.gb-cta-h {
  font-family: var(--display);
  font-variation-settings: var(--soft);
  font-weight: 900;
  font-size: 26px;
}
.gb-card-cta .btn { margin-top: 8px; }

/* subpage responsive */
@media (max-width: 1024px) {
  .sheet-grid { column-count: 2; }
  .gb-grid { grid-template-columns: repeat(2, 1fr); }
  .era-grid, .era-grid-flip { grid-template-columns: 1fr; }
  .era-grid-flip .era-copy { order: 2; }
  .era-grid-flip .era-photos { order: 1; }
}
@media (max-width: 720px) {
  .sheet-grid { column-count: 1; }
  .gb-grid { grid-template-columns: 1fr; }
  .gb-card:nth-child(odd), .gb-card:nth-child(even) { transform: none; }
}

/* ─── Instagram feed items (portfolio page) ─── */
.ig-section { padding-top: 0; }
.ig-shot { position: relative; display: block; }
.ig-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(23,18,16,0);
  opacity: 0; transition: opacity 0.2s ease, background 0.2s ease;
}
.ig-shot:hover .ig-badge { opacity: 1; background: rgba(23,18,16,0.4); }
.ig-badge svg { width: 36px; height: 36px; }
.ig-play {
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(23,18,16,0.65); color: #fff;
  border-radius: 50%; font-size: 11px; padding-left: 2px;
  pointer-events: none;
}