/* ════════════════════════════════════════════════════
   MyMemorySpot.com — Design System v4
   Emotion-first: warm gold, champagne, deep velvet,
   photo-flash white. Every section feels like a
   captured memory moment.
   ════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --cream:    #fffaf2;
  --paper:    #fff8ed;
  --velvet:   #1e1208;
  --brown:    #4f4238;
  --muted:    #7a6a5e;
  --gold:     #c9961a;
  --gold2:    #e8b84b;
  --gold3:    #ffd97d;
  --coral:    #f05a35;
  --coral2:   #ff8a6a;
  --sky:      #6bafc4;
  --rose:     #e8607a;
  --line:     rgba(89,70,52,.13);
  --line2:    rgba(89,70,52,.22);

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, var(--coral), var(--gold2));
  --grad-warm:   linear-gradient(160deg, #fff8ed 0%, #f5dfc4 55%, #dcedf5 100%);
  --grad-velvet: linear-gradient(160deg, #1e1208 0%, #2e1c0e 55%, #1a2535 100%);
  --grad-hero:   linear-gradient(135deg, #fff3db 0%, #ffe8b8 40%, #ffe0c0 70%, #ffd5d8 100%);

  /* Shadows */
  --shadow-s:  0 4px 18px rgba(89,70,52,.10);
  --shadow-m:  0 12px 48px rgba(89,70,52,.16);
  --shadow-l:  0 28px 80px rgba(89,70,52,.22);
  --shadow-xl: 0 40px 120px rgba(89,70,52,.30);
  --glow-gold: 0 0 60px rgba(232,184,75,.45);
  --glow-coral:0 0 60px rgba(240,90,53,.35);

  /* Spacing */
  --max: 1180px;
  --r-s:  12px;
  --r-m:  22px;
  --r-l:  34px;
  --r-xl: 48px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Georgia', serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}


/* ── HEADER / NAV ───────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,242,.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
}

.links {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

.links a:not(.btn) {
  font-size: .88rem;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.links a:not(.btn):hover { color: var(--brown); background: rgba(89,70,52,.07); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  border-radius: var(--r-s);
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.8);
  color: var(--brown);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 10px 32px rgba(240,90,53,.38);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(240,90,53,.50), var(--glow-coral); }

.btn-soft {
  background: rgba(255,255,255,.85);
  border-color: var(--line2);
  color: var(--brown);
  box-shadow: var(--shadow-s);
}
.btn-soft:hover { background: #fff; box-shadow: var(--shadow-m); }

.btn-lg { min-height: 60px; padding: 0 38px; font-size: 1.08rem; }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: .88rem; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1.01;
  letter-spacing: -.055em;
  color: var(--velvet);
  margin-bottom: 20px;
}

h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--velvet);
  margin-bottom: 14px;
}

h3 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: -.02em;
  color: var(--velvet);
  margin-bottom: 10px;
}

.lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 72ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold2);
  border-radius: 2px;
  flex-shrink: 0;
}

.small-disclosure {
  font-size: .72rem;
  color: rgba(89,70,52,.38);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── SECTIONS ───────────────────────────────────── */
section { position: relative; }

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section.alt {
  background: linear-gradient(180deg, var(--paper), #f2e8d8);
}

.section.dark {
  background: var(--grad-velvet);
  color: rgba(255,250,242,.9);
}

.section.dark h1,
.section.dark h2,
.section.dark h3 { color: #fff8ec; }
.section.dark .lead { color: rgba(255,250,242,.72); }
.section.dark .eyebrow { color: var(--gold3); }
.section.dark .eyebrow::before { background: var(--gold2); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line2), transparent);
}

.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
}

/* Bokeh light blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,.32), transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,53,.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 80px 0 88px;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 640px; }

.hero h1 span.hl {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  align-items: flex-start;
}

/* ── PHOTO CARD (tilted image frame) ────────────── */
.photo-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid rgba(255,255,255,.88);
  transform: rotate(1.5deg);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  position: relative;
}

.photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(30,18,8,.38) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: calc(var(--r-xl) - 8px);
}

.photo-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 50px 140px rgba(89,70,52,.34), var(--glow-gold);
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Photo badge overlay */
.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: .84rem;
  font-weight: 900;
  color: var(--brown);
  box-shadow: var(--shadow-m);
}

.photo-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(.7)}
}

/* ── GRID CARDS ─────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), border-color .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,150,26,.38);
  box-shadow: var(--shadow-l), 0 0 40px rgba(232,184,75,.22);
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,.55) 0%, transparent 50%);
}

.card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { margin-bottom: 10px; }
.card-body p {
  font-family: Arial, sans-serif;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

/* ── STAT BLOCKS ────────────────────────────────── */
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-s);
  padding: 32px 24px;
  text-align: center;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
}

.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -.04em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat span {
  font-family: Arial, sans-serif;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── STEPS PANEL ────────────────────────────────── */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-m);
  padding: 36px 36px 32px;
}

.steps { counter-reset: step; }

.step {
  position: relative;
  padding: 24px 24px 24px 80px;
  border-radius: var(--r-m);
  transition: background .2s;
}

.step:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.step:hover { background: rgba(201,150,26,.04); }

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(240,90,53,.35);
}

.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p {
  font-family: Arial, sans-serif;
  font-size: .92rem;
  color: var(--muted);
}

/* ── QUOTE BLOCK ────────────────────────────────── */
.quote {
  background: linear-gradient(135deg, #fff8ed, #fff3e0);
  border: 1px solid rgba(201,150,26,.2);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-m);
}

.quote::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 30px;
  font-family: Georgia, serif;
  font-size: 14rem;
  color: rgba(201,150,26,.12);
  line-height: 1;
  pointer-events: none;
}

.quote blockquote {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.38;
  color: var(--velvet);
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-style: normal;
}

/* ── CTA BAND ───────────────────────────────────── */
.cta-band {
  background: var(--grad-velvet);
  border-radius: var(--r-xl);
  padding: 60px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,.24), transparent 68%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,53,.18), transparent 68%);
  pointer-events: none;
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-band h2 { color: #fff8ec; }
.cta-band .lead { color: rgba(255,250,242,.72); margin: 0 auto 32px; }
.cta-band .eyebrow { color: var(--gold3); }
.cta-band .eyebrow::before { background: var(--gold3); }

/* White button variant for dark backgrounds */
.btn-white {
  background: rgba(255,255,255,.95);
  color: var(--velvet);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
}
.btn-white:hover { background: #fff; box-shadow: 0 16px 44px rgba(0,0,0,.28); }

/* ── FAQ ─────────────────────────────────────────── */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px 26px;
  margin: 12px 0;
  transition: background .2s;
}
.faq details[open] { background: #fffdf8; border-color: rgba(201,150,26,.25); }
.faq summary {
  cursor: pointer;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--velvet);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  font-family: Arial, sans-serif;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}

/* ── FEATURE ROW (icon + text) ───────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-s);
  background: linear-gradient(135deg, rgba(201,150,26,.15), rgba(240,90,53,.12));
  display: grid; place-items: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 1px solid rgba(201,150,26,.18);
}
.feature-row h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-row p {
  font-family: Arial, sans-serif;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MEMORY SPOT HIGHLIGHT BAND ──────────────────── */
.highlight-band {
  background: linear-gradient(135deg, #fff8dc, #fff0d4, #fbe8f0);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,150,26,.2);
}
.highlight-band::after {
  content: '📸';
  position: absolute;
  right: 40px; top: 28px;
  font-size: 5rem;
  opacity: .18;
  pointer-events: none;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--velvet);
  color: rgba(255,250,242,.72);
  padding: 52px 0 80px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer img { height: 48px; filter: brightness(1.2); }

.footer-col h4 {
  font-family: Arial, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold3);
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-family: Arial, sans-serif;
  font-size: .9rem;
  color: rgba(255,250,242,.65);
  line-height: 1.8;
  display: block;
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold3); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,250,242,.12);
}

.disclaimer {
  font-family: Arial, sans-serif;
  font-size: .84rem;
  color: rgba(255,250,242,.45);
  line-height: 1.65;
  max-width: 960px;
}

.legal-links {
  margin-top: 12px;
  font-family: Arial, sans-serif;
  font-size: .86rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255,250,242,.55);
  text-decoration: underline;
  transition: color .2s;
}
.legal-links a:hover { color: var(--gold3); }

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero h1, .hero-text .eyebrow {
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) both;
}
.hero .lead { animation: fadeUp .7s .12s cubic-bezier(.22,1,.36,1) both; }
.hero .actions { animation: fadeUp .7s .22s cubic-bezier(.22,1,.36,1) both; }
.hero .photo-card { animation: fadeIn .9s .18s both; }

/* ── MOBILE NAV ─────────────────────────────────── */
@media (max-width: 820px) {
  .links { display: none; flex-direction: column; align-items: flex-start; width: 100%; padding: 8px 0 12px; gap: 0; border-top: 1px solid var(--line); }
  .links.is-open { display: flex; }
  .links a:not(.btn) { padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; width: 100%; font-size: .95rem; }
  .links .btn { margin-top: 10px; width: 100%; min-height: 50px; }
  .nav-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; gap: 0; padding: 14px 0; }
  .logo { flex: 1; }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 52px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .hero-grid { padding: 44px 0 40px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .photo-card { transform: rotate(0); }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
  .cta-band, .quote, .highlight-band { padding: 36px 24px; }
  .panel { padding: 24px 20px; }
  .step { padding: 20px 20px 20px 72px; }
  .footer-grid { flex-direction: column; gap: 24px; }
  .legal-links { flex-direction: column; gap: 8px; }
  h1 { letter-spacing: -.04em; }
}

@media (max-width: 400px) {
  .logo img { height: 42px; max-width: 170px; }
  h1 { font-size: 2.4rem; }
}

/* ── UTILITY ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.disposable-story{
  background:linear-gradient(180deg,#fffaf2,#fff6e8);
}
.story-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(89,70,52,.16);
  border-radius:30px;
  box-shadow:0 24px 70px rgba(89,70,52,.10);
  padding:36px;
  align-self:center;
}
.story-icon{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:linear-gradient(135deg,#ff7a59,#d4af37);
  color:#fff;
  font-size:38px;
  margin-bottom:20px;
}
.venue-section .card,
.vibes-section .story-card{
  border-color:rgba(212,175,55,.22);
}
.stat strong{
  letter-spacing:-.04em;
}

/* MyMemorySpot visibility + compact framing fix */
.disposable-story{
  background:linear-gradient(180deg,#fffaf2,#fff6e8);
}
.conversion-grid{
  align-items:center;
}
.story-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(89,70,52,.16);
  border-radius:26px;
  box-shadow:0 18px 48px rgba(89,70,52,.10);
  padding:28px;
}
.compact-card{
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
.story-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:linear-gradient(135deg,#ff7a59,#d4af37);
  color:#fff;
  font-size:30px;
  margin-bottom:16px;
}
.center-actions{
  justify-content:center;
}
.compact-grid{
  max-width:1060px;
  margin-left:auto;
  margin-right:auto;
}
.compact-event-card .card-body{
  padding:24px;
}
.photo-card.compact-photo{
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
.photo-card.compact-photo img{
  max-height:360px;
  object-fit:cover;
}
.card img{
  height:190px;
  object-fit:cover;
}
.hero .photo-card img{
  max-height:520px;
  object-fit:cover;
}
@media(max-width:980px){
  .compact-card,.photo-card.compact-photo{
    max-width:100%;
  }
  .hero .photo-card img{
    max-height:none;
  }
}
