/* Gino's Restaurant — Sicilian old-world dining room, in CSS */

:root {
  --charcoal: #14100d;
  --charcoal-2: #1c1613;
  --wine: #4a1220;
  --wine-deep: #2c0a12;
  --brass: #c9a66b;
  --brass-light: #e3c994;
  --amber: #e8a868;
  --cream: #ede6dc;
  --cream-dim: #b8afa2;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Film-grain laid over the whole site, ties together photos shot at different times/qualities */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'%3E%3C/rect%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

/* Wine-duotone + grain treatment, unifies photos of mismatched quality/source into one mood */
.photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,166,107,0.35);
  padding: 10px;
}
.photo img {
  filter: grayscale(25%) sepia(18%) hue-rotate(-10deg) saturate(85%) brightness(0.88) contrast(1.12);
}
.photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: linear-gradient(155deg, rgba(74,18,32,0.32), rgba(20,16,13,0.4) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo video {
  width: 100%;
  display: block;
  filter: grayscale(25%) sepia(18%) hue-rotate(-10deg) saturate(85%) brightness(0.88) contrast(1.12);
}
/* Portrait video hero: kept narrow and to its natural 9:16-ish aspect
   rather than stretched into the wide .photo slot other pages use, and
   the split ratio shifted so it doesn't dominate the text beside it. */
.split-video { grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 56px; }
.photo-video { max-width: 320px; margin: 0 auto; }
@media (max-width: 860px) {
  .split-video { grid-template-columns: 1fr; }
  .photo-video { max-width: 260px; }
}

.photo .photo-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
}

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

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1560px; margin: 0 auto; padding: 0 48px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

/* Brass divider motif, used throughout instead of any collage/scrapbook treatment */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 220px;
  margin: 22px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.divider .diamond {
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: rotate(45deg);
  flex: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(20,16,13,0.85), transparent);
  transition: background 0.35s ease, padding 0.35s ease;
}
.site-header.solid {
  background: rgba(20, 16, 13, 0.96);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,166,107,0.18);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.logo span { color: var(--brass); }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brass-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--cream); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
  padding: 0 6vw 9vh;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) sepia(15%) hue-rotate(-8deg) saturate(90%) contrast(1.08) brightness(0.95);
  transform: scale(1.04);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20,16,13,0.85) 0%, rgba(20,16,13,0.3) 45%, transparent 70%),
    linear-gradient(to left, rgba(20,16,13,0.8) 0%, rgba(20,16,13,0.35) 38%, transparent 68%),
    linear-gradient(15deg, rgba(74,18,32,0.35), transparent 55%);
  animation: glow 7s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}
.hero-content { position: relative; z-index: 2; padding: 0 8px; max-width: 560px; }
.hero .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}
.hero p.lede {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 460px;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-solid { background: var(--brass); color: var(--charcoal); }
.btn-solid:hover { background: var(--brass-light); }
.btn-outline { color: var(--cream); }
.btn-outline:hover { background: rgba(201,166,107,0.12); }

/* Sections */
section { padding: 110px 0; }
.section-alt { background: var(--charcoal-2); }
.section-head { max-width: 620px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 10px 0 0; }

/* Story / two-column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.split p { color: var(--cream-dim); margin-bottom: 16px; }

/* Oversized ghost numeral, sits behind a split section's text column */
.ghost-numeral {
  position: absolute;
  top: -60px;
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 300;
  color: rgba(201,166,107,0.06);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.split > div { position: relative; z-index: 1; }

/* Full-bleed editorial pull-quote beat */
.pull-quote {
  padding: 130px 0;
  text-align: center;
  background: var(--wine-deep);
  position: relative;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  max-width: 780px;
  margin: 0 auto;
  color: var(--brass-light);
  line-height: 1.4;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 28px;
}

/* Feature row (wine cellar / jazz night teasers) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201,166,107,0.18);
}
.feature-card {
  background: var(--charcoal);
  padding: 60px;
  position: relative;
}
.feature-card h3 { font-size: 1.8rem; margin: 10px 0 14px; }
.feature-card p { color: var(--cream-dim); margin-bottom: 22px; }

/* Awards, styled as brass medallions rather than plain cards */
.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  text-align: center;
}
.award {
  flex: 1 1 180px;
  max-width: 210px;
}
.award .medallion {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  outline: 1px solid rgba(201,166,107,0.35);
  outline-offset: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brass-light);
}
.award .display { font-size: 1.05rem; color: var(--brass-light); }
.award p { color: var(--cream-dim); font-size: 0.85rem; margin-top: 8px; }

/* Menu teaser list */
.dish-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.dish-list li {
  list-style: none;
  color: var(--cream-dim);
  border-bottom: 1px dotted rgba(184,175,162,0.25);
  padding-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* Menu page — no prices are published anywhere by the restaurant, so this
   is set as a read menu card, not a price-leader table with nothing to lead to.
   Multi-column flow (not a row-locked grid) so an 11-item category and a
   3-item category don't force ragged whitespace on whatever sits beside them. */
.menu-grid {
  column-count: 3;
  column-gap: 96px;
}
.menu-category {
  text-align: center;
  break-inside: avoid;
  margin-bottom: 68px;
}
.menu-category h3 {
  font-size: 1.5rem;
  color: var(--brass-light);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.menu-category h3 .num {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(201,166,107,0.5);
}
.menu-category .divider { margin: 16px auto 0; }
.menu-category ul { list-style: none; margin-top: 22px; }
.menu-category li {
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--cream-dim);
  padding: 12px 0;
}
.menu-note {
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,166,107,0.25);
  text-align: center;
}
.menu-note p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1rem;
}
.menu-note p + p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* Info blocks (hours/contact/private dining/careers) */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
}
.info-block { margin-bottom: 34px; }
.info-block h3 {
  color: var(--brass-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.info-block p, .info-block a { color: var(--cream-dim); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; color: var(--cream-dim); border-bottom: 1px dotted rgba(184,175,162,0.2); }
.hours-table td:last-child { text-align: right; color: var(--cream); }

/* Simple form */
.form-grid { display: grid; gap: 18px; }
.form-grid label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid rgba(201,166,107,0.3);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: none;
  border-color: var(--brass);
}
.form-grid input[type="date"] { color-scheme: dark; }
.form-grid textarea { min-height: 96px; resize: vertical; }
.form-grid .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.9rem; min-height: 1.4em; color: var(--cream-dim); }
.form-status.error { color: #e8a08a; }
.form-done { border: 1px solid rgba(201,166,107,0.35); padding: 28px; background: var(--charcoal-2); }
.form-done h3 { margin-bottom: 10px; }

/* Private dining journey: facts strip + "what happens next" steps.
   Steps reuses the .award medallion circle motif (numerals instead of
   roman numerals) so the page still reads as the same design system. */
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(201,166,107,0.25);
}
.fact-row > div {
  padding: 26px 24px;
  text-align: center;
  border-left: 1px solid rgba(201,166,107,0.25);
}
.fact-row > div:first-child { border-left: none; }
.fact-row .display { font-size: 1.3rem; color: var(--brass-light); }
.fact-row p { color: var(--cream-dim); font-size: 0.85rem; margin-top: 6px; }

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.step { flex: 1 1 210px; max-width: 250px; text-align: center; }
.step .step-num {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  outline: 1px solid rgba(201,166,107,0.35);
  outline-offset: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brass-light);
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--cream-dim); font-size: 0.85rem; }

/* Compact steps used inside the post-submit confirmation panel */
.steps-mini { margin: 18px 0 4px; }
.steps-mini li {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 8px 0;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.steps-mini .n {
  flex: none;
  width: 22px; height: 22px;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

@media (max-width: 860px) {
  .fact-row { grid-template-columns: 1fr; }
  .fact-row > div { border-left: none; border-top: 1px solid rgba(201,166,107,0.25); }
  .fact-row > div:first-child { border-top: none; }
}

/* Chat widget: brass-ringed launcher + a squared panel, matching the
   site's flat, no-rounded-corner brand (the launcher circle is the one
   exception, echoing the .step-num / .award medallion motif). Anchored
   bottom-LEFT on purpose: the home hero's own CTAs are anchored
   bottom-right (.hero { justify-content: flex-end }), so a right-anchored
   widget would collide with "Reserve" / "View the Menu" on every load. */
.chat-launcher-wrap {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-launcher-wrap[hidden] { display: none; }
.chat-launcher-label {
  background: var(--wine-deep);
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.chat-launcher {
  position: relative;
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brass);
  border: 1px solid var(--brass-light);
  outline: 1px solid rgba(201,166,107,0.3);
  outline-offset: 3px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: background 0.25s ease;
  animation: chat-pulse 2.8s ease-in-out infinite;
}
.chat-launcher:hover { background: var(--brass-light); }
.chat-launcher svg { width: 24px; height: 24px; }
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 0 rgba(201,166,107,0.5); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 10px rgba(201,166,107,0); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-launcher { animation: none; }
}

@media (max-width: 480px) {
  .chat-launcher-label { display: none; }
}

.chat-panel {
  position: fixed;
  left: 24px;
  bottom: 94px;
  z-index: 200;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: min(560px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: var(--wine-deep);
  border: 1.5px solid var(--brass);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.chat-panel[hidden] { display: none; }
.chat-head {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(201,166,107,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-head .display { font-style: italic; font-size: 1.15rem; color: var(--brass-light); }
.chat-head p { font-size: 0.76rem; color: var(--cream-dim); margin-top: 2px; }
.chat-close {
  background: none; border: none; color: var(--cream-dim); cursor: pointer;
  font-size: 1.1rem; line-height: 1; padding: 4px;
}
.chat-close:hover { color: var(--brass-light); }
.chat-body { flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 88%; font-size: 0.88rem; line-height: 1.5; padding: 10px 13px; }
.chat-msg.bot { align-self: flex-start; background: var(--charcoal); color: var(--cream); border: 1px solid rgba(201,166,107,0.2); }
.chat-msg.user { align-self: flex-end; background: rgba(201,166,107,0.16); color: var(--cream); }
.chat-msg.bot.pending { color: var(--cream-dim); font-style: italic; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; }
.chat-chips[hidden] { display: none; }
.chat-chip {
  font-size: 0.74rem; letter-spacing: 0.04em;
  border: 1px solid rgba(201,166,107,0.4); color: var(--cream-dim);
  background: none; padding: 6px 12px; cursor: pointer;
}
.chat-chip:hover { border-color: var(--brass); color: var(--brass-light); }
.chat-credit { text-align: center; padding: 0 18px 12px; font-size: 0.72rem; letter-spacing: 0.06em; }
.chat-credit a { color: var(--cream-dim); text-decoration: none; }
.chat-credit a:hover { color: var(--brass-light); text-decoration: underline; }
.chat-form { display: flex; gap: 8px; padding: 14px 18px; border-top: 1px solid rgba(201,166,107,0.25); }
.chat-form input {
  flex: 1; background: var(--charcoal); border: 1px solid rgba(201,166,107,0.3);
  color: var(--cream); padding: 10px 12px; font-family: var(--font-body); font-size: 0.88rem;
}
.chat-form input:focus { outline: none; border-color: var(--brass); }
.chat-form button {
  flex: none; background: var(--brass); color: var(--charcoal); border: none;
  padding: 0 16px; font-size: 0.8rem; letter-spacing: 0.06em; cursor: pointer;
}
.chat-form button:hover { background: var(--brass-light); }
.chat-form button:disabled { opacity: 0.5; cursor: default; }

@media (max-width: 480px) {
  .chat-panel { right: 16px; left: 16px; width: auto; bottom: 86px; }
  .chat-launcher-wrap { left: 16px; bottom: 16px; }
}

/* Footer */
footer {
  background: var(--wine-deep);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(201,166,107,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-grid p, .footer-grid a { color: var(--cream-dim); display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(237,230,220,0.08);
  color: var(--cream-dim);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-credit { flex-basis: 100%; text-align: center; margin-top: 4px; }
.footer-credit a { color: var(--cream-dim); text-decoration: none; border-bottom: 1px solid rgba(237,230,220,0.25); }
.footer-credit a:hover { color: var(--brass-light); border-bottom-color: var(--brass-light); }

@media (max-width: 1180px) {
  .menu-grid { column-count: 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 16, 13, 0.98);
    border-top: 1px solid rgba(201,166,107,0.18);
    border-bottom: 1px solid rgba(201,166,107,0.18);
  }
  .nav-links.open a { display: block; padding: 16px 32px; }
  .split, .info-grid, .feature-row, .footer-grid { grid-template-columns: 1fr; }
  .menu-grid { column-count: 1; }
  .dish-list { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero { justify-content: center; text-align: center; padding: 0 24px 7vh; }
  .hero-content { max-width: 100%; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}


/* Family photos: true color, no duotone, so the people read as themselves */
.family-band { padding-bottom: 20px; }
.family-photo {
  margin: 0 auto;
  max-width: 1100px;
  padding: 12px;
  background: var(--charcoal-2);
  border: 1px solid rgba(201,166,107,0.4);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.family-photo img { width: 100%; height: auto; display: block; }
.family-photo figcaption {
  text-align: center;
  padding: 16px 0 6px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.family-photo-sm { max-width: 520px; }
