/* ─────────────────────────────────────────────────────────────
   Lions Club of Poona Ganeshkhind — Public Website
   Elevated design system · Heritage-institution aesthetic
   Navy + Gold · Playfair Display + Inter
   ───────────────────────────────────────────────────────────── */

:root {
  --navy: #15315C;
  --navy-2: #1B3A6B;
  --navy-dark: #0C1D38;
  --navy-deep: #081429;
  --navy-light: #2D5A9E;
  --gold: #C9A030;
  --gold-2: #D8B24A;
  --gold-soft: #E7CA7A;
  --gold-light: #FBF1D4;
  --gold-dark: #9C7618;
  --white: #FFFFFF;
  --ivory: #FBFAF6;
  --ivory-2: #F4F1E9;
  --cream-line: #ECE6D8;
  --gray-100: #F1F0EC;
  --gray-200: #E4E1D8;
  --gray-400: #9A968B;
  --gray-600: #58564E;
  --gray-700: #3A3833;
  --ink: #1d1c19;

  --c-health: #2D5A9E;
  --c-edu: #1F9D6B;
  --c-env: #2E8B57;
  --c-hunger: #C9A030;
  --c-purple: #7C5CD0;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(12,29,56,0.04), 0 6px 20px rgba(12,29,56,0.06);
  --shadow-md: 0 14px 40px -14px rgba(12,29,56,0.22);
  --shadow-lg: 0 36px 80px -28px rgba(12,29,56,0.45);
  --shadow-gold: 0 14px 34px -12px rgba(201,160,48,0.5);

  --maxw: 1240px;
  --gutter: clamp(18px, 5vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--gray-700);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); color: var(--navy); line-height: 1.14; font-weight: 700; }
h3 { font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
svg { display: block; }

/* ── Layout helpers ─────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(68px, 9vw, 116px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.center { text-align: center; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--ivory-2); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

/* subtle paper texture overlay for light sections */
.bg-cream, .bg-ivory { position: relative; }

/* ── Eyebrow / kicker with flanking rules ───────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dark);
}
.kicker::before, .kicker::after { content: ""; width: 30px; height: 1px; background: currentColor; opacity: 0.55; }
.kicker--start::before { display: none; }
.kicker--light { color: var(--gold-2); }
.kicker--solo { gap: 0; }
.kicker--solo::before, .kicker--solo::after { display: none; }

/* legacy badge (kept for compatibility) */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; line-height: 1.3;
  color: var(--gold-dark); background: rgba(201,160,48,0.10);
  border: 1px solid rgba(201,160,48,0.34);
}
.badge--light { color: var(--gold-2); background: rgba(201,160,48,0.12); border-color: rgba(201,160,48,0.34); }
.badge--health { color: var(--c-health); background: rgba(45,90,158,0.10); border-color: rgba(45,90,158,0.30); }
.badge--edu { color: var(--c-edu); background: rgba(31,157,107,0.10); border-color: rgba(31,157,107,0.30); }

/* ── Headings ───────────────────────────────────────────────── */
.display { font-size: clamp(40px, 6.6vw, 74px); line-height: 1.02; font-weight: 700; letter-spacing: -0.015em; }
.h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.01em; }
.h3 { font-size: clamp(19px, 2vw, 24px); font-weight: 600; }
.lede { font-size: clamp(16px, 1.4vw, 18.5px); color: var(--gray-600); line-height: 1.75; max-width: 60ch; }
.measure { max-width: 62ch; }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-navy { color: var(--navy); }

/* ── Ornaments ──────────────────────────────────────────────── */
.ornament { display: flex; align-items: center; gap: 12px; }
.ornament--center { justify-content: center; }
.ornament__line { height: 1px; width: 54px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament__line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament__dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.ornament--light .ornament__dot { background: var(--gold-2); }

.u-bar { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); border-radius: 2px; margin-top: 22px; }
.u-bar--center { margin-inline: auto; }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 60px); }
.sec-head .h2 { margin-top: 18px; }
.sec-head p { margin-top: 22px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center p { margin-inline: auto; }
.sec-head--center .ornament { justify-content: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: 4px; border: none; cursor: pointer;
  transition: transform .14s ease, box-shadow .22s ease, background .2s, color .2s, opacity .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 12px 28px -14px rgba(12,29,56,0.8); }
.btn--navy:hover { background: var(--navy-dark); box-shadow: 0 16px 34px -14px rgba(12,29,56,0.9); transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy-dark); font-weight: 700; box-shadow: var(--shadow-gold); }
.btn--gold:hover { box-shadow: 0 18px 40px -12px rgba(201,160,48,0.6); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(231,202,122,0.5); }
.btn--outline-light:hover { background: rgba(231,202,122,0.12); box-shadow: inset 0 0 0 1px rgba(231,202,122,0.9); }
.btn--outline-navy { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1px var(--gray-200); }
.btn--outline-navy:hover { box-shadow: inset 0 0 0 1px var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 15.5px; }
.btn--block { width: 100%; }
.tlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy); transition: gap .15s, color .15s; }
.tlink svg { width: 16px; height: 16px; transition: transform .15s; }
.tlink:hover { gap: 11px; color: var(--gold-dark); }
.tlink--gold { color: var(--gold-2); }
.tlink--gold:hover { color: var(--gold-soft); }

/* ── Icon system (thin-line SVG in framed medallion) ────────── */
.ic { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.medallion {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, #fff, var(--ivory-2));
  box-shadow: inset 0 0 0 1px var(--cream-line), 0 6px 18px -8px rgba(12,29,56,0.18);
  color: var(--gold-dark);
}
.medallion .ic { width: 26px; height: 26px; }
.medallion--sm { width: 46px; height: 46px; }
.medallion--sm .ic { width: 20px; height: 20px; }
.medallion--navy { background: linear-gradient(140deg, var(--navy-2), var(--navy-dark)); color: var(--gold-2); box-shadow: inset 0 0 0 1px rgba(231,202,122,0.25); }
.medallion--ring { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(201,160,48,0.5); color: var(--gold-dark); }

/* ── Cards ──────────────────────────────────────────────────── */
.card { background: #fff; border: 1px solid var(--cream-line); border-radius: 10px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; }
.card--hover { overflow: hidden; }
.card--hover::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gray-200); }
.card--hover:hover::before { transform: scaleX(1); }
.card--glass { background: rgba(255,255,255,0.05); border: 1px solid rgba(231,202,122,0.2); border-radius: 10px; backdrop-filter: blur(4px); }
.card--gold { background: linear-gradient(160deg, #fff, var(--gold-light)); border: 1px solid rgba(201,160,48,0.45); border-radius: 10px; }
.card--navy { background: linear-gradient(155deg, var(--navy-2), var(--navy-dark)); border: none; border-radius: 10px; box-shadow: var(--shadow-md); }
.pad { padding: 26px; }
.pad-lg { padding: clamp(26px, 3.5vw, 46px); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.two-col--top { align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ── Avatar ─────────────────────────────────────────────────── */
.avatar { border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; color: #fff; flex-shrink: 0; position: relative; }
.avatar--ring { box-shadow: 0 0 0 1px var(--cream-line), 0 0 0 5px #fff, 0 0 0 6px rgba(201,160,48,0.4); }

/* ── Pills ──────────────────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; line-height: 1.3; }
.pill--green { background: rgba(31,157,107,0.12); color: #167a52; }

/* ── Image / cover placeholder (duotone navy + crest motif) ── */
.ph { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(150deg, var(--navy-2), var(--navy-dark)); color: rgba(231,202,122,0.9);
  box-shadow: inset 0 0 0 1px rgba(231,202,122,0.18); border-radius: 10px; }
.ph::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(231,202,122,0.06) 0 1px, transparent 1px 16px); pointer-events: none; }
.ph__crest { width: 64px; height: 64px; opacity: 0.6; filter: brightness(1.4); }
.ph .ic { width: 34px; height: 34px; opacity: 0.7; }
.ph__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(231,202,122,0.7); font-weight: 600; position: relative; }
.ph__frame { position: absolute; inset: 12px; border: 1px solid rgba(231,202,122,0.3); border-radius: 6px; pointer-events: none; }
.ph--gold { background: linear-gradient(150deg, var(--gold-2), var(--gold-dark)); color: rgba(255,255,255,0.95); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); }
.ph--gold .ph__label, .ph--gold .ph__frame { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }

/* ── Stat / counter ─────────────────────────────────────────── */
.stat__num { font-family: var(--serif); font-weight: 700; color: var(--gold-2); font-size: clamp(36px, 4.6vw, 54px); line-height: 1; letter-spacing: -0.01em; }
.stat__label { color: rgba(255,255,255,0.78); font-size: 13.5px; letter-spacing: 0.06em; margin-top: 14px; }
.stat__rule { width: 30px; height: 2px; background: var(--gold); margin: 16px auto 0; opacity: 0.6; }

/* big decorative section numeral */
.bignum { font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: 0.2em; color: var(--gold-dark); }

/* ── Header ─────────────────────────────────────────────────── */
.header { position: sticky; top: 0; z-index: 100; background: var(--navy-dark); transition: box-shadow .25s, background .25s; }
.header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-soft), var(--gold), var(--gold-dark)); opacity: 0.9; }
.header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand__logo { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; background: #fff; padding: 3px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(231,202,122,0.4); }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 16.5px; font-weight: 700; color: #fff; letter-spacing: 0.01em; white-space: nowrap; }
.brand__name b { color: var(--gold-2); font-weight: 700; }
.brand__sub { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(231,202,122,0.7); white-space: nowrap; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.82); padding: 9px 13px; border-radius: 5px; transition: color .15s; white-space: nowrap; position: relative; }
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav a:hover { color: var(--gold-2); }
.nav a:hover::after { transform: scaleX(0.7); }
.nav a.active { color: var(--gold-2); font-weight: 600; }
.nav a.active::after { transform: scaleX(0.7); }
.header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid rgba(231,202,122,0.3); border-radius: 6px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; stroke: var(--gold-2); }

.mnav { display: none; }
@media (max-width: 1120px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: flex; }
  .mnav { display: block; background: var(--navy-dark); overflow: hidden; max-height: 0; transition: max-height .3s ease; position: relative; z-index: 99; }
  .mnav.open { max-height: 640px; }
  .mnav__inner { padding: 10px var(--gutter) 24px; display: flex; flex-direction: column; gap: 2px; }
  .mnav a { padding: 14px 6px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(231,202,122,0.12); }
  .mnav a.active { color: var(--gold-2); }
  .mnav .btn { margin-top: 18px; }
}

/* ── Page hero (inner pages) ────────────────────────────────── */
.phero { background: radial-gradient(120% 130% at 85% -20%, #244a82 0%, transparent 52%), linear-gradient(150deg, var(--navy-dark), var(--navy-deep)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.phero__crest { position: absolute; right: -3%; top: 50%; transform: translateY(-50%); width: min(360px, 40vw); opacity: 0.05; pointer-events: none; }
.phero__inner { position: relative; padding-block: clamp(60px, 9vw, 104px); max-width: 820px; margin-inline: auto; }
.phero h1 { color: #fff; font-size: clamp(34px, 5.2vw, 58px); margin-top: 24px; letter-spacing: -0.01em; }
.phero p { color: rgba(255,255,255,0.74); margin-top: 22px; font-size: clamp(16px,1.5vw,19px); max-width: 60ch; margin-inline: auto; line-height: 1.7; }
.diag-pattern { background-image: repeating-linear-gradient(135deg, rgba(231,202,122,0.5) 0 1px, transparent 1px 24px); }

/* ── Section divider ornament ───────────────────────────────── */
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; padding-block: clamp(28px, 4vw, 44px); }
.divider__line { height: 1px; width: clamp(40px, 12vw, 130px); background: linear-gradient(90deg, transparent, var(--gray-200)); }
.divider__line:last-child { background: linear-gradient(90deg, var(--gray-200), transparent); }
.divider__mark { color: var(--gold); font-size: 16px; transform: rotate(45deg); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.68); position: relative; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); opacity: 0.7; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); padding-block: clamp(56px, 7vw, 84px); }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer__brand img { height: 60px; width: 60px; border-radius: 50%; background: #fff; padding: 3px; box-shadow: 0 0 0 1px rgba(231,202,122,0.4); }
.footer__brand-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.25; }
.footer__brand-name b { color: var(--gold-2); }
.footer p { font-size: 14.5px; line-height: 1.7; max-width: 40ch; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--gold-soft); margin-top: 16px; font-size: 15px; }
.footer__charter { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 18px; }
.footer__serve { font-family: var(--serif); font-size: 16px; letter-spacing: 0.34em; color: var(--gold-2); margin-top: 6px; font-weight: 700; }
.footer h4 { color: #fff; font-size: 12px; font-family: var(--sans); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer__col a { display: block; font-size: 14.5px; color: rgba(255,255,255,0.68); padding: 6px 0; transition: color .15s, padding-left .15s; }
.footer__col a:hover { color: var(--gold-2); padding-left: 4px; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(231,202,122,0.1); color: var(--gold-2); display: flex; align-items: center; justify-content: center; transition: background .18s, color .18s; }
.socials a:hover { background: var(--gold); color: var(--navy-dark); }
.socials svg { width: 17px; height: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); max-width: none; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ── Reveal animation ───────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* ── Forms ──────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.field label .req { color: #C0392B; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--gray-200); border-radius: 6px; background: #fff;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,48,0.16); }
.field textarea { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.tag-toggle { display: inline-flex; align-items: center; font-size: 13.5px; font-weight: 600; padding: 10px 17px; border-radius: 999px; cursor: pointer; background: var(--ivory-2); color: var(--gray-600); border: 1px solid var(--gray-200); transition: background .15s, color .15s, border-color .15s; user-select: none; }
.tag-toggle:hover { border-color: var(--gold); }
.tag-toggle.on { background: var(--navy); color: #fff; border-color: var(--navy); }

.hidden { display: none !important; }

/* ── Image slots (user-fillable photos) ─────────────────────── */
image-slot { display: block; }
image-slot::part(frame) { background: var(--ivory-2); border-radius: inherit; }
image-slot::part(empty) { color: var(--gray-600); }
image-slot[data-tone="dark"]::part(frame) { background: rgba(255,255,255,0.06); }
image-slot[data-tone="dark"]::part(empty) { color: rgba(231,202,122,0.85); }
.photo-frame { position: relative; border-radius: 12px; box-shadow: 0 0 0 1px rgba(231,202,122,0.45), var(--shadow-md); overflow: hidden; }
.photo-frame--inset { box-shadow: inset 0 0 0 1px var(--cream-line), var(--shadow-md); }
.photo-cap { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-400); font-weight: 600; margin-top: 12px; }
