@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700,800&display=swap');

:root {
  --red: #e10600;
  --red-dark: #9c0300;
  --red-glow: #ff4d3d;
  --black: #0d0d0d;
  --ink: #17141c;
  --muted: #6f6a74;
  --cream: #faf7f4;
  --line: #ece4e0;
  --sans: "General Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "General Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; }
.reveal-2 { transition-delay: .15s; }
.reveal-3 { transition-delay: .25s; }
.reveal-4 { transition-delay: .35s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  display: flex;
  align-items: center;
}

.logo span { color: var(--red); }

.logo img { height: 34px; width: auto; display: block; }
.footer-grid .logo img { height: 30px; }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Video embeds */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

.nav-links a {
  position: relative;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links li.has-dropdown { position: relative; }
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  min-width: 170px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  z-index: 60;
}
.nav-links li.has-dropdown:hover .dropdown { display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 500;
}
.nav-links .dropdown a:hover { background: var(--cream); color: var(--red); }
.nav-links .dropdown a::after { display: none; }

/* Announcement banner */
.announce-band {
  background: var(--black);
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announce-band a { color: var(--red-glow); text-decoration: underline; text-underline-offset: 3px; }
.announce-band .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 10px;
  animation: pulse 1.6s ease-in-out infinite;
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(225,6,0,0.28);
}

.nav-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Hero */
.hero {
  position: relative;
  background: var(--black) url('images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 110px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 15% 25%, rgba(13,13,13,0.75), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(13,13,13,0.55), transparent 50%),
    radial-gradient(circle at 60% 90%, rgba(13,13,13,0.75), transparent 45%);
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes drift {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(3%, -2%) rotate(6deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-copy { flex: 1.1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--red-glow);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: var(--sans);
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-weight: 800;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.1s;
}

.hero p {
  font-size: 18px;
  color: #d8d2d6;
  max-width: 480px;
  margin: 0 0 32px;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.9s ease both; animation-delay: 0.3s; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(.2,.8,.3,1.2), box-shadow 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(225,6,0,0.4);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(225,6,0,0.5); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline:hover { background: #fff; color: var(--black); transform: translateY(-3px); }

.hero-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  animation: fadeUp 0.9s ease both;
}

.stat-card:nth-child(1) { animation-delay: 0.35s; }
.stat-card:nth-child(2) { animation-delay: 0.42s; }
.stat-card:nth-child(3) { animation-delay: 0.49s; }
.stat-card:nth-child(4) { animation-delay: 0.56s; }

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(225,6,0,0.12);
  border-color: rgba(225,6,0,0.4);
}

.stat-card .num {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--red-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card .label {
  font-size: 13px;
  color: #cfc7cb;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Section basics */
section { padding: 96px 0; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }

.section-head .eyebrow { color: var(--red); text-align: center; }

.section-head h2 {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 16px;
}

.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

.left-align { text-align: left; margin: 0 0 48px; }
.left-align .eyebrow, .left-align h2 { text-align: left; }

/* Cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 32px;
  transition: transform 0.35s cubic-bezier(.2,.8,.3,1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.09);
  border-color: transparent;
}

a.card { display: block; }
.card .card-cta {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.card .card-cta::after { content: " →"; transition: margin 0.2s; }
a.card:hover .card-cta::after { margin-left: 4px; }

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--black);
  color: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 22px;
  transition: transform 0.35s, background 0.35s;
}

.card:hover .icon { background: var(--red); transform: rotate(-8deg) scale(1.08); }

.card h3 {
  font-family: var(--sans);
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.card p { color: var(--muted); font-size: 15px; margin: 0; }

.alt-bg { background: #fff; }

/* Mission split */
.split {
  display: flex;
  align-items: center;
  gap: 64px;
}

.split-media {
  flex: 1;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--red-glow), var(--red) 55%, var(--black) 130%);
  position: relative;
  overflow: hidden;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.split-copy { flex: 1.1; }

.split-copy h2 {
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 20px;
}

.split-copy p { color: var(--muted); font-size: 16px; margin: 0 0 16px; }

.reverse { flex-direction: row-reverse; }

/* Quote / testimonial */
.quote-section {
  background: var(--black);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(225,6,0,0.35), transparent 55%);
  animation: pulse 8s ease-in-out infinite;
}

.quote-section blockquote {
  position: relative;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto 24px;
  font-style: normal;
}

.quote-section cite {
  position: relative;
  font-style: normal;
  color: var(--red-glow);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Timeline / list */
.numbered-list { counter-reset: step; }

.numbered-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s;
}

.numbered-item:hover { padding-left: 10px; }
.numbered-item:last-child { border-bottom: none; }

.numbered-item .num {
  counter-increment: step;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 28px;
  color: var(--red);
  min-width: 48px;
}

.numbered-item h3 { margin: 0 0 8px; color: var(--black); font-family: var(--sans); font-weight: 700; font-size: 19px; }
.numbered-item p { margin: 0; color: var(--muted); font-size: 15px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 60%);
  animation: drift 14s ease-in-out infinite alternate;
}

.cta-band h2 {
  position: relative;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}

.cta-band p { position: relative; color: rgba(255,255,255,0.9); margin: 0 0 32px; font-size: 17px; }
.cta-band .btn-primary { position: relative; background: #fff; color: var(--red-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.cta-band .btn-primary:hover { background: var(--black); color: #fff; }

/* Team */
.team-card { text-align: center; }

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(160deg, var(--red-glow), var(--black));
  transition: transform 0.3s;
}

.team-card:hover .team-photo { transform: scale(1.06) rotate(3deg); }

.team-card h3 { font-family: var(--sans); font-weight: 700; color: var(--black); margin: 0 0 4px; }
.team-card .role { color: var(--red); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; font-weight: 600; }
.team-card p { color: var(--muted); font-size: 14px; }

/* Values */
.value-row { display: flex; gap: 20px; margin-bottom: 28px; }
.value-row .mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.value-row:hover .mark { background: var(--red); color: #fff; }
.value-row h3 { margin: 0 0 6px; color: var(--black); font-family: var(--sans); font-weight: 700; font-size: 18px; }
.value-row p { margin: 0; color: var(--muted); font-size: 15px; }

/* Blog */
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(0,0,0,0.09); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--black), var(--red)); }
.blog-body { padding: 26px; }
.blog-meta { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: 10px; font-weight: 700; }
.blog-body h3 { font-family: var(--sans); font-weight: 700; color: var(--black); font-size: 19px; margin: 0 0 10px; }
.blog-body p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.read-more { color: var(--black); font-weight: 700; font-size: 14px; transition: color 0.2s; }
.read-more:hover { color: var(--red); }
.read-more:after { content: " →"; transition: margin 0.2s; }
.read-more:hover:after { margin-left: 4px; }

.featured-post {
  display: flex;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
}
.featured-media { flex: 1; background: linear-gradient(150deg, var(--red), var(--black)); min-height: 320px; }
.featured-copy { flex: 1; padding: 44px 44px 44px 0; display: flex; flex-direction: column; justify-content: center; }
.featured-copy h2 { font-family: var(--sans); font-weight: 800; color: var(--black); font-size: 30px; margin: 0 0 14px; }
.featured-copy p { color: var(--muted); margin: 0 0 20px; }

/* Contact */
.contact-wrap { display: flex; gap: 60px; }
.contact-info { flex: 1; }
.contact-info h2 { font-family: var(--sans); font-weight: 800; color: var(--black); font-size: 32px; margin: 0 0 20px; }
.contact-info p { color: var(--muted); margin: 0 0 28px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.info-item .mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--black);
  color: var(--red-glow); display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.info-item:hover .mark { background: var(--red); transform: rotate(-8deg); }
.info-item strong { display: block; color: var(--ink); font-size: 15px; }
.info-item span { color: var(--muted); font-size: 14px; }

.contact-form { flex: 1.1; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 44px; }
.form-row { display: flex; gap: 18px; }
.form-group { margin-bottom: 20px; flex: 1; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,0.15); }

.map-block {
  margin-top: 56px;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--black), var(--red));
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #cfc7cb;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid .logo { color: #fff; margin-bottom: 14px; }
.footer-grid p { font-size: 14px; color: #a89fa2; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #a89fa2; transition: color 0.2s; }
.footer-col a:hover { color: var(--red-glow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #857b7f;
}

/* Big statement */
.statement {
  background: var(--cream);
  text-align: center;
}
.statement .stmt-text {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 920px;
  margin: 0 auto;
  color: var(--black);
}
.statement .stmt-text b, .statement .stmt-text strong {
  color: var(--red);
  font-weight: 800;
}

/* Photo-backed split (real images) */
.split-media.has-photo {
  background: var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.split-media.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(.2,.8,.3,1);
}
.split-media.has-photo:hover img { transform: scale(1.05); }

/* Photo-backed quote section */
.quote-section.has-photo {
  background-size: cover;
  background-position: center;
}
.quote-section.has-photo::before {
  background: linear-gradient(180deg, rgba(13,13,13,0.75), rgba(13,13,13,0.9));
  inset: 0;
  animation: none;
}

/* Team photo as real image */
.team-photo {
  overflow: hidden;
  background: var(--cream);
  border: 3px solid var(--line);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-card:hover .team-photo { border-color: var(--red); }

/* Event photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.photo-grid a, .photo-tile {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.2,.8,.3,1), filter 0.5s;
  filter: saturate(1.05);
}
.photo-tile:hover img { transform: scale(1.08); filter: saturate(1.2); }
.photo-tile.tall { grid-row: span 2; }
.photo-tile.wide { grid-column: span 2; }

/* Partner logo marquee */
.logo-marquee-section {
  background: var(--cream);
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(13,13,13,0.08);
  border-bottom: 1px solid rgba(13,13,13,0.08);
}
.logo-marquee-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee-scroll 40s linear infinite;
}
.logo-marquee-section:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-track img {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.logo-marquee-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Partner logo grid (static, non-scrolling) */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.partner-logo-grid .logo-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 0 2px 10px rgba(13,13,13,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.partner-logo-grid .logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(13,13,13,0.12);
}
.partner-logo-grid .logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 900px) {
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-marquee-track img { height: 36px; }
}
@media (max-width: 560px) {
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Social icon row */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.social-row a:hover {
  background: var(--red);
  transform: translateY(-3px);
}
.social-row a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Featured / blog thumb as real photo */
.featured-media.has-photo, .blog-thumb.has-photo {
  background-size: cover;
  background-position: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { flex-direction: column; }
  .hero h1 { font-size: 36px; }
  .split, .split.reverse { flex-direction: column; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .featured-post { flex-direction: column; }
  .featured-copy { padding: 30px; }
  .contact-wrap { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .photo-tile.wide { grid-column: span 1; }
  .statement .stmt-text { font-size: 30px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
