/* ===========================================
   Final Home Matches | Angel City FC
   Self-contained HubSpot-style landing page
   Structure from hubspot/AugustSummerHitsLight
   Design tokens/patterns from hubspot/2027Renewals
   =========================================== */

:root {
  --sol-rosa: #f1b1a5;
  --sol-rosa-dark: #e0a094;
  --sol-rosa-soft: rgba(241, 177, 165, 0.18);
  --sol-rosa-glow: rgba(241, 177, 165, 0.30);
  /* Sol rosa is too pale to read on the cream backdrop. These deepened tints
     clear WCAG AA there: --deep 3.1:1 for display type, --ink 4.9:1 for body. */
  --sol-rosa-deep: #c9705a;
  --sol-rosa-ink: #a4523d;

  --asphalt: #202121;
  --armour: #898c8f;
  --line-white: #ffffff;
  --pitch-black: #000000;
  --text-dark: #202121;
  --border-color: #e0e0e0;
  --primary-black: #0a0a0a;
  --primary-white: #ffffff;

  --rnw-cream: #f7f1e8;
  --rnw-paper: #fbf7f0;
  --rnw-paper-edge: #e6ddce;
  --rnw-panel: #ffffff;

  /* Elevation scale: e1 resting hairline, e2 cards, e3 hero surfaces */
  --shadow-e1: 0 1px 2px rgba(28, 20, 16, 0.05), 0 1px 3px rgba(28, 20, 16, 0.04);
  --shadow-e2: 0 8px 28px rgba(28, 20, 16, 0.10), 0 2px 6px rgba(28, 20, 16, 0.05);
  --shadow-e3: 0 22px 60px rgba(28, 20, 16, 0.18), 0 4px 12px rgba(28, 20, 16, 0.07);
  --shadow-e3-rosa: 0 22px 60px rgba(28, 20, 16, 0.18), 0 0 0 1px rgba(241, 177, 165, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shared hover motion so every premium surface lifts identically */
  --lift-hover: 0 -3px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --transition: all 0.3s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

html:has(.acfc-fhm-app) {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .acfc-fhm-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--asphalt);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.acfc-fhm-app {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.acfc-fhm-app .angelcity2026-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

@media (max-width: 768px) {
  .acfc-fhm-app .angelcity2026-container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

@media (max-width: 480px) {
  .acfc-fhm-app .angelcity2026-container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

@media (max-width: 380px) {
  .acfc-fhm-app .angelcity2026-container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* ---------- Scroll reveal ---------- */

.acfc-fhm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.acfc-fhm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HubSpot full-bleed hero ---------- */

.sr-html .container-fluid:has(.acfc-fhm-page-hero-wrap) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.container:has(.acfc-fhm-page-hero-wrap),
.container-sm:has(.acfc-fhm-page-hero-wrap),
.container-md:has(.acfc-fhm-page-hero-wrap),
.container-lg:has(.acfc-fhm-page-hero-wrap),
.container-xl:has(.acfc-fhm-page-hero-wrap) {
  overflow-x: visible !important;
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.row:has(.acfc-fhm-page-hero-wrap) {
  overflow-x: visible !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 0;
}

[class*="col"]:has(.acfc-fhm-page-hero-wrap) {
  overflow-x: visible !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.acfc-fhm-page-hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

/* ---------- Buttons ---------- */

.angelcity2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.9rem 2.4rem;
  white-space: nowrap;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
  text-align: center;
}

.angelcity2026-btn-primary {
  background: var(--sol-rosa);
  color: var(--primary-black);
  border-color: var(--sol-rosa);
}

.angelcity2026-btn-primary:hover {
  background: var(--sol-rosa-dark);
  border-color: var(--sol-rosa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--sol-rosa-glow);
}

a.angelcity2026-btn.angelcity2026-btn-primary,
a.angelcity2026-btn.angelcity2026-btn-primary:hover,
a.angelcity2026-btn.angelcity2026-btn-primary:focus-visible {
  color: var(--primary-black);
}

.angelcity2026-btn-secondary {
  background: var(--asphalt);
  color: var(--line-white);
  border-color: var(--asphalt);
}

.angelcity2026-btn-secondary:hover {
  background: var(--pitch-black);
  border-color: var(--pitch-black);
  color: var(--line-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 33, 33, 0.25);
}

.angelcity2026-btn:focus-visible {
  outline: 2px solid var(--sol-rosa);
  outline-offset: 3px;
}

/* ---------- Static image hero (16:9 desktop / 1:1 mobile) ---------- */

.acfc-fhm-hero-static-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 56.25dvw;
  max-height: 1080px;
  min-height: 300px;
  background-color: #141414;
  background-image: url('https://www.angelcity.com/hubfs/ACFC26_UpcomingMatches_Final3HomeMatches_desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.acfc-fhm-hero-static-shell::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: url('https://www.angelcity.com/hubfs/ACFC26_UpcomingMatches_Final3HomeMatches_desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  z-index: 1;
}

.acfc-fhm-hero-tickets-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  outline: none;
  z-index: 3;
}

.acfc-fhm-hero-tickets-link:focus-visible {
  outline: 2px solid var(--sol-rosa);
  outline-offset: -4px;
  z-index: 10;
}

.acfc-fhm-hero-static-wrapper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  z-index: 4;
}

.acfc-fhm-hero-static-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.acfc-fhm-hero-static-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .acfc-fhm-hero-static-shell {
    height: min(56.25dvw, 78dvh);
    min-height: 0;
    max-height: 1080px;
  }

  /* contain, not cover: the creative carries match text top and bottom that must not crop.
     Short viewports pillarbox against the blurred backdrop instead. */
  .acfc-fhm-hero-static-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 767px) {
  .acfc-fhm-hero-static-shell {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: none;
    width: 100%;
    min-height: unset;
    background-image: url('https://angelcity.com/hs-fs/hubfs/ACFC26_UpcomingMatches.png?width=1620&height=1620&name=ACFC26_UpcomingMatches.png');
  }

  .acfc-fhm-hero-static-shell::before {
    display: none;
  }

  .acfc-fhm-hero-static-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .acfc-fhm-hero-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* ---------- Dreamy photo backdrop (2027Renewals pattern) ---------- */

.acfc-fhm-dreamy {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.acfc-fhm-dreamy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(8px) saturate(1.15) contrast(1.06);
}

.acfc-fhm-dreamy::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 90% at 16% 0%, rgba(241, 177, 165, 0.20) 0%, transparent 52%),
    linear-gradient(180deg, rgba(251, 247, 240, 0.86) 0%, rgba(247, 241, 232, 0.88) 52%, var(--rnw-cream) 100%);
}

/* ---------- Frosted glass surface (2027Renewals pattern) ---------- */

.acfc-fhm-frost {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-e3);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.acfc-fhm-frost::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Games grid ---------- */

.acfc-fhm-games {
  position: relative;
  padding: 72px 0;
  background: var(--rnw-cream);
  overflow: hidden;
}

.acfc-fhm-games > .angelcity2026-container {
  position: relative;
  z-index: 1;
}

.acfc-fhm-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  padding-inline: 4px;
}

.acfc-fhm-section-head .acfc-fhm-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 20px);
  margin: 0 0 18px;
  font-size: clamp(0.78rem, 1.7vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.acfc-fhm-section-head .acfc-fhm-eyebrow::before,
.acfc-fhm-section-head .acfc-fhm-eyebrow::after {
  content: '';
  flex: 1 1 0;
  max-width: 88px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--asphalt) 100%);
  opacity: 0.35;
}

.acfc-fhm-section-head .acfc-fhm-eyebrow::after {
  background: linear-gradient(90deg, var(--asphalt) 0%, transparent 100%);
}

.acfc-fhm-section-head h1,
.acfc-fhm-section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--asphalt);
  line-height: 1;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}

.acfc-fhm-games .acfc-fhm-title-final {
  color: var(--asphalt);
}

.acfc-fhm-games .acfc-fhm-title-matches {
  color: var(--asphalt);
}

.acfc-fhm-section-head h1 em,
.acfc-fhm-section-head h2 em {
  font-style: normal;
  color: var(--asphalt);
}

.acfc-fhm-section-head .acfc-fhm-section-lead {
  margin: 0;
  font-weight: 500;
  color: rgba(32, 33, 33, 0.72);
  font-size: clamp(0.95rem, 1.8vw, 1.02rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.acfc-fhm-section-head::after {
  content: '';
  display: block;
  width: min(8rem, 40%);
  height: 3px;
  margin: 26px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--asphalt), transparent);
  opacity: 0.2;
}

.acfc-fhm-eyebrow {
  font-size: clamp(0.88rem, 2.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin: 0 0 12px;
}

.acfc-fhm-section-lead {
  margin: 0;
  color: var(--armour);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (min-width: 769px) {
  .acfc-fhm-section-head .acfc-fhm-section-lead {
    max-width: 30rem;
    margin-inline: auto;
  }
}

.acfc-fhm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-width: 0;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .acfc-fhm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .acfc-fhm-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .acfc-fhm-games {
    padding: 48px 0 max(48px, env(safe-area-inset-bottom));
  }

  .acfc-fhm-section-head {
    margin-bottom: 28px;
  }

  .acfc-fhm-section-head .acfc-fhm-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    gap: 12px;
    margin-bottom: 14px;
  }

  .acfc-fhm-section-head .acfc-fhm-eyebrow::before,
  .acfc-fhm-section-head .acfc-fhm-eyebrow::after {
    max-width: 48px;
  }

  .acfc-fhm-section-head h1,
  .acfc-fhm-section-head h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    margin-bottom: 14px;
  }

  .acfc-fhm-section-head .acfc-fhm-section-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .acfc-fhm-section-head::after {
    margin-top: 22px;
  }

  .acfc-fhm-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .acfc-fhm-games {
    padding: 36px 0 max(36px, env(safe-area-inset-bottom));
  }

  .acfc-fhm-grid {
    gap: 16px;
  }

  .acfc-fhm-section-head {
    margin-bottom: 22px;
  }

  .acfc-fhm-section-head h1,
  .acfc-fhm-section-head h2 {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }

  .acfc-fhm-card {
    border-radius: var(--radius-md);
    min-width: 0;
  }

  .acfc-fhm-card-body {
    padding: 18px 16px 20px;
    gap: 10px;
  }

  .acfc-fhm-card-theme {
    font-size: clamp(1.15rem, 5.5vw, 1.35rem);
  }

  .acfc-fhm-card-sponsor {
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }

  .acfc-fhm-card-datetime {
    font-size: 0.92rem;
  }

  .acfc-fhm-card-ctas {
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .acfc-fhm-card-ctas .angelcity2026-btn {
    font-size: 0.82rem;
    padding: 0.8rem 0.5rem;
    min-height: 44px;
  }

  .acfc-fhm-card-media {
    aspect-ratio: 16 / 10;
  }
}

/* ---------- Match card ---------- */

.acfc-fhm-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: translate 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.acfc-fhm-card:hover,
.acfc-fhm-card:focus-within {
  translate: var(--lift-hover);
  box-shadow: var(--shadow-e3-rosa);
  border-color: rgba(241, 177, 165, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .acfc-fhm-card,
  .acfc-fhm-card-ctas .angelcity2026-btn {
    transition: none;
  }

  .acfc-fhm-card:hover,
  .acfc-fhm-card:focus-within {
    translate: none;
  }

  .acfc-fhm-card-ctas .angelcity2026-btn:hover {
    transform: none;
  }
}

.acfc-fhm-card-media {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
}

.acfc-fhm-card-media-link {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.acfc-fhm-card-media-link:focus-visible {
  outline: 2px solid var(--sol-rosa);
  outline-offset: -4px;
  z-index: 1;
}

.acfc-fhm-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acfc-fhm-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: linear-gradient(168deg, rgba(251, 247, 240, 0.86) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(247, 241, 232, 0.82) 100%);
  border-top: 1px solid rgba(32, 33, 33, 0.06);
}

.acfc-fhm-card-opponent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
  text-align: center;
}

.acfc-fhm-card-team-logo {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 3px;
  border: 2px solid rgba(32, 33, 33, 0.08);
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    var(--shadow-e1);
}

.acfc-fhm-card-opponent-name {
  margin: 0;
  min-width: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141616;
  line-height: 1;
  overflow-wrap: anywhere;
  /* Anton metrics sit optically high next to circular logos */
  transform: translateY(0.08em);
}

.acfc-fhm-card-theme {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 400;
  color: #141616;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
}

.acfc-fhm-card-theme::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, var(--sol-rosa) 0%, rgba(241, 177, 165, 0.25) 100%);
  border-radius: 1px;
}

.acfc-fhm-card-sponsor {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7d80;
  margin-top: 6px;
  line-height: 1.35;
  text-align: center;
}

.acfc-fhm-card-datetime {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a5d60;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
}

.acfc-fhm-card-venue {
  display: block;
  font-weight: 500;
  color: #7a7d80;
}

.acfc-fhm-card-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 4px;
  width: 100%;
}

.acfc-fhm-card-ctas--single {
  grid-template-columns: 1fr;
}

.acfc-fhm-card-ctas .angelcity2026-btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 0.85rem 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.acfc-fhm-card-ctas .angelcity2026-btn-primary {
  box-shadow: 0 10px 28px rgba(241, 177, 165, 0.38);
}

.acfc-fhm-card-ctas .angelcity2026-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(241, 177, 165, 0.48);
}

.acfc-fhm-card-ctas .angelcity2026-btn-secondary,
.acfc-fhm-card-ctas a.angelcity2026-btn-secondary,
.acfc-fhm-card-ctas a.angelcity2026-btn-secondary:visited {
  background: transparent !important;
  border: 2px solid rgba(32, 33, 33, 0.28) !important;
  color: var(--asphalt) !important;
  box-shadow: none;
  min-height: 48px;
  padding: 0.85rem 0.75rem;
}

.acfc-fhm-card-ctas .angelcity2026-btn-secondary:hover,
.acfc-fhm-card-ctas .angelcity2026-btn-secondary:focus,
.acfc-fhm-card-ctas .angelcity2026-btn-secondary:focus-visible,
.acfc-fhm-card-ctas .angelcity2026-btn-secondary:active,
.acfc-fhm-card-ctas a.angelcity2026-btn-secondary:hover,
.acfc-fhm-card-ctas a.angelcity2026-btn-secondary:focus-visible {
  border-color: var(--asphalt) !important;
  color: var(--asphalt) !important;
  background: rgba(32, 33, 33, 0.04) !important;
  transform: translateY(-1px);
}

.acfc-fhm-card-pack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: center;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--asphalt);
  text-decoration: underline;
  text-decoration-color: var(--sol-rosa);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  line-height: 1.4;
  text-align: center;
  min-height: 44px;
}

.acfc-fhm-card-pack:hover {
  text-decoration-color: var(--sol-rosa-dark);
  color: var(--pitch-black);
}

.acfc-fhm-card-pack:focus-visible {
  outline: 2px solid var(--sol-rosa);
  outline-offset: 3px;
  border-radius: 2px;
}

.acfc-fhm-card-body > .acfc-fhm-details {
  margin-top: auto;
}

/* ---------- Coming soon ---------- */

.acfc-fhm-card--soon .acfc-fhm-card-media img {
  filter: saturate(0.72) brightness(0.86);
}

.acfc-fhm-soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.78);
  background: rgba(251, 247, 240, 0.92);
  border: 1px solid rgba(28, 28, 28, 0.16);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.acfc-fhm-card-ctas .acfc-fhm-coming-soon,
.acfc-fhm-card-ctas .acfc-fhm-coming-soon:hover {
  background: rgba(32, 33, 33, 0.06);
  border-color: rgba(32, 33, 33, 0.16);
  color: rgba(32, 33, 33, 0.52);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

/* ---------- Gameday overview ---------- */

.acfc-fhm-details {
  margin-top: 0;
  border: 1px solid rgba(32, 33, 33, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.acfc-fhm-details[open] {
  border-color: rgba(241, 177, 165, 0.55);
  box-shadow: var(--shadow-e2);
  background: linear-gradient(160deg, var(--rnw-panel) 0%, rgba(241, 177, 165, 0.08) 100%);
}

.acfc-fhm-details summary {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--asphalt);
  list-style: none;
  list-style-type: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  padding: 8px 12px;
  margin: 0;
  min-height: 48px;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.acfc-fhm-details summary::-webkit-details-marker,
.acfc-fhm-details summary::marker {
  display: none;
  content: '';
}

.acfc-fhm-details summary:hover {
  background: rgba(241, 177, 165, 0.12);
  color: var(--pitch-black);
}

.acfc-fhm-details summary:focus-visible {
  outline: 2px solid var(--sol-rosa);
  outline-offset: -3px;
}

.acfc-fhm-details[open] summary {
  border-bottom: 1px solid rgba(241, 177, 165, 0.35);
}

.acfc-fhm-details-summary-label {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 36px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.74rem, 3vw, 0.86rem);
  letter-spacing: 0.09em;
  /* Anton sits optically high next to the chevron control */
  transform: translateY(0.06em);
}

.acfc-fhm-details-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(32, 33, 33, 0.06);
  color: var(--asphalt);
  transition: background 0.2s ease, color 0.2s ease;
}

.acfc-fhm-details summary:hover .acfc-fhm-details-chevron {
  background: rgba(32, 33, 33, 0.1);
  color: var(--pitch-black);
}

.acfc-fhm-details[open] summary .acfc-fhm-details-chevron {
  background: rgba(241, 177, 165, 0.35);
  color: var(--pitch-black);
}

.acfc-fhm-details-chevron-svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acfc-fhm-details[open] .acfc-fhm-details-chevron-svg {
  transform: rotate(180deg);
}

.acfc-fhm-overview {
  padding: 14px 16px 18px;
  text-align: left;
}

.acfc-fhm-overview-dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.55rem;
  align-items: baseline;
  padding: 0;
  border: none;
  text-align: left;
}

.acfc-fhm-overview-dl dt {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--armour);
  margin: 0;
  white-space: nowrap;
  text-align: left;
}

.acfc-fhm-overview-dl dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--asphalt);
  text-align: left;
}

.acfc-fhm-overview-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--armour);
  font-style: italic;
}

.acfc-fhm-overview-subhead {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 18px 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--asphalt);
}

.acfc-fhm-overview-subhead::before {
  content: '';
  flex-shrink: 0;
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: var(--sol-rosa);
}

.acfc-fhm-overview-subhead:first-child {
  margin-top: 14px;
}

.acfc-fhm-overview-list {
  margin: 6px 0 0;
  padding-left: 0;
  list-style: none;
}

.acfc-fhm-overview-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--asphalt);
  margin-bottom: 4px;
}

.acfc-fhm-overview-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sol-rosa-dark);
  font-weight: 700;
}

.acfc-fhm-overview-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .acfc-fhm-details {
    margin-top: 16px;
    border-radius: var(--radius-md);
  }

  .acfc-fhm-details summary {
    padding: 12px 14px;
    font-size: 1em;
    letter-spacing: 0.06em;
    align-items: center;
    column-gap: 10px;
  }

  .acfc-fhm-details-summary-label {
    letter-spacing: 0.07em;
  }

  .acfc-fhm-details-chevron {
    width: 34px;
    height: 34px;
  }

  .acfc-fhm-details-chevron-svg {
    width: 18px;
    height: 18px;
  }

  .acfc-fhm-overview {
    padding: 16px 14px 18px;
  }

  .acfc-fhm-overview-dl {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
  }

  .acfc-fhm-overview-dl dt {
    letter-spacing: 0.08em;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(32, 33, 33, 0.08);
    padding-bottom: 0.15rem;
  }

  .acfc-fhm-overview-dl dt:first-child {
    padding-top: 0;
    border-top: none;
  }

  .acfc-fhm-overview-dl dd {
    margin-bottom: 0.5rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .acfc-fhm-details summary {
    padding: 11px 12px;
    column-gap: 8px;
  }

  .acfc-fhm-details-summary-label {
    font-size: clamp(0.72rem, 3.4vw, 0.82rem);
    letter-spacing: 0.065em;
  }

  .acfc-fhm-details-chevron {
    width: 32px;
    height: 32px;
  }

  .acfc-fhm-details-chevron-svg {
    width: 17px;
    height: 17px;
  }

  .acfc-fhm-overview {
    padding: 14px 12px 16px;
  }
}

/* ---------- Closing CTA band (Renewals pattern) ---------- */

.acfc-fhm-cta-band {
  position: relative;
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
  color: var(--line-white);
  border-bottom: 1px solid var(--sol-rosa);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://angelcityfc-pm.web.app/assets/images/tickets-landing/tickets-faq.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.acfc-fhm-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.acfc-fhm-cta-band .angelcity2026-container {
  position: relative;
  z-index: 1;
}

.acfc-fhm-cta-band .acfc-fhm-eyebrow {
  color: var(--sol-rosa);
}

.acfc-fhm-cta-band-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--line-white);
  margin: 0 0 12px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.acfc-fhm-cta-band-title em {
  font-style: normal;
  color: var(--sol-rosa);
}

.acfc-fhm-cta-band-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.acfc-fhm-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.acfc-fhm-cta-band .angelcity2026-btn-primary {
  background: var(--sol-rosa);
  color: var(--pitch-black);
  border-color: var(--sol-rosa);
}

.acfc-fhm-cta-band a.angelcity2026-btn.angelcity2026-btn-primary,
.acfc-fhm-cta-band a.angelcity2026-btn.angelcity2026-btn-primary:hover,
.acfc-fhm-cta-band a.angelcity2026-btn.angelcity2026-btn-primary:focus-visible {
  color: var(--pitch-black);
}

.acfc-fhm-cta-band .angelcity2026-btn-primary:hover {
  background: var(--sol-rosa-dark);
  border-color: var(--sol-rosa-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.acfc-fhm-cta-band .angelcity2026-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--line-white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.acfc-fhm-cta-band .angelcity2026-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--line-white);
  color: var(--line-white);
}

@media (max-width: 768px) {
  .acfc-fhm-cta-band {
    padding: clamp(36px, 6vw, 48px) 0 max(36px, env(safe-area-inset-bottom));
  }

  .acfc-fhm-cta-band .acfc-fhm-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .acfc-fhm-cta-band-title {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .acfc-fhm-cta-band-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-inline: 4px;
  }

  .acfc-fhm-cta-band-actions {
    flex-direction: column;
    align-items: center;
  }

  .acfc-fhm-cta-band-actions .angelcity2026-btn {
    width: min(100%, 320px);
    white-space: normal;
    padding: 0.95rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .acfc-fhm-cta-band {
    padding: 32px 0 max(32px, env(safe-area-inset-bottom));
  }

  .acfc-fhm-cta-band::before {
    left: 6%;
    right: 6%;
  }

  .acfc-fhm-cta-band-actions .angelcity2026-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (hover: none) {
  .acfc-fhm-card:hover {
    translate: none;
  }

  .angelcity2026-btn:hover {
    transform: none;
  }
}

/* Backdrop-filter fallback: opaque surfaces where blur is unsupported */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .acfc-fhm-frost {
    background: rgba(255, 255, 255, 0.94);
  }

  .acfc-fhm-soon-badge {
    background: var(--rnw-paper);
  }
}
