/* =========================================================
   Hammer Sports Officials
   Main Stylesheet
   ========================================================= */

/* =========================
   Reset / Base
   ========================= */

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

:root {
  --navy: #06283a;
  --navy-dark: #021722;
  --blue: #0b83bd;
  --brown: #6e4b40;
  --cream: #eee7dc;
  --white: #ffffff;
  --text: #242424;
  --muted: #606060;
  --border: #d8d8d8;
  --section-muted: #fafafa;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  --container: 1120px;
  --radius: 18px;
}

html {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   Reusable Layout
   ========================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.content-section {
  padding: 46px 0 70px;
}

.section-muted {
  background: var(--section-muted);
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #d0d0d0;
}

.section-heading {
  max-width: 780px;
  margin: 0 0 34px;
}

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

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.page-title {
  max-width: 960px;
  margin: 0 0 26px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.prose {
  max-width: 1120px;
  margin-inline: auto;
}

.prose p {
  margin: 0 0 22px;
  color: #444444;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #d64a35, #f68b1f);
  box-shadow: 0 12px 24px rgba(214, 74, 53, 0.22);
}

.btn-secondary {
  color: var(--white);
  background: var(--navy);
}

/* =========================
   Text Links
   ========================= */

.text-link {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(214, 74, 53, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: #d64a35;
  text-decoration-color: #d64a35;
}

/* =========================
   Floating Header Nav
   ========================= */

.site-header {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.floating-nav {
  pointer-events: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(110, 75, 64, 0.45);
  border-radius: 16px;
  overflow: visible;
  background: linear-gradient(#f3ede4, #ded3c5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu li {
  position: relative;
}

.nav-menu a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 0 26px;
  border: 0;
  border-right: 1px solid rgba(110, 75, 64, 0.35);
  background: transparent;
  color: var(--brown);
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-menu li:last-child > a {
  border-right: 0;
}

.nav-menu a:hover,
.dropdown-toggle:hover,
.nav-menu a.is-active {
  color: #1b1b1b;
  background: rgba(255, 255, 255, 0.45);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #f6f0e8;
  border: 1px solid rgba(110, 75, 64, 0.25);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  width: 100%;
  min-height: auto;
  padding: 0.7rem 0.8rem;
  border-right: 0;
  border-radius: 8px;
  justify-content: flex-start;
}

.nav-toggle {
  display: none;
}

/* =========================
   Hero Banner
   ========================= */

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #8d8476;
}

.hero-banner-bg,
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-overlay {
  background:
    linear-gradient(
      rgba(180, 154, 103, 0.28),
      rgba(180, 154, 103, 0.28)
    );
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  min-height: 520px;
  margin-inline: auto;
}

.hero-main-logo {
  position: absolute;
  left: 40%;
  top: 105px;
  width: clamp(250px, 10vw, 370px);
  transform: translateX(-50%) translateY(-90px);
  opacity: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
  animation: logoDrop 1100ms cubic-bezier(0.22, 1.15, 0.36, 1) 700ms forwards;
}

.hero-support {
  position: absolute;
  opacity: 0;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.2));
}

.hero-support-left {
  left: 10%;
  top: 70px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  width: clamp(85px, 7vw, 125px);
  animation: fadePop 650ms ease 1700ms forwards;
}

.hero-support-right {
  right: 15%;
  top: 85px;
  width: clamp(135px, 11vw, 205px);
  animation: fadePop 650ms ease 1900ms forwards;
}

.hero-eat-sleep {
  position: absolute;
  right: 14%;
  top: 288px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7f1df;
  font-size: clamp(2.2rem, 1vw, 4.6rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  text-shadow:
    5px 5px 0 rgba(38, 93, 92, 0.75),
    -3px -3px 0 rgba(195, 83, 63, 0.65),
    0 10px 18px rgba(0, 0, 0, 0.22);
  animation: riseIn 650ms ease 120ms forwards;
}

.hero-eat-sleep span {
  display: inline-block;
}

.hero-practice {
  position: absolute;
  left: 55%;
  top: 330px;
  width: clamp(118px, 10vw, 145px);
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 650ms ease 1450ms forwards;
}

/* =========================
   Intro / Slideshow
   ========================= */

.intro-section {
  background: var(--white);
}

.intro-prose::after {
  content: "";
  display: block;
  clear: both;
}

.intro-float-slideshow {
  float: right;
  width: min(42%, 520px);
  margin: 8px 0 24px 42px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.intro-buttons {
  clear: both;
  margin-top: 34px;
}

.photo-slideshow {
  position: relative;
  width: 100%;
  min-height: 330px;
  overflow: hidden;
  background: #1f2a30;
}

.photo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.photo-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.photo-slide img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.photo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 23, 34, 0.38),
      rgba(2, 23, 34, 0.04)
    );
  pointer-events: none;
}

.photo-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.photo-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.photo-dot.is-active {
  width: 28px;
  background: var(--white);
}

/* =========================
   Media Cards / Assigners
   ========================= */

.media-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assigner-card {
  max-width: 430px;
  margin-inline: auto;
  text-align: center;
}

.media-card-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.media-card-body {
  padding: 22px 18px 26px;
}

.media-card-body h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
}

/* =========================
   Quick Cards
   ========================= */

.quick-card {
  position: relative;
  min-height: 230px;
  padding: 28px 26px 30px;
  border: 1px solid #dddddd;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 131, 189, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.11);
}

.quick-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, #f4b82f, #ffd66b);
  box-shadow: 0 12px 24px rgba(244, 184, 47, 0.22);
  font-size: 1.65rem;
  line-height: 1;
}

.quick-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* =========================
   Recruitment
   ========================= */

.recruitment-card {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recruitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.recruitment-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.recruitment-button {
  margin-top: 28px;
  min-width: 220px;
  color: #111111;
  background: linear-gradient(135deg, #f4b82f, #ffd66b);
  box-shadow: 0 12px 24px rgba(244, 184, 47, 0.28);
}

/* =========================
   Home Testimonials
   ========================= */

.testimonial-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(11, 131, 189, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f2ec 100%);
  border-top: 1px solid rgba(110, 75, 64, 0.25);
  border-bottom: 1px solid rgba(110, 75, 64, 0.25);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  padding: 42px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #d64a35, #f68b1f);
}

.quote-mark {
  position: absolute;
  right: 28px;
  top: 18px;
  color: rgba(6, 40, 58, 0.08);
  font-size: 8rem;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: #3f3f3f;
  font-size: 1.03rem;
  line-height: 1.7;
}

.testimonial-card p:last-of-type {
  margin-bottom: 0;
}

.testimonial-author {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(110, 75, 64, 0.16);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 900;
}

.testimonial-author span {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 700;
}

/* =========================
   Interior Page Templates
   ========================= */

.inner-page {
  min-height: 60vh;
  background: var(--white);
}

.no-hero-page {
  padding-top: 86px;
}

.page-hero {
  position: relative;
  padding: 132px 0 78px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      rgba(2, 23, 34, 0.96),
      rgba(6, 40, 58, 0.88)
    ),
    radial-gradient(circle at 82% 18%, rgba(244, 184, 47, 0.35), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(244, 184, 47, 0.14);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(214, 74, 53, 0.16);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: #ffd66b;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.3vw, 1.24rem);
  line-height: 1.62;
}

.page-hero-large {
  padding: 156px 0 112px;
  background:
    linear-gradient(
      135deg,
      rgba(2, 23, 34, 0.94),
      rgba(6, 40, 58, 0.76)
    ),
    radial-gradient(circle at 78% 18%, rgba(244, 184, 47, 0.34), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(214, 74, 53, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.hero-actions {
  margin-top: 34px;
}

.content-block {
  max-width: 920px;
  margin-inline: auto;
  padding: 42px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.08);
}

.content-block h1,
.content-block h2,
.content-block h3 {
  color: var(--navy);
  line-height: 1.12;
}

.content-block h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.content-block h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
  letter-spacing: -0.045em;
}

.content-block h3 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.content-block ul,
.content-block ol {
  margin: 0 0 24px;
  padding-left: 1.25rem;
  color: #444444;
}

.content-block li {
  margin-bottom: 10px;
}

.page-section-tight {
  padding-top: 42px;
}

.utility-block {
  max-width: 860px;
}

.utility-content {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(110, 75, 64, 0.18);
}
/* =========================
   Rules Pages
   ========================= */

.rules-page,
.rules-search-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.rules-block,
.rules-search-block {
  max-width: 1120px;
}

.rules-page-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.rules-page-intro h1 {
  margin-bottom: 14px;
}

.rules-page-intro p {
  max-width: 760px;
}

.rules-search-callout {
  margin: 34px 0 38px;
  padding: 26px 28px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.14), transparent 26%),
    #f7f4ee;
  border: 1px solid rgba(110, 75, 64, 0.14);
}

.rules-search-callout h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.035em;
}

.rules-search-callout p {
  margin-bottom: 12px;
}

.rules-status {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fbfd;
  color: var(--muted);
  font-weight: 700;
}

.rules-grouped-list {
  display: grid;
  gap: 26px;
}

.rules-sport-section {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 14px 34px rgba(6, 40, 58, 0.07);
}

.rules-sport-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.rules-sport-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rules-sport-heading span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.rulebook-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.rulebook-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(110, 75, 64, 0.12);
}

.rulebook-list-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.rulebook-list-item a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
  line-height: 1.35;
}

.rulebook-list-item a:hover {
  color: #d64a35;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rulebook-tags {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.rulebook-list-item-disabled {
  color: var(--muted);
}

.rulebook-missing {
  color: #b73827;
  font-size: 0.86rem;
  font-weight: 800;
}

/* Rulebook Search Form */

.rulebook-search-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 26px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.15), transparent 26%),
    #f7f4ee;
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 14px 34px rgba(6, 40, 58, 0.07);
}

.rulebook-search-field {
  display: grid;
  gap: 8px;
}

.search-field-wide {
  grid-column: 1 / -1;
}

.rulebook-search-field label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rulebook-search-field input,
.rulebook-search-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(6, 40, 58, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(6, 40, 58, 0.05);
}

.rulebook-search-field input:focus,
.rulebook-search-field select:focus {
  outline: 3px solid rgba(244, 184, 47, 0.32);
  border-color: rgba(214, 74, 53, 0.45);
}

.rulebook-search-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.rules-search-summary {
  margin: 0 0 22px;
}

.rules-search-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.rulebook-results-list {
  display: grid;
  gap: 16px;
}

.rulebook-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 12px 28px rgba(6, 40, 58, 0.06);
}

.rulebook-result-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.rulebook-result-card p {
  margin: 0;
}

.rulebook-result-tags {
  margin: 0 0 8px;
  color: #d64a35;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.rulebook-result-actions {
  display: flex;
  justify-content: flex-end;
}

.rulebook-disabled-btn {
  opacity: 0.6;
  pointer-events: none;
}

.rules-no-results {
  margin-top: 24px;
  padding: 28px;
  border-radius: 18px;
  background: #fff7f2;
  border: 1px solid rgba(214, 74, 53, 0.18);
}

.rules-no-results h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.4rem;
}

.rules-no-results p {
  margin: 0;
}
/* =========================
   FAQ Page
   ========================= */

.faq-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.faq-block {
  max-width: 1120px;
}

.faq-block h1 {
  margin-bottom: 20px;
}

.faq-content {
  display: grid;
  gap: 34px;
}

.faq-category {
  display: grid;
  gap: 22px;
}

.faq-category-heading {
  padding: 30px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.12);
}

.faq-category-heading .eyebrow {
  color: #ffd66b;
}

.faq-category-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.faq-section {
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 14px 34px rgba(6, 40, 58, 0.07);
}

.faq-section h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.faq-item {
  border-top: 1px solid rgba(110, 75, 64, 0.15);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(110, 75, 64, 0.15);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 42px 18px 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #d64a35, #f68b1f);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  margin: 0 0 16px;
  color: #444444;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(214, 74, 53, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-answer a:hover {
  color: #d64a35;
  text-decoration-color: #d64a35;
}

.faq-answer .button-row {
  margin-top: 18px;
}

.faq-callout {
  margin-top: 22px;
  padding: 22px;
  border-radius: 18px;
  background: #fff7f2;
  border-left: 6px solid #d64a35;
}

.faq-callout p {
  color: #333333;
}

.faq-callout strong {
  color: var(--navy);
}
/* =========================
   Contact Page
   ========================= */

.contact-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.hammer-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.hammer-contact-main {
  min-width: 0;
}

.hammer-contact-form-card {
  padding: 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.15), transparent 26%),
    var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.09);
}

.hammer-contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hammer-contact-select {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(6, 40, 58, 0.18);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(6, 40, 58, 0.05);
}

.hammer-contact-select:focus {
  outline: 3px solid rgba(244, 184, 47, 0.32);
  border-color: rgba(214, 74, 53, 0.45);
}

.hammer-contact-preview-card {
  margin: 22px 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: #f7f4ee;
  border: 1px solid rgba(110, 75, 64, 0.14);
}

.hammer-contact-preview-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hammer-contact-subject-preview {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
}

.hammer-contact-email-button {
  width: fit-content;
}

.hammer-contact-helper-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hammer-contact-sidebar {
  display: grid;
  gap: 18px;
}

.hammer-contact-panel {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 14px 34px rgba(6, 40, 58, 0.07);
}

.hammer-contact-panel h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}

.hammer-contact-panel p {
  margin: 0 0 14px;
  color: #444444;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hammer-contact-panel p:last-child {
  margin-bottom: 0;
}

.hammer-contact-security-panel {
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.16), transparent 26%),
    #fff7f2;
  border-left: 6px solid #d64a35;
}

.hammer-contact-resource-links {
  display: grid;
  gap: 10px;
}

.hammer-contact-resource-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f4ee;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.hammer-contact-resource-links a:hover {
  transform: translateY(-2px);
  background: #fff7f2;
  color: #d64a35;
}
/* =========================
   Hire Page
   ========================= */

.hire-page .content-block {
  max-width: 1120px;
}

.info-card-grid {
  display: grid;
  gap: 20px;
  margin: 34px 0 42px;
}

.info-card-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-info-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 18px;
  background: #f7f4ee;
  border: 1px solid rgba(110, 75, 64, 0.14);
}

.mini-info-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.mini-info-card p {
  margin: 0;
  color: #566371;
  font-size: 0.98rem;
  line-height: 1.6;
}

.feature-list {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0 0 16px;
  padding: 18px 18px 18px 48px;
  border-radius: 16px;
  background: #f8fbfd;
  border: 1px solid rgba(6, 40, 58, 0.1);
  color: #444444;
  line-height: 1.58;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #d64a35, #f68b1f);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-list strong {
  color: var(--navy);
}

.feature-list-note {
  display: block;
  margin-top: 10px;
}

/* =========================
   Hire Page Testimonials
   ========================= */

.hire-testimonials-section {
  position: relative;
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.08), transparent 28%),
    linear-gradient(180deg, #eef3fb 0%, #ffffff 42%, #f7f4ee 100%);
  border-top: 1px solid rgba(110, 75, 64, 0.22);
  border-bottom: 1px solid rgba(110, 75, 64, 0.2);
}

.hire-testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(920px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(110, 75, 64, 0.34),
    transparent
  );
  transform: translateX(-50%);
}

.hire-testimonials-section .section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.hire-testimonials-section .section-heading .eyebrow {
  color: #666666;
}

.hire-testimonials-section .section-heading h2 {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--text);
  font-size: clamp(1.95rem, 2.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hire-testimonials-section .section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hire-testimonial-grid {
  max-width: 1120px;
  margin-inline: auto;
  column-count: 2;
  column-gap: 28px;
}

.hire-testimonial-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 28px;
  padding: 42px 42px 38px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.08);
  overflow: hidden;
  break-inside: avoid;
  page-break-inside: avoid;
}

.hire-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #d64a35, #f68b1f);
}

.hire-testimonial-card .quote-mark {
  position: absolute;
  right: 34px;
  top: 24px;
  color: rgba(6, 40, 58, 0.08);
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hire-testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #3f3f3f;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hire-testimonial-card p:last-of-type {
  margin-bottom: 0;
}

.hire-testimonial-card .testimonial-author {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(110, 75, 64, 0.16);
}

.hire-testimonial-card .testimonial-author strong,
.hire-testimonial-card .testimonial-author span {
  display: block;
}

.hire-testimonial-card .testimonial-author strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 900;
}

.hire-testimonial-card .testimonial-author span {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 700;
}

.hire-testimonial-full {
  max-width: none;
}

/* =========================
   Hire Contact Section
   ========================= */

.hire-contact-section {
  position: relative;
  padding: 82px 0 92px;
  background:
    linear-gradient(180deg, #eef3fb 0%, #f7f4ee 100%);
  border-top: 1px solid rgba(110, 75, 64, 0.22);
}

.hire-contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(920px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(110, 75, 64, 0.34),
    transparent
  );
  transform: translateX(-50%);
}

.hire-contact-section .contact-panel {
  box-shadow: 0 22px 54px rgba(6, 40, 58, 0.1);
}

/* =========================
   Contact Cards
   ========================= */

.contact-panel {
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.16), transparent 24%),
    var(--white);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: #f7f4ee;
  border: 1px solid rgba(110, 75, 64, 0.14);
  color: var(--navy);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(6, 40, 58, 0.1);
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f4b82f, #ffd66b);
  box-shadow: 0 12px 24px rgba(244, 184, 47, 0.22);
  font-size: 1.45rem;
}

.contact-method-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   Become an Official Page
   ========================= */

.official-page-copy {
  max-width: 1120px;
  margin-inline: auto;
}

.official-page-copy h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.official-page-copy p {
  max-width: 1100px;
  margin: 0 0 26px;
  color: #444444;
  font-size: clamp(1.18rem, 1.4vw, 1.34rem);
  line-height: 1.7;
}

.official-page-copy .button-row {
  margin-top: 28px;
}

.official-support-copy {
  padding-top: 4px;
}

.official-steps-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 184, 47, 0.13), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(11, 131, 189, 0.1), transparent 30%),
    var(--section-muted);
}

.official-step-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.official-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 42px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 16px 38px rgba(6, 40, 58, 0.08);
  overflow: hidden;
}

.official-step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #f4b82f, #d64a35);
}

.official-step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: #111111;
  background: linear-gradient(135deg, #f4b82f, #ffd66b);
  box-shadow: 0 14px 28px rgba(244, 184, 47, 0.24);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.official-step-content {
  max-width: none;
}

.official-step-content h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.official-step-content p {
  margin: 0 0 18px;
  color: #444444;
  font-size: 1rem;
  line-height: 1.65;
}

.official-step-content p:last-child {
  margin-bottom: 0;
}

.official-step-content .feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.official-step-content .feature-list li {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 0 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #444444;
  line-height: 1.6;
}

.official-step-content .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #d64a35, #f68b1f);
  font-size: 0.7rem;
  font-weight: 900;
}

.official-step-content .feature-list strong {
  color: var(--navy);
}

/* =========================
   Polished Testimonials
   ========================= */

.polished-testimonials-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 131, 189, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  border-top: 1px solid rgba(110, 75, 64, 0.18);
  border-bottom: 1px solid rgba(110, 75, 64, 0.18);
}

.polished-testimonials-section .section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.polished-testimonials-section .section-heading h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.25rem);
}

.polished-testimonial-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.polished-testimonial-card {
  position: relative;
  min-height: 100%;
  padding: 42px 42px 38px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.08);
  overflow: hidden;
}

.polished-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #d64a35, #f68b1f);
}

.polished-testimonial-card .quote-mark {
  position: absolute;
  right: 34px;
  top: 24px;
  color: rgba(6, 40, 58, 0.08);
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.polished-testimonial-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #3f3f3f;
  font-size: 1.02rem;
  line-height: 1.72;
}

.polished-testimonial-card p:last-of-type {
  margin-bottom: 0;
}

.polished-testimonial-card .testimonial-author {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(110, 75, 64, 0.16);
}

.polished-testimonial-card .testimonial-author strong,
.polished-testimonial-card .testimonial-author span {
  display: block;
}

.polished-testimonial-card .testimonial-author strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 900;
}

.polished-testimonial-card .testimonial-author span {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-wide {
  min-height: 360px;
}

/* =========================
   Site Info Cards
   ========================= */

.site-info-section {
  background: #eef3fb;
}

.site-info-grid {
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.info-card {
  position: relative;
  min-height: 100%;
  padding: 34px 30px 36px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.1);
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #f4b82f, #d64a35);
}

.info-card h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.2;
}

.info-card h3:first-of-type {
  margin-top: 0;
}

.info-card p {
  margin: 0 0 20px;
  color: #566371;
  font-size: 0.98rem;
  line-height: 1.65;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card strong {
  color: var(--navy);
}

.info-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  color: #566371;
  font-size: 0.98rem;
  line-height: 1.45;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d64a35;
  font-weight: 900;
}
/* =========================
   Uniform & Equipment Page
   ========================= */

.uniform-equipment-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.uniform-equipment-block {
  max-width: 1120px;
}

.uniform-equipment-block h1 {
  margin-bottom: 24px;
}

.uniform-lead {
  max-width: 1040px;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
}

.uniform-guide-content {
  display: grid;
  gap: 26px;
}

.uniform-sport-section {
  padding: 30px 30px 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 14px 34px rgba(6, 40, 58, 0.07);
}

.uniform-sport-section h2 {
  position: relative;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.uniform-sport-section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d64a35, #f68b1f);
}

.uniform-subsection {
  margin-top: 24px;
}

.uniform-subsection:first-of-type {
  margin-top: 0;
}

.uniform-subsection h3,
.uniform-callout h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.uniform-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #444444;
}

.uniform-list li {
  margin-bottom: 10px;
  line-height: 1.58;
}

.uniform-list li:last-child {
  margin-bottom: 0;
}

.uniform-list strong {
  color: var(--navy);
}

.uniform-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 5px solid #f4b82f;
  border-radius: 14px;
  background: #fffaf0;
  color: #444444;
  line-height: 1.58;
}

.uniform-shopping-section {
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 184, 47, 0.14), transparent 26%),
    #ffffff;
}

.uniform-callout {
  margin-top: 28px;
  padding: 26px;
  border-radius: 18px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(6, 40, 58, 0.16);
}

.uniform-callout h3,
.uniform-callout p {
  color: #ffffff;
}

.uniform-callout p {
  margin-bottom: 22px;
}

.uniform-callout .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
/* =========================
   Footer
   ========================= */

.site-footer {
  color: var(--white);
  background: var(--navy-dark);
}

.site-footer .container {
  width: min(1320px, calc(100% - 80px));
}

.footer-logo {
  width: 320px;
  max-width: 100%;
  margin: 0 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 72px;
  padding: 70px 0 64px;
  align-items: start;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 16px;
  color: var(--white);
  line-height: 1.15;
}

.footer-column h2 {
  font-size: 1.35rem;
}

.footer-column h3 {
  font-size: 1rem;
}

.footer-column p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
  font-weight: 800;
}

/* =========================
   Animations
   ========================= */

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoDrop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-90px) scale(0.93);
  }

  62% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px) scale(1.03);
  }

  82% {
    transform: translateX(-50%) translateY(-6px) scale(0.995);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes fadePop {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  70% {
    opacity: 1;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* =========================
   About Page
   ========================= */

.about-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.about-page-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.about-page-heading h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-assignor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.about-assignor-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(110, 75, 64, 0.14);
  box-shadow: 0 18px 44px rgba(6, 40, 58, 0.08);
  overflow: hidden;
}

.about-assignor-photo {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  background: #e8e2d8;
}

.about-assignor-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 26px 30px;
}

.about-assignor-body h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-card-intro {
  margin: 0 0 16px;
  color: #444444;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-role-list {
  margin: 0 0 30px;
  padding-left: 1.15rem;
  color: #444444;
}

.about-role-list li {
  margin-bottom: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-role-list strong {
  color: var(--navy);
}

.about-bio {
  margin-top: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(110, 75, 64, 0.16);
}

.about-bio h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.about-bio p {
  margin: 0 0 18px;
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.62;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

/* =========================
   Payment Process Page
   ========================= */

.payment-process-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(11, 131, 189, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.payment-process-block {
  max-width: 1120px;
}

.payment-process-block h1 {
  margin-bottom: 24px;
}



.payment-option {
  margin: 0 0 38px;
}

.payment-option:last-of-type {
  margin-bottom: 0;
}

.payment-option h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.payment-option p {
  margin: 0 0 18px;
}

.payment-alert {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 6px solid #d64a35;
  border-radius: 16px;
  background: #fff7f2;
}

.payment-alert p {
  margin: 0 0 14px;
  color: #333333;
}

.payment-alert p:last-child {
  margin-bottom: 0;
}

.payment-alert strong {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}



.payment-final-note {
  margin-top: 38px;
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 40, 58, 0.16);
}

.payment-final-note p {
  margin: 0;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.55;
}

.payment-final-note strong {
  color: var(--white);
}
/* =========================
   Responsive
   ========================= */

@media (max-width: 1180px) {
  .hero-support-left {
    left: 24%;
  }

  .hero-support-right {
    right: 20%;
  }

  .hero-eat-sleep {
    right: 8%;
  }
}

@media (max-width: 980px) {
  /* Mobile / Tablet Header Nav */
  .site-header {
    position: fixed;
    top: 10px;
    left: 12px;
    right: 12px;
    z-index: 999;
    justify-content: flex-end;
    pointer-events: none;
  }

  .floating-nav {
    position: relative;
    pointer-events: auto;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 40px;
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    background: rgba(245, 240, 233, 0.96);
    box-shadow: var(--shadow);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--brown);
  }

  .nav-menu {
    position: absolute;
    top: 48px;
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(#f3ede4, #ded3c5);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(110, 75, 64, 0.2);
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.is-open .dropdown-menu {
    display: block;
  }

  /* Tablet Hero - still visible on tablets */
  .hero-banner,
  .hero-stage {
    min-height: 430px;
  }

  .hero-main-logo {
    top: 128px;
    width: 250px;
  }

  .hero-support-left {
    left: 9%;
    top: 144px;
    width: 78px;
  }

  .hero-support-right {
    right: 8%;
    top: 144px;
    width: 135px;
  }

  .hero-eat-sleep {
    right: 7%;
    top: 285px;
    font-size: 2rem;
  }

  .hero-practice {
    top: 305px;
    width: 115px;
  }

  .intro-float-slideshow {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .four-column,
  .info-card-grid.two-column,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .site-info-grid,
  .official-step-card {
    grid-template-columns: 1fr;
  }

  .official-step-card {
    gap: 20px;
    padding: 30px 24px;
  }

  .official-step-number {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .polished-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hire-testimonial-grid {
    column-count: 1;
  }

  .site-info-section {
    padding: 34px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-assignor-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .about-assignor-photo {
    height: 420px;
  }

  .rules-page-intro {
    flex-direction: column;
  }

  .rulebook-search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rulebook-link-list {
    grid-template-columns: 1fr;
  }

  .rulebook-list-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(110, 75, 64, 0.12);
  }

  .rulebook-list-item:last-child {
    border-bottom: 0;
  }

  .rulebook-result-card {
    grid-template-columns: 1fr;
  }

  .rulebook-result-actions {
    justify-content: flex-start;
  }

  .contact-card-grid,
  .contact-resource-grid {
    grid-template-columns: 1fr;
  }

  .hammer-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-footer .container {
    width: min(100% - 28px, var(--container));
  }

  .content-section {
    padding: 38px 0 58px;
  }

  .page-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .page-hero {
    padding: 112px 0 64px;
  }

  .page-hero-large {
    padding: 126px 0 78px;
  }

  .no-hero-page {
    padding-top: 72px;
  }

  .content-block {
    padding: 30px 24px;
    border-radius: 18px;
  }

  /* 
     Phone-only homepage fix:
     Hide the large hero/logo/banner area on iPhone-sized screens.
     Desktop and tablet remain unchanged.
  */
  .hero-banner {
    display: none;
  }

  /*
     Adds breathing room below the fixed hamburger nav
     now that the large hero banner is hidden.
  */
  .intro-section {
    padding-top: 92px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .four-column {
    grid-template-columns: 1fr;
  }

  .media-card-image {
    height: 380px;
  }

  .testimonial-card,
  .polished-testimonial-card,
  .hire-testimonial-card {
    padding: 34px 26px 32px;
    border-radius: 20px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .quote-mark,
  .polished-testimonial-card .quote-mark,
  .hire-testimonial-card .quote-mark {
    right: 22px;
    top: 18px;
    font-size: 5.5rem;
  }

  .official-page-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .official-page-copy p {
    font-size: 1.05rem;
  }

  .hire-testimonials-section,
  .hire-contact-section {
    padding: 58px 0 64px;
  }

  .hire-testimonials-section .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .info-card {
    padding: 30px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .footer-bottom-inner {
    padding: 18px 0;
  }

  .about-page-heading {
    margin-bottom: 32px;
  }

  .about-page-heading h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .about-assignor-body {
    padding: 24px 22px 28px;
  }

  .about-assignor-photo {
    height: 360px;
  }

  .payment-alert {
    padding: 20px;
  }

  .payment-final-note {
    padding: 22px;
  }

  .uniform-sport-section {
    padding: 24px 22px 26px;
  }

  .uniform-callout {
    padding: 22px;
  }

  .rulebook-search-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rules-sport-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .rulebook-list-item {
    padding: 15px 18px;
  }

  .rulebook-result-card {
    padding: 20px;
  }

  .faq-category-heading,
  .faq-section {
    padding: 24px 22px;
  }

  .faq-item summary {
    font-size: 1rem;
    padding-right: 38px;
  }

  .faq-callout {
    padding: 20px;
  }

  .contact-primary-card,
  .contact-info-card,
  .contact-resource-section {
    padding: 24px 22px;
  }

  .contact-email-display {
    width: 100%;
  }

  .hammer-contact-form-card,
  .hammer-contact-panel {
    padding: 24px 22px;
  }

  .hammer-contact-email-button {
    width: 100%;
  }
}