@font-face {
  font-family: "Revans";
  src: url("https://suites.azcardinals.com/wp-content/fonts/Revans-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  ascent-override: 95%;
  descent-override: 15%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Revans";
  src: url("https://suites.azcardinals.com/wp-content/fonts/Revans-Medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  ascent-override: 95%;
  descent-override: 15%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Revans";
  src: url("https://suites.azcardinals.com/wp-content/fonts/Revans-SemiBold.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
  ascent-override: 95%;
  descent-override: 15%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Revans";
  src: url("https://suites.azcardinals.com/wp-content/fonts/Revans-Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
  ascent-override: 95%;
  descent-override: 15%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Arizona Cardinals";
  src: url("https://suites.azcardinals.com/wp-content/fonts/ArizonaCardinals.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* ── Design tokens ── */

:root {
  /* Brand */
  --cardinal-red: #ab0534;
  --cardinal-red-light: #b12d4d;
  --cardinal-red-dark: #7a1c33;
  --yellow: #ffb612;
  --yellow-light: #ffc94d;
  --white: #ffffff;
  --black: #000000;

  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  /* Semantic */
  --header-bg: #000000;
  --body-bg: var(--black);
  --surface: var(--white);
  --text-primary: var(--gray-100);
  --text-secondary: var(--gray-500);
  --text-muted: var(--gray-400);
  --text-inverse: var(--white);
  --border-color: var(--gray-200);

  /* Typography */
  --font-family: "Revans", system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Spacing — generous for premium feel */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 56px;
  --space-3xl: 80px;
  --space-4xl: 120px;
  --space-5xl: 160px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 180ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-smooth);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
}

/* ── Base reset ── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Container ── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

/* ── Typography utilities ── */

.section-title {
  font-family: var(--font-family);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--text-inverse);
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  margin: 0 0 var(--space-xl) 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.white-bg .section-title {
  color: var(--gray-900);
}

.section-subtitle {
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cardinal-red);
  text-align: center;
  margin: 0 0 var(--space-md) 0;
}

.section-description {
  font-family: var(--font-family);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--gray-400);
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.white-bg .section-description {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
  }

  .section-description {
    font-size: var(--text-base);
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: 12px 24px;
    font-size: var(--text-sm);
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button-group .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: var(--text-3xl);
  }

  .section-subtitle {
    font-size: var(--text-xs);
  }
}

/* ── Red underline accent ── */

.red-underline {
  display: inline-block;
  position: relative;
}

.red-underline::after {
  content: "";
  display: block;
  margin: var(--space-md) auto 0;
  width: 80px;
  height: 4px;
  background: var(--cardinal-red);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.red-underline:hover::after {
  width: 120px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  /* Extra padding on top to account for revans spacing */
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow 350ms var(--ease-smooth),
    text-shadow 350ms var(--ease-smooth),
    transform var(--transition-fast);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.btn-primary {
  background: transparent;
  color: var(--cardinal-red-light);
  border: 1px solid var(--cardinal-red);
  box-shadow:
    0 0 8px rgba(151, 35, 63, 0.3),
    inset 0 0 8px rgba(151, 35, 63, 0.1);
  text-shadow: 0 0 6px rgba(177, 45, 77, 0.4);
}

.btn-primary:hover {
  color: var(--white);
  border-color: var(--cardinal-red-light);
  box-shadow:
    0 0 14px rgba(177, 45, 77, 0.5),
    0 0 28px rgba(151, 35, 63, 0.25),
    inset 0 0 12px rgba(151, 35, 63, 0.15);
  text-shadow: 0 0 10px rgba(177, 45, 77, 0.6);
  transform: translateY(-2px);
  background-color: transparent;
}

.white-bg .btn-primary:hover {
  color: var(--cardinal-red-dark);
}

.btn-primary:active {
  transform: translateY(0);
  color: var(--white);
  background-color: var(--cardinal-red-dark);
  border-color: var(--cardinal-red-light);
  box-shadow:
    0 0 10px rgba(151, 35, 63, 0.4),
    inset 0 0 10px rgba(151, 35, 63, 0.15);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.12),
    inset 0 0 8px rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.white-bg .btn-outline {
  color: var(--gray-700);
  border-color: var(--gray-300);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.04);
}

.white-bg .btn-outline:hover {
  color: var(--text-primary);
  border-color: var(--gray-500);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--cardinal-red-light);
  border-color: transparent;
  padding: 14px 20px;
  text-shadow: 0 0 6px rgba(177, 45, 77, 0.3);
}

.btn-ghost:hover {
  background: rgba(151, 35, 63, 0.08);
  text-shadow: 0 0 10px rgba(177, 45, 77, 0.5);
}

/* ── Solid red CTA — pairs with .btn base ── */
.btn-solid {
  background-color: var(--cardinal-red);
  color: var(--white);
  border: 1px solid var(--cardinal-red);
  width: 220px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px -2px rgba(177, 45, 77, 0.4),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
}
/* Diagonal sheen that sweeps across on hover */
.btn-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-solid:hover {
  background-color: var(--cardinal-red-light);
  border-color: var(--cardinal-red-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px -2px rgba(177, 45, 77, 0.7),
    0 4px 8px -2px rgba(0, 0, 0, 0.3);
}
.btn-solid:hover::before {
  left: 150%;
}
.btn-solid:active {
  transform: translateY(0);
  background-color: var(--cardinal-red-dark);
  border-color: var(--cardinal-red-dark);
  box-shadow:
    0 2px 8px -1px rgba(151, 35, 63, 0.5),
    0 1px 2px -1px rgba(0, 0, 0, 0.3);
}

/* Button group */

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ── Scroll entrance animations ── */

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms var(--ease-smooth),
    transform 700ms var(--ease-smooth);
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.delay-1 {
  transition-delay: 80ms;
}
.animate-in.delay-2 {
  transition-delay: 160ms;
}
.animate-in.delay-3 {
  transition-delay: 240ms;
}
.animate-in.delay-4 {
  transition-delay: 320ms;
}
.animate-in.delay-5 {
  transition-delay: 400ms;
}

/* Fade-only variant — no vertical movement */
.animate-in.fade-only {
  transform: none;
}

/* Accessible: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ICONS */

.icon-card__icon .icon.ticket-check svg,
.icon-card__icon .icon.shopping-cart svg,
.icon-card__icon .icon.road svg,
.icon-card__icon .icon.parking svg,
.icon-card__icon .icon.hand-platter svg,
.icon-card__icon .icon.gift svg,
.icon-card__icon .icon.door-open svg,
.icon-card__icon .icon.door-closed-locked svg {
  fill: transparent;
  color: var(--cardinal-red);
}

section#upcoming-events {
  scroll-margin-top: 60px;
}

/* Form Styling */

.script-section {
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(227, 225, 218, 0.22);
  --input-focus: rgba(227, 225, 218, 0.55);
  .bUtWCM,
  .cMGHVh {
    font-family:
      "Revans",
      system-ui,
      -apple-system,
      sans-serif;
  }

  .script-section__title {
    margin-bottom: 2rem;
  }
  .DNPCm {
    padding-top: 0 !important;
  }
  .iinbkA {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  #isPasted strong span {
    font-size: 24px !important;
  }

  .fplpHI:focus,
  .haPaxs:focus,
  .eqMkwk:focus,
  .hKPxHm:focus,
  .cGtDnc:focus,
  .faxYOq:focus,
  .etJqGi:focus,
  .fxkrFj:focus,
  .jYeyZE:focus,
  .cYTpnw:focus,
  .icNxmS:focus {
    border-color: var(--input-focus) !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }
  .fplpHI,
  .haPaxs,
  .eqMkwk,
  .hKPxHm,
  .cGtDnc,
  .faxYOq,
  .etJqGi,
  .fxkrFj,
  .jYeyZE,
  .cYTpnw,
  .icNxmS {
    padding: 8px 12px !important;
    font-size: 0.84rem !important;
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 5px !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
  }

  .fUOtCX::before,
  .beCKJT::before {
    margin-bottom: calc(5px);
  }
}
