/* ============================================================
   ScooNews Memorial Awards — Main Stylesheet
   Brand colors: #CA2027 (red), #1A1A1A (near-black), #FFFFFF (white)
   ============================================================ */

:root {
  --red:         #CA2027;
  --red-dark:    #a31920;
  --red-light:   #e03a41;
  --red-pale:    #fde8e9;
  --navy:        #0d1b2a;
  --navy-light:  #1a2d42;
  --navy-mid:    #142236;
  --cream:       #faf7f1;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #5a5a72;
  --shadow-sm:   0 4px 16px rgba(13,27,42,.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,.13);
  --shadow-lg:   0 16px 56px rgba(13,27,42,.18);
  --radius:      12px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --transition:  all .3s var(--ease);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { transition: var(--transition); }
img { max-width: 100%; }

/* ── Navbar ── */
.navbar {
  background: var(--navy);
  padding: 14px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 9px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28202,32,39,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .4px;
  padding: 7px 14px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover { color: var(--red) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.btn-nav-nominate {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 5px;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  letter-spacing: .5px;
}
.btn-nav-nominate::after { display: none !important; }
.btn-nav-nominate:hover { background: var(--red-dark) !important; color: #fff !important; }

/* ── Reusable buttons ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

/* keep .btn-gold as alias */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border: 2px solid var(--red);
  padding: 13px 30px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 5px; text-decoration: none;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.35);
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--red); color: var(--red); }

/* ── Section label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 620px;
}
.section-lead.light { color: rgba(255,255,255,.68); }

/* ── Divider ── */
.red-line {
  width: 56px; height: 3px;
  background: var(--red);
  margin: 20px 0;
}
.red-line.center { margin: 20px auto; }
/* alias */
.gold-line { width: 56px; height: 3px; background: var(--red); margin: 20px 0; }
.gold-line.center { margin: 20px auto; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #07111d 0%, #0d1b2a 45%, #162234 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(202,32,39,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(202,32,39,.04) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.hero-decor {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(202,32,39,.07);
  pointer-events: none;
}
.hero-decor-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decor-2 { width: 300px; height: 300px; bottom: -80px; left: 8%; }
.hero-decor-3 { width: 180px; height: 180px; top: 30%; right: 15%; border-color: rgba(202,32,39,.1); }

.hero-inner { position: relative; z-index: 2; padding: 130px 0 90px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(202,32,39,.12);
  border: 1px solid rgba(202,32,39,.3);
  border-radius: 50px;
  padding: 7px 18px;
  color: var(--red);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.75); }
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 10px;
}
.hero-title .red-italic { color: var(--red); font-style: italic; display: block; }
/* alias */
.hero-title .gold-italic { color: var(--red); font-style: italic; display: block; }
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,.62);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex; gap: 44px; flex-wrap: wrap;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700;
  color: var(--red); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.42);
  text-transform: uppercase; letter-spacing: 1.8px;
}

.hero-badge-box {
  background: linear-gradient(145deg, rgba(202,32,39,.1), rgba(202,32,39,.04));
  border: 1px solid rgba(202,32,39,.22);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  max-width: 340px; margin-left: auto;
}
.hero-badge-icon { font-size: 72px; margin-bottom: 18px; display: block; }
.hero-badge-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red); font-size: 22px;
  margin-bottom: 12px;
}
.hero-badge-box p {
  color: rgba(255,255,255,.58);
  font-size: 14px; line-height: 1.65;
  margin-bottom: 20px;
}
.hero-year-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 96px 0; background: var(--cream); }
.about-text { padding-right: 44px; }

.pull-quote {
  background: var(--navy);
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 26px 28px;
  margin: 32px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18.5px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin: 0;
}
.pull-quote cite {
  display: block;
  color: var(--red);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 10px;
}

.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 32px;
}
.val-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border-left: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.val-item h5 {
  font-size: 15px; color: var(--navy);
  margin-bottom: 6px;
}
.val-item p { font-size: 13px; color: var(--text-mid); margin: 0; line-height: 1.6; }

.about-img-wrap { position: relative; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 2px solid var(--red);
  border-radius: 14px;
  opacity: .2;
  z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

/* ============================================================
   AWARDS CARDS SECTION
   ============================================================ */
.awards-section { padding: 96px 0; background: #fff; }
.awards-section .section-label { justify-content: center; }

.award-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.055);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.award-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.award-card-top {
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  padding: 26px;
  position: relative; overflow: hidden;
}
.award-card-top::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.award-num-bg {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,.05);
  position: absolute; top: 4px; right: 12px;
  line-height: 1;
  user-select: none;
}
.award-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  position: relative; z-index: 1;
  margin-bottom: 7px;
}
.award-card-tagline {
  color: var(--red);
  font-size: 12px;
  font-style: italic;
  position: relative; z-index: 1;
}

.award-card-body {
  padding: 22px 22px 14px;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.recipient-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--red);
  margin-bottom: 13px;
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
}
.recipient-photo.initials {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--red);
}
.recipient-year-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 5px;
}
.recipient-name {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px; font-weight: 700;
  color: var(--text-dark);
}

.award-card-foot { padding: 14px 22px 22px; }
.btn-card-more {
  display: block; width: 100%; text-align: center;
  padding: 10px;
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.btn-card-more:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================================
   NOMINATIONS SECTION
   ============================================================ */
.nominations-section {
  padding: 96px 0;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.nominations-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(202,32,39,.06) 0%, transparent 60%);
  pointer-events: none;
}
.nom-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(202,32,39,.14);
  border: 1px solid rgba(202,32,39,.32);
  border-radius: 50px;
  padding: 7px 18px;
  color: var(--red);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 22px;
}
.nom-live-badge .blink {
  width: 8px; height: 8px;
  background: #4caf50; border-radius: 50%;
  animation: blinkDot 1.4s infinite;
}
@keyframes blinkDot {
  0%,100% { opacity:1; }
  50%      { opacity:0; }
}
.nom-title {
  font-size: clamp(30px, 5vw, 52px);
  color: #fff; font-weight: 700; line-height: 1.15;
  margin-bottom: 18px;
}
.nom-title span { color: var(--red); font-style: italic; }
.nom-features { list-style: none; padding: 0; margin-bottom: 36px; }
.nom-features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 15px; line-height: 1.6;
  margin-bottom: 12px;
}
.nom-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}
.nom-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.nom-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(202,32,39,.2);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative; z-index: 1;
}
.nom-year-card {
  background: rgba(202,32,39,.12);
  border: 1px solid rgba(202,32,39,.28);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
  text-align: center;
}
.nom-year-card .lbl {
  color: var(--red);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.nom-year-card .val {
  font-family: 'Playfair Display', serif;
  font-size: 38px; color: #fff; font-weight: 700; line-height: 1;
}
.nom-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nom-stat {
  background: rgba(255,255,255,.04);
  border-radius: 9px;
  padding: 16px;
  text-align: center;
}
.nom-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--red); font-weight: 700;
}
.nom-stat .lbl {
  font-size: 10px; color: rgba(255,255,255,.42);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050e19;
  padding: 60px 0 22px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: #fff;
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.footer-desc { color: rgba(255,255,255,.4); font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer-col-head {
  color: var(--red);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.8px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-ul { list-style: none; padding: 0; }
.footer-ul li { margin-bottom: 9px; }
.footer-ul a { color: rgba(255,255,255,.45); font-size: 13.5px; text-decoration: none; }
.footer-ul a:hover { color: var(--red); }
.footer-hr { border-color: rgba(255,255,255,.06); margin: 38px 0 20px; }
.footer-copy { color: rgba(255,255,255,.28); font-size: 12.5px; }
.footer-copy a { color: var(--red); text-decoration: none; }

/* ============================================================
   NOMINATIONS AWARDS LIST  (homepage nominations section)
   ============================================================ */
.nom-awards-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 900px;
  margin: 0 auto;
}
.nom-award-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(255,255,255,.04);
  border-left: 3px solid transparent;
  border-radius: 10px;
  transition: var(--transition);
}
.nom-award-row:hover {
  background: rgba(202,32,39,.09);
  border-left-color: var(--red);
  transform: translateX(4px);
}
.nom-award-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  min-width: 28px;
}
.nom-award-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(202,32,39,.45);
  flex-shrink: 0;
}
.nom-award-details { flex: 1; min-width: 0; }
.nom-award-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.nom-award-for {
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
  font-style: italic;
}
.nom-award-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: rgba(255,255,255,.55);
  border: 1.5px solid rgba(255,255,255,.18);
  padding: 9px 18px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 5px; text-decoration: none; white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.nom-award-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── New Award Page — nominations open card ── */
.nom-open-card {
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  border-radius: 18px;
  padding: 48px;
  display: flex; gap: 32px; align-items: flex-start;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--red);
}
.nom-open-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(202,32,39,.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--red);
  border: 2px solid rgba(202,32,39,.3);
}
.nom-open-tag {
  color: var(--red);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.nom-open-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: #fff; margin-bottom: 14px;
}
.nom-open-content p {
  color: rgba(255,255,255,.68);
  font-size: 15px; line-height: 1.82;
  margin-bottom: 10px;
}

/* ============================================================
   AWARD DETAIL PAGES
   ============================================================ */
.detail-hero {
  background: linear-gradient(140deg, #07111d 0%, #0d1b2a 50%, #152030 100%);
  padding: 130px 0 72px;
  position: relative; overflow: hidden;
}
.detail-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.detail-hero-decor {
  position: absolute; pointer-events: none; border-radius: 50%;
  border: 1px solid rgba(202,32,39,.06);
}
.detail-hero-decor-1 { width: 450px; height: 450px; top: -120px; right: -80px; }
.detail-hero-decor-2 { width: 250px; height: 250px; bottom: -60px; left: 5%; }

.breadcrumb-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 11px 0;
}
.breadcrumb-strip a { color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; }
.breadcrumb-strip a:hover { color: var(--red); }
.breadcrumb-strip .sep { color: rgba(255,255,255,.25); margin: 0 8px; font-size: 12px; }
.breadcrumb-strip .current { color: var(--red); font-size: 13px; }

.award-detail-tag {
  display: inline-block;
  background: rgba(202,32,39,.13);
  border: 1px solid rgba(202,32,39,.35);
  color: var(--red);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 22px;
}
.detail-title {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700; color: #fff; line-height: 1.08;
  margin-bottom: 14px;
}
.detail-title span { color: var(--red); }
.detail-purpose {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.58);
  font-style: italic; line-height: 1.55;
}
.back-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.5);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; margin-bottom: 28px;
}
.back-link:hover { color: var(--red); }

/* Alternating content sections */
.content-band { padding: 72px 0; }
.content-band.bg-cream { background: var(--cream); }
.content-band.bg-white { background: #fff; }
.content-band.bg-navy {
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
}

/* Honoree card */
.honoree-card {
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  border-radius: 18px;
  padding: 44px;
  display: flex; gap: 36px;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
}
.honoree-photo {
  width: 220px;
  height: 280px;
  border-radius: 14px;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--red);
  flex-shrink: 0;
}
.honoree-photo.initials {
  background: rgba(202,32,39,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700; color: var(--red);
}
@media (max-width: 767px) {
  .honoree-photo { width: 100%; height: 260px; }
}
.honoree-title-tag {
  color: var(--red);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.honoree-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff; margin-bottom: 6px;
}
.honoree-dates {
  color: rgba(255,255,255,.4);
  font-size: 13px; margin-bottom: 18px;
}
.honoree-bio p {
  color: rgba(255,255,255,.72);
  font-size: 15px; line-height: 1.82;
  margin-bottom: 12px;
}
.honoree-bio p:last-child { margin-bottom: 0; }

/* Why card */
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 38px;
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.why-card h4 {
  font-size: 22px; color: var(--navy);
  margin-bottom: 14px;
}
.why-card p {
  color: var(--text-mid);
  font-size: 15px; line-height: 1.82;
  margin-bottom: 12px;
}
.why-card p:last-child { margin-bottom: 0; }

/* Recipient detail */
.recipient-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
}
.recipient-card-img {
  width: 280px; flex-shrink: 0;
  object-fit: cover;
  object-position: top;
}
.recipient-card-img.initials {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 700; color: var(--red);
}
.recipient-card-info { padding: 44px; }
.recipient-card-info .given-by {
  color: var(--red);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.recipient-card-info h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy); margin-bottom: 6px;
}
.recipient-card-info .role {
  color: var(--text-mid); font-size: 14px; margin-bottom: 26px;
}
.recipient-card-info p {
  color: var(--text-mid); font-size: 15px; line-height: 1.82; margin-bottom: 10px;
}

/* Citation block */
.citation-block {
  background: linear-gradient(140deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  padding: 44px 48px;
  position: relative;
}
.citation-block::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 130px; line-height: 1;
  color: rgba(202,32,39,.12);
  position: absolute; top: -6px; left: 22px;
}
.citation-block blockquote {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 2.2vw, 21px);
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  border: none; padding: 0; margin: 0;
}
.citation-block cite {
  display: block;
  color: var(--red);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-style: normal;
  margin-top: 20px;
}

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 36px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform .45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-duo { grid-template-columns: 1fr 1fr; }

/* CTA strip inside detail pages */
.cta-strip {
  background: linear-gradient(140deg, var(--navy), var(--navy-mid));
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(202,32,39,.06) 0%, transparent 60%);
}

/* ============================================================
   BANNER — HTML LOGO BLOCK
   ============================================================ */
.banner-logo-wrap {
  display: inline-block;
  text-align: left;
  margin-bottom: 48px;
}
.banner-logo-main {
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.banner-logo-bars {
  display: flex;
  gap: 7px;
  padding-top: 4px;
}
.banner-logo-bars div {
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  min-height: 100%;
}
.banner-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.blt-the {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.blt-scoonews {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
}
.blt-memorial {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  color: var(--red);
  line-height: 0.92;
  letter-spacing: -2px;
}
.blt-awards {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
}
/* Year + tagline sit below the bars */
.banner-logo-sub {
  padding-left: 29px; /* bars (3+7+3=13) + gap 16 = 29px */
  margin-top: 6px;
}
.blt-year {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 300;
  color: rgba(255,255,255,.38);
  line-height: 1.3;
}
.blt-line {
  width: 36px;
  height: 2px;
  background: var(--red);
  margin: 8px 0 12px;
}
.blt-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}

/* ============================================================
   MEMORIAL BANNER  (homepage hero)
   Both breakpoints now show client-supplied banner images.
   Mobile  (<  992 px): mobilebanner.jpg  (portrait)
   Desktop (>= 992 px): herobanner.jpg    (landscape)
   ============================================================ */

/* ── Section shell — identical on all screen sizes ── */
.memorial-banner {
  display: block;
  background: var(--navy);   /* shows as the CTA bar colour */
  padding: 0;
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
/* No gradient overlays needed — images provide the visuals */
.memorial-banner::before,
.memorial-banner::after { display: none; }
.banner-decor           { display: none; }

/* ── Banner images ── */
.banner-mobile-img,
.banner-desktop-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Shared dark CTA bar below each image ── */
.banner-cta-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--red);
}

/* ── Default (mobile-first, < 992 px): show mobile image ── */
.banner-mobile-content  { display: flex; flex-direction: column; }
.banner-desktop-content { display: none; }

/* ── Desktop (>= 992 px): swap to desktop image ── */
@media (min-width: 992px) {
  .banner-desktop-content { display: flex; flex-direction: column; }
  .banner-mobile-content  { display: none; }
}

/* ── Stack CTA buttons on small phones ── */
@media (max-width: 575px) {
  .banner-cta-bar { flex-direction: column; align-items: stretch; }
  .banner-cta-bar .btn-gold,
  .banner-cta-bar .btn-outline-white { justify-content: center; }
}

/* ============================================================
   AWARDS GRID  (homepage section — all 8 awards, scrollable)
   ============================================================ */
.awards-grid-section {
  background: var(--navy);
  padding: 0 0 96px;
}
.awards-grid-header {
  padding: 68px 0 52px;
}

/* Single-column list of horizontal cards */
.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Each award card — horizontal split ── */
.award-grid-card {
  background: var(--navy-light);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  display: flex;
  flex-direction: row;           /* image left, info right */
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  min-height: 260px;
}
.award-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202,32,39,.45);
  box-shadow: 0 28px 72px rgba(0,0,0,.5);
}

/* Left: award image panel */
.agc-image-wrap {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}
.agc-image {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform .55s var(--ease);
}
.award-grid-card:hover .agc-image { transform: scale(1.06); }

/* Gradient fades right edge into the body panel */
.agc-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,17,29,.05) 50%,
    rgba(13,27,42,.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Faint award number watermark */
.agc-num {
  position: absolute;
  bottom: -14px; left: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 96px; font-weight: 700;
  color: rgba(202,32,39,.2);
  line-height: 1; z-index: 2;
  user-select: none; pointer-events: none;
}


/* Right: award info body */
.agc-body {
  flex: 1;
  padding: 32px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--red);
}
.agc-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: #fff; line-height: 1.25;
  margin-bottom: 8px;
}
.agc-purpose {
  font-family: 'Playfair Display', serif;
  font-size: 13.5px; font-style: italic;
  color: rgba(255,255,255,.42);
  line-height: 1.5; margin: 0;
}
.agc-divider {
  width: 36px; height: 2px;
  background: var(--red);
  margin: 20px 0;
  flex-shrink: 0;
}

/* Recipient row */
.agc-recipient {
  display: flex; align-items: center; gap: 14px;
  flex: 1; margin-bottom: 22px;
}
.agc-recipient-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2.5px solid var(--red);
  flex-shrink: 0;
}
.agc-recipient-initials {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(202,32,39,.12);
  border: 2.5px solid rgba(202,32,39,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--red);
  flex-shrink: 0;
}
.agc-recipient-label {
  color: rgba(255,255,255,.3);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 3px;
}
.agc-recipient-name {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.agc-recipient-role {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  margin-top: 2px; line-height: 1.35;
}

/* Animated "Discover" CTA text link */
.agc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  text-decoration: none;
  transition: gap .28s var(--ease);
  align-self: flex-start;
}
.agc-cta i { font-size: 11px; transition: transform .28s var(--ease); }
.award-grid-card:hover .agc-cta { gap: 14px; }
.award-grid-card:hover .agc-cta i { transform: translateX(5px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .about-text { padding-right: 0; margin-bottom: 44px; }
  .honoree-card { flex-direction: column; padding: 28px; }
  .recipient-card { flex-direction: column; }
  .recipient-card-img { width: 100%; height: 240px; }
  .hero-badge-box { display: none; }
  /* Awards grid — tighten gap on tablet */
  .awards-grid { gap: 16px; }
  .agc-body { padding: 28px 32px; }
  .agc-image-wrap { flex: 0 0 38%; }
  /* Nominations list */
  .nom-award-row { padding: 14px 18px; gap: 14px; }
  .nom-award-btn { padding: 8px 14px; font-size: 10.5px; }
  /* Nom open card */
  .nom-open-card { flex-direction: column; padding: 32px; }
}
@media (max-width: 767px) {
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .citation-block { padding: 32px 28px; }
  /* Awards grid — stack vertically on mobile */
  .award-grid-card { flex-direction: column; min-height: unset; }
  .agc-image-wrap { flex: none; width: 100%; height: 200px; }
  .agc-image-wrap::after {
    background: linear-gradient(to bottom, rgba(7,17,29,.04) 0%, rgba(7,17,29,.65) 100%);
  }
  .agc-body { padding: 24px 24px 28px; border-left: none; border-top: 3px solid var(--red); justify-content: flex-start; }
  /* Nominations */
  .nom-award-title { font-size: 14px; }
  .nom-award-row { flex-wrap: wrap; }
  .nom-award-btn { width: 100%; justify-content: center; margin-top: 6px; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .recipient-card-info { padding: 28px; }
  .honoree-card { padding: 24px; }
  /* Awards grid — smaller image on very small screens */
  .agc-image-wrap { height: 170px; }
  .agc-num { font-size: 72px; }
  .nom-award-row { padding: 14px 16px; }
  .nom-award-photo { width: 48px; height: 48px; }
  .blt-scoonews, .blt-memorial, .blt-awards { letter-spacing: -1px; }
}

/* (Banner desktop/mobile swap is now handled inside the MEMORIAL BANNER block above) */

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Hero — centred, inherits .detail-hero dark styles ── */
.contact-hero { text-align: center; }
.contact-hero .detail-title { font-size: clamp(38px, 6vw, 72px); }

/* ── Form section wrapper ── */
.contact-form-section {
  padding: 80px 0 100px;
  background: var(--cream);
}

/* ── White card that wraps the form ── */
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 64px;
  box-shadow: 0 20px 60px rgba(13,27,42,.12);
  max-width: 780px;
  margin: 56px auto 56px;
  border: 1px solid rgba(13,27,42,.06);
}

/* ── Section heading inside the card ── */
.contact-form-card .cf-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-card .cf-card-sub {
  font-size: 14.5px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-form-card .red-line { margin-bottom: 36px; }

/* ── Row spacing ── */
#mawContactForm .row { row-gap: 24px; }

/* ── Field labels ── */
.cf-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cf-label span { color: var(--red); margin-left: 2px; }

/* ── Inputs & textarea — override Bootstrap ── */
.cf-input.form-control {
  border: 1.5px solid #dde3ec;
  border-radius: 9px;
  padding: 13px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fafbfc;
  transition: border-color .2s, box-shadow .2s, background .2s;
  box-shadow: none;
}
.cf-input.form-control:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(202,32,39,.09);
}
.cf-input.form-control::placeholder { color: #b0bac8; }

/* ── Error box ── */
.cf-error {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: 9px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: #b91c1c;
  margin-top: 22px;
  text-align: center;
}

/* ── Submit button: uses .btn-gold — only override needed is disabled state ── */
#mawContactSubmit:disabled {
  background: #94a3b8 !important;
  border-color: #94a3b8 !important;
  cursor: not-allowed;
  transform: none;
}
#mawContactSubmit { margin-top: 12px; }

/* ── Success state ── */
.contact-success {
  text-align: center;
  padding: 56px 24px;
}
.contact-success i {
  font-size: 56px;
  color: #16a34a;
  display: block;
  margin-bottom: 20px;
}
.contact-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-success p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-form-card { padding: 48px 44px; }
}
@media (max-width: 767px) {
  .contact-form-section { padding: 56px 0 72px; }
  .contact-form-card { padding: 36px 30px; }
}
@media (max-width: 575px) {
  .contact-form-card { padding: 28px 20px; border-radius: 14px; }
  button.cf-submit-btn, .cf-submit-btn { width: 100%; }
}
