/* Flatlyne Entertainment / DJ Taye
   Public one-page event DJ website.
   Mobile-first. Lightweight. GitHub Pages ready.
*/

:root {
  --bg: #050505;
  --bg-2: #0d0d0d;
  --surface: #151515;
  --surface-2: #202020;
  --text: #ffffff;
  --muted: #c9c9c9;
  --soft: #f4f0e8;
  --dark-text: #121212;
  --red: #ff1e2d;
  --red-dark: #b80f19;
  --yellow: #ffe938;
  --orange: #ff8a00;
  --border: rgba(255,255,255,0.14);
  --shadow: 0 26px 80px rgba(0,0,0,0.42);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1120px;
  --header-height: 82px;
  --heading: "Oswald", Impact, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 9999;
  background: var(--yellow); color: #000; padding: 10px 14px;
  border-radius: 999px; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(3,3,3,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav { min-height: var(--header-height); display:flex; align-items:center; justify-content:space-between; gap:22px; }
.logo-shell, .footer-logo-shell {
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.logo-shell img { width: 190px; max-height: 48px; object-fit: contain; }
.footer-logo-shell img { width: 205px; max-height: 54px; object-fit: contain; }

.site-menu { display:flex; align-items:center; gap: 26px; color: var(--muted); font-size:.94rem; font-weight:800; }
.site-menu a { transition: color .2s ease, transform .2s ease; }
.site-menu a:hover, .site-menu a:focus-visible { color: var(--text); transform: translateY(-1px); }

.nav-cta, .btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 50px; padding: 0 23px; border-radius:999px;
  font-weight:900; letter-spacing:.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color:#fff !important;
  box-shadow: 0 14px 36px rgba(255,30,45,.32);
}
.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.07);
  color:#fff;
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(255,30,45,.34); }

.menu-toggle {
  display:none; width:46px; height:46px; border:1px solid var(--border);
  border-radius:999px; background: transparent; color: white; cursor:pointer;
}
.menu-toggle span:not(.sr-only) { display:block; width:18px; height:2px; margin:4px auto; background:white; border-radius:999px; }

.hero {
  min-height: calc(100vh - var(--header-height));
  display:grid; align-items:center;
  overflow:hidden;
  padding: 56px 0 76px;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(900px 500px at 18% 0%, rgba(255,30,45,.22), transparent 58%),
    radial-gradient(700px 480px at 92% 18%, rgba(255,233,56,.14), transparent 60%),
    url("../assets/nightlife.jpg") center/cover no-repeat;
  transform: scale(1.08);
  filter: blur(20px) saturate(1.12) contrast(1.08);
  opacity:.55;
}
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.58) 48%, rgba(0,0,0,.86)),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.72));
}
.hero-grid {
  position:relative; z-index:2;
  display:grid; grid-template-columns: minmax(0,.9fr) minmax(320px,.62fr);
  gap: 56px; align-items:center;
}
.eyebrow {
  margin:0 0 14px; color: var(--yellow); font-weight:900;
  text-transform:uppercase; letter-spacing:.15em; font-size:.78rem;
}
h1,h2,h3 { margin:0; line-height:1.02; }
h1,h2 { font-family: var(--heading); text-transform: uppercase; letter-spacing:-.035em; }
h1 { max-width: 780px; font-size: clamp(3.7rem, 8vw, 7.2rem); text-wrap: balance; }
h2 { font-size: clamp(2.45rem, 5.8vw, 5rem); text-wrap: balance; }
h3 { font-size:1.15rem; }
.hero-lede, .section-heading p, .split p, .booking-grid p, .about-copy p {
  color: var(--muted); font-size: 1.08rem; max-width: 680px;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.trust-strip { margin-top:30px; display:flex; gap:10px; flex-wrap:wrap; }
.trust-strip span {
  border:1px solid var(--border); border-radius:999px;
  padding:8px 12px; color: var(--muted); font-size:.85rem;
  background:rgba(255,255,255,.06);
}

.hero-media {
  justify-self:center;
  width:min(100%, 420px);
  position:relative;
}
.hero-media::before {
  content:""; position:absolute; inset: -14px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,30,45,.6), rgba(255,233,56,.18), transparent 60%);
  filter: blur(16px); opacity:.72;
  animation: pulseGlow 4.2s ease-in-out infinite;
}
.canva-frame {
  position:relative; z-index:1; width:100%; height:0;
  padding-top:177.7778%;
  overflow:hidden; border-radius:22px;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.2);
}
.canva-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:none; margin:0; padding:0; }

.section-muted {
  background:
    radial-gradient(circle at top right, rgba(255,30,45,.10), transparent 34%),
    var(--soft);
  color: var(--dark-text);
}
.section-muted .section-heading p,
.section-muted .about-copy p,
.section-muted .split p { color:#484848; }

.section-dark {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,233,56,.13), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(255,30,45,.18), transparent 26%),
    var(--bg-2);
}

.section-heading { max-width: 790px; margin-bottom: 40px; }
.event-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.card {
  min-height:230px; padding:28px; border-radius: var(--radius-md);
  background:#fff; color: var(--dark-text);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  transform: translateZ(0);
}
.card h3 { color: var(--red); font-size:1.35rem; }
.card p { color:#4d4d4d; }

.split, .booking-grid, .about-grid {
  display:grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items:start;
}
.text-link {
  display:inline-flex; margin-top:20px; color: var(--yellow);
  font-weight:900; border-bottom:2px solid currentColor;
}
.benefit-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:18px; }
.benefit {
  padding:26px; border-radius: var(--radius-md);
  background: var(--surface); border:1px solid var(--border);
}
.benefit span { display:inline-flex; margin-bottom:18px; color:var(--yellow); font-weight:900; }
.benefit p { color: var(--muted); }

.proof-grid { display:grid; grid-template-columns: 1.3fr .85fr .85fr; gap:18px; align-items:stretch; }
.proof-card {
  margin:0; min-height: 400px; border-radius: var(--radius-lg);
  overflow:hidden; border:1px solid var(--border);
  background: var(--surface); position:relative; box-shadow: var(--shadow);
}
.proof-card img { width:100%; height:100%; object-fit:cover; }
.proof-feature { min-height: 520px; }
.proof-card figcaption {
  position:absolute; left:16px; right:16px; bottom:16px;
  padding:12px 14px; border-radius:999px;
  color:#fff; font-weight:900; font-size:.9rem;
  background: rgba(0,0,0,.62); backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.16);
}

.about-art {
  min-height: 560px; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
}
.about-art img { width:100%; height:100%; object-fit:cover; }
.quote { padding-left:18px; border-left:5px solid var(--red); font-weight:900; color:#111 !important; }

.process-panel {
  display:grid; grid-template-columns:.85fr 1.15fr; gap:36px;
  padding:38px; border-radius:var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,30,45,.18), rgba(255,138,0,.08)), var(--surface);
  border:1px solid var(--border);
}
.process-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.process-cards div {
  padding:22px; border-radius:var(--radius-md);
  background:rgba(255,255,255,.06); border:1px solid var(--border);
}
.process-cards strong {
  display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center;
  border-radius:999px; background:var(--yellow); color:#000;
}
.process-cards p { color:var(--muted); }

.faq-wrap { max-width: 880px; }
.accordion { display:grid; gap:12px; }
.accordion-item {
  border:1px solid var(--border); border-radius: var(--radius-md);
  background: var(--surface); overflow:hidden;
}
.accordion-trigger {
  width:100%; background:transparent; color:white; border:0; padding:22px;
  display:flex; justify-content:space-between; gap:16px; text-align:left;
  cursor:pointer; font-weight:900;
}
.accordion-trigger span { color:var(--yellow); font-size:1.3rem; }
.accordion-panel { display:none; padding:0 22px 22px; color:var(--muted); }
.accordion-item.is-open .accordion-panel { display:block; }

.booking-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,233,56,.11), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(255,30,45,.24), transparent 28%),
    var(--bg-2);
}
.contact-actions { display:grid; gap:10px; margin-top:24px; }
.contact-actions a { color:var(--yellow); font-weight:900; }
.social-row { display:flex; gap:12px; margin-top:26px; }
.social-row a {
  width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px; background:rgba(255,255,255,.08); border:1px solid var(--border);
  transition: transform .2s ease, background .2s ease;
}
.social-row a:hover { transform: translateY(-2px); background:rgba(255,255,255,.14); }
.social-row svg { width:24px; height:24px; fill:#fff; }

.booking-form {
  padding:30px; border-radius: var(--radius-lg);
  background:#fff; color:var(--dark-text);
  box-shadow: var(--shadow);
}
.booking-form h3 { font-size:1.35rem; margin-bottom:18px; }
.booking-form label {
  display:grid; gap:7px; font-weight:800; font-size:.92rem;
  margin-bottom:14px;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width:100%; border:1px solid rgba(0,0,0,.16); border-radius:14px;
  padding:12px 13px; background:#fbfbfb; color:#111;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline:3px solid rgba(255,30,45,.18); border-color:var(--red);
}
.booking-form .btn { width:100%; border:0; cursor:pointer; margin-top:8px; }
.form-note { color:#555 !important; font-size:.9rem !important; margin-bottom:0; }

.site-footer {
  padding:58px 0 94px;
  background:#030303; border-top:1px solid var(--border);
}
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr; gap:32px; }
.site-footer p, .site-footer a { color:var(--muted); }
.site-footer a { display:block; margin:8px 0; }
.footer-title {
  font-size:1rem; font-family:var(--body); letter-spacing:0; text-transform:none; margin-bottom:12px;
}
.footer-bottom {
  margin-top:36px; padding-top:20px; border-top:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.site-credit { font-size:.86rem; opacity:.78; }
.site-credit a {
  display:inline; color:#fff; border-bottom:1px solid rgba(255,255,255,.55);
}
.mobile-sticky-cta { display:none; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulseGlow {
  0%,100% { opacity:.52; transform: scale(.98); }
  50% { opacity:.86; transform: scale(1.02); }
}

:focus-visible { outline:3px solid var(--yellow); outline-offset:4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 980px) {
  .menu-toggle { display:block; }
  .site-menu {
    position:absolute; inset: var(--header-height) 16px auto 16px;
    display:none; flex-direction:column; align-items:stretch;
    padding:18px; border:1px solid var(--border); border-radius:var(--radius-md);
    background:rgba(10,10,10,.98); box-shadow:var(--shadow);
  }
  .site-menu.is-open { display:flex; }
  .hero-grid, .split, .booking-grid, .about-grid, .process-panel, .footer-grid { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .hero-media { width:min(100%, 390px); }
  .event-grid { grid-template-columns:repeat(2,1fr); }
  .proof-grid { grid-template-columns:1fr 1fr; }
  .proof-feature { grid-column:span 2; min-height:480px; }
  .process-cards { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  :root { --header-height:74px; }
  .container { width:min(100% - 24px, var(--container)); }
  .section { padding:64px 0; }
  .logo-shell { padding:7px 10px; }
  .logo-shell img { width:150px; max-height:42px; }
  .hero { padding:34px 0 64px; }
  .hero-grid { gap:30px; }
  .hero-media { width:min(100%, 355px); }
  .hero-actions .btn { width:100%; }
  .event-grid, .benefit-grid, .proof-grid { grid-template-columns:1fr; }
  .proof-feature { grid-column:auto; min-height:360px; }
  .proof-card { min-height:340px; }
  .about-art { min-height:360px; }
  .footer-bottom { align-items:flex-start; }
  .mobile-sticky-cta {
    display:inline-flex; position:fixed; left:12px; right:12px; bottom:12px; z-index:900;
    align-items:center; justify-content:center; min-height:54px; border-radius:999px;
    background:linear-gradient(135deg, var(--red), var(--orange)); color:white; font-weight:900;
    box-shadow:0 16px 40px rgba(0,0,0,.35);
  }
  .site-footer { padding-bottom:110px; }
}

@media (max-width: 420px) {
  h1 { font-size: clamp(3.15rem, 18vw, 4.7rem); }
  h2 { font-size: clamp(2.25rem, 13vw, 3.6rem); }
  .hero-media { width:min(100%, 330px); }
}


/* V3 — Full-screen Canva hero first impression */
.hero-fullscreen {
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  padding: 0;
  display: block;
  overflow: hidden;
}

.hero-fullscreen .hero-bg,
.hero-fullscreen .hero-overlay {
  position: absolute;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.canva-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.canva-full iframe {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 0;
  margin: 0;
  padding: 0;
  width: min(100vw, calc((100svh - var(--header-height)) * 0.5625));
  height: min(calc(100svh - var(--header-height)), calc(100vw * 1.7777778));
  min-width: 360px;
  min-height: 640px;
  transform: translate(-50%, -50%);
  border-radius: 0;
}

.hero-floating {
  position: absolute;
  left: clamp(16px, 5vw, 72px);
  bottom: clamp(18px, 5vh, 64px);
  z-index: 5;
  width: min(560px, calc(100% - 32px));
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.hero-floating h1 {
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

.hero-floating p:not(.eyebrow) {
  color: var(--muted);
  max-width: 480px;
  margin: 16px 0 0;
}

@media (max-width: 760px) {
  .hero-fullscreen {
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .canva-full iframe {
    width: min(100vw, calc((100svh - var(--header-height)) * 0.5625));
    height: min(calc(100svh - var(--header-height)), calc(100vw * 1.7777778));
  }

  .hero-floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-floating h1 {
    font-size: clamp(2.05rem, 13vw, 3.25rem);
  }

  .hero-floating p:not(.eyebrow) {
    font-size: .98rem;
    margin-top: 10px;
  }

  .hero-floating .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-floating .btn {
    min-height: 48px;
  }

  .hero-floating .btn-secondary {
    display: none;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .hero-floating p:not(.eyebrow) {
    display: none;
  }

  .hero-floating {
    width: min(520px, calc(100% - 32px));
  }
}


/* V4 — Clean full-screen Canva hero, no public overlay covering design */
.hero-clean {
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  padding: 0;
  display: block;
  overflow: hidden;
  background: #000;
}

.hero-overlay-soft {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,30,45,.12), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.14), rgba(0,0,0,.18));
  pointer-events: none;
}

.hero-stage-clean {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.canva-clean {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* 
  Canva does not expose a true "hide controls" switch on public embeds.
  This keeps the design full-screen, disables hover/click controls, and crops any edge UI.
*/
.canva-clean iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0;
  margin: 0;
  padding: 0;
  width: calc(min(100vw, (100svh - var(--header-height)) * 0.5625) + 12px);
  height: calc(min((100svh - var(--header-height)), 100vw * 1.7777778) + 12px);
  min-width: 372px;
  min-height: 652px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-intro {
  padding: clamp(36px, 7vw, 72px) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,30,45,.2), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255,233,56,.12), transparent 28%),
    #050505;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.hero-intro h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.hero-intro-copy p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  max-width: 660px;
  margin: 0;
}

@media (max-width: 860px) {
  .hero-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-clean {
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .canva-clean iframe {
    width: calc(min(100vw, (100svh - var(--header-height)) * 0.5625) + 10px);
    height: calc(min((100svh - var(--header-height)), 100vw * 1.7777778) + 10px);
    min-width: 370px;
    min-height: 650px;
  }

  .hero-intro {
    padding: 42px 0 62px;
  }
}


/* Final hero video */
.video-hero{
position:absolute;
inset:0;
overflow:hidden;
background:#000;
}
.video-hero video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}


/* Final premium SVG + alignment pass */
.visual-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.soundwave-accent {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 140px;
  opacity: .46;
  pointer-events: none;
  transform: translateY(-34%);
}

.hero-intro {
  position: relative;
  overflow: hidden;
}

.section-heading.centered {
  max-width: 820px;
}

.trust-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255,30,45,.16), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(255,233,56,.10), transparent 34%),
    #050505;
}

.trust-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.trust-experience-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  overflow: hidden;
}

.trust-experience-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,30,45,.22), transparent 66%);
  pointer-events: none;
}

.trust-experience-card svg {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 22px rgba(255,30,45,.16));
}

.trust-experience-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.trust-experience-card p {
  color: var(--muted);
  margin: 0;
}

.booking-divider {
  height: 86px;
  margin-bottom: -2px;
  background: #050505;
  overflow: hidden;
}

.booking-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Make image cards feel intentional with visual polish */
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.62), transparent 44%),
    radial-gradient(circle at 18% 12%, rgba(255,233,56,.08), transparent 36%);
  pointer-events: none;
}

.proof-card figcaption {
  z-index: 2;
}

.proof-card img {
  transition: transform .8s ease, filter .8s ease;
}

.proof-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

/* Center high-level section headings without forcing content blocks to center */
#events .section-heading,
#proof .section-heading,
#faq .section-heading {
  text-align: center;
  margin-inline: auto;
}

#events .section-heading p,
#proof .section-heading p,
#faq .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .trust-experience-grid {
    grid-template-columns: 1fr;
  }

  .trust-experience-card {
    padding: 26px;
  }
}
