﻿/* Boston Harbor FC — responsive layout + secure-page base */
:root {
  --navy: #050b16;
  --navy-deep: #0a1424;
  --navy-panel: rgba(8, 18, 35, 0.92);
  --gold: #c8922f;
  --gold-hover: #ddab52;
  --cream: #f5f2ea;
  --mist: #c9d4e2;
  --error: #e07a5f;
  --font-body: "Barlow Condensed", Arial Narrow, Arial, sans-serif;
  --font-display: "Oswald", Impact, "Arial Narrow", sans-serif;
  --ease: 180ms ease;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--navy);
}

a {
  color: var(--gold);
}

a:hover {
  color: var(--gold-hover);
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

input::placeholder {
  color: var(--mist);
}

button,
input,
a,
.nav-link,
.nav-toggle,
.crest {
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), opacity var(--ease);
}

button:focus-visible,
input:focus-visible,
.nav-link:focus-visible,
.nav-toggle:focus-visible,
.crest:focus-visible,
.social svg:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}

body:has(.mobile-drawer.is-open) {
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy) url("bg-skyline.png") no-repeat center center;
  background-size: cover;
}

/* Full-width fluid stage — cqw sizes scale with the viewport. */
.container-fluid {
  position: relative;
  width: 100%;
  height: 100%;
  container-type: inline-size;
}

.wash-left,
.wash-bottom,
.wash-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wash-left {
  background: linear-gradient(
    to right,
    rgba(5, 10, 22, 0.95) 27%,
    rgba(5, 11, 24, 0.82) 42%,
    rgba(5, 11, 22, 0.45) 52%,
    rgba(5, 11, 22, 0.12) 60%,
    transparent 62%
  )
}

.wash-bottom {
  background: linear-gradient(
    to top,
    rgba(5, 11, 22, 0.92) 0%,
    rgba(5, 11, 22, 0.65) 14%,
    rgba(5, 11, 22, 0.25) 28%,
    transparent 42%
  );
}

.wash-vignette {
  background: radial-gradient(80% 60% at 75% 40%, transparent 40%, rgba(5, 11, 22, 0.18) 100%);
}

.player {
  position: absolute;
  right: -2%;
  left: auto;
  top: 50%;
  transform: translateY(-48%);
  transform-origin: center right;
  width: min(68cqw, 72rem);
  max-width: none;
  height: auto;
  max-height: 98vh;
  object-fit: contain;
  object-position: center right;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* —— NAV —— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: calc(1rem + var(--safe-top)) calc(3.5% + var(--safe-right)) 0.85rem calc(3.5% + var(--safe-left));
}

.crest {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  grid-column: 1;
  height: clamp(7rem, 12cqw, 11rem);
  width: auto;
  cursor: pointer;
  filter: drop-shadow(0 0.3cqw 0.7cqw rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

.crest img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.2cqw, 2.25rem);
  flex-wrap: nowrap;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.6cqw, 1.35rem);
  flex-shrink: 0;
}

.nav-link {
  font-size: clamp(0.68rem, 1.05cqw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.nav-link.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-link:hover {
  color: var(--gold-hover);
}

.social {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1cqw, 0.75rem);
}

.social svg {
  cursor: pointer;
  width: clamp(0.95rem, 1.45cqw, 1.2rem);
  height: clamp(0.95rem, 1.45cqw, 1.2rem);
  padding: clamp(0.28rem, 0.55cqw, 0.4rem);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  box-sizing: content-box;
}

.social svg.social-x {
  width: clamp(0.9rem, 1.4cqw, 1.15rem);
  height: clamp(0.9rem, 1.4cqw, 1.15rem);
}

.social svg.social-yt {
  width: clamp(1.15rem, 2cqw, 1.5rem);
  height: clamp(0.85rem, 1.5cqw, 1.15rem);
}

.btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: clamp(0.55rem, 0.9cqw, 0.7rem) clamp(0.9rem, 1.5cqw, 1.2rem);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.68rem, 1cqw, 0.88rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.3rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold-hover);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: rgba(8, 18, 35, 0.75);
  border: 1px solid var(--gold);
  border-radius: 0.35rem;
  cursor: pointer;
  z-index: 30;
  padding: 0;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.15rem;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
}

/* —— LEFT BRAND COLUMN —— */
.brand-col {
  position: absolute;
  left: 4.5%;
  top: 12.5%;
  width: 44%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3.5vh, 2.5rem);
  pointer-events: none;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  flex-shrink: 0;
  pointer-events: auto;
}

.brand-rule-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 80%;
}

.brand-rule-row.narrow {
  width: 58%;
  margin-top: 0.15rem;
}

.brand-rule {
  flex: 1;
  height: 2px;
  background: var(--gold);
}

.brand-rule.fade-left {
  background: linear-gradient(to right, transparent, var(--gold));
}

.brand-rule.fade-right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.est {
  color: var(--gold);
  font-size: clamp(0.7rem, 1.35cqw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.45em;
}

.word {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.word-boston {
  font-size: clamp(3.5rem, min(9cqw, 14vh), 8.25rem);
  color: var(--cream);
}

.word-harbor {
  font-size: clamp(3.9rem, min(10cqw, 15.5vh), 9.25rem);
  color: var(--gold);
}

.word-fc {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, min(3.2cqw, 5vh), 2.65rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.coming {
  font-size: clamp(1.15rem, min(2.9cqw, 4.6vh), 2.25rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  color: var(--cream);
  margin-top: 0.8rem;
}

.coming-year {
  color: var(--gold);
  font-weight: 900;
  margin-left: 0.75em;
}

.tagline {
  font-size: clamp(0.75rem, min(1.35cqw, 2.2vh), 1.15rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-top: 0.4rem;
  line-height: 1.45;
  max-width: 28rem;
}

.sponsors {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5cqw, 2rem);
  flex-shrink: 0;
  pointer-events: auto;
}

.sponsor-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.sponsor-block img.npsl {
  height: clamp(5.25rem, min(10cqw, 14.5vh), 8.5rem);
  width: auto;
}

.sponsor-label {
  font-size: clamp(0.62rem, 0.9cqw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-align: center;
  line-height: 1.35;
}

.sponsor-divider {
  width: 1px;
  height: clamp(4.75rem, min(9.5cqw, 13.5vh), 7.5rem);
  background: rgba(200, 146, 47, 0.5);
  flex-shrink: 0;
}

.sponsor-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.sponsor-item span {
  font-size: clamp(0.62rem, 1cqw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--cream);
}

.sponsor-item img.haven {
  height: clamp(2.9rem, min(5.6cqw, 7.8vh), 4.4rem);
  width: auto;
  max-width: 100%;
}

.signup-envelope {
  display: none;
}

.sponsor-item img.north {
  height: clamp(2.55rem, min(5cqw, 7.2vh), 3.85rem);
  width: auto;
}

/* —— SIGNUP —— */
.signup {
  position: absolute;
  left: 4.5%;
  bottom: calc(3.5% + var(--safe-bottom));
  width: min(38%, 26rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.2cqw, 1rem);
}

.signup img,
.signup-lighthouse {
  height: clamp(3rem, 7.5cqw, 5rem);
  width: auto;
  flex-shrink: 0;
}

.signup-form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-label {
  font-size: clamp(0.75rem, 1.15cqw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.signup-row {
  display: flex;
  border: 1px solid var(--gold);
  border-radius: 0.25rem;
  overflow: hidden;
  background: rgba(5, 13, 26, 0.6);
}

.signup-row input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0.75rem 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.15cqw, 1rem);
  outline: none;
}

.signup-row button {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 0 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.05cqw, 0.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.signup-row button:hover {
  background: var(--gold-hover);
}

.signup-thanks {
  color: var(--gold-hover);
  font-size: clamp(0.85rem, 1.2cqw, 1.05rem);
  font-weight: 600;
}

.signup-error {
  font-size: clamp(0.7rem, 0.85cqw, 0.8rem);
  color: var(--error);
  font-weight: 600;
}

/* —— PILLARS —— */
.pillars {
  position: absolute;
  right: 1.25%;
  top: 20%;
  width: clamp(3.5rem, 4.8cqw, 4.75rem);
  z-index: 4;
  background: rgba(8, 18, 35, 0.88);
  border: 1px solid var(--gold);
  border-radius: 1.5rem;
  padding: clamp(0.9rem, 1.8cqw, 1.35rem) clamp(0.3rem, 0.65cqw, 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.3cqw, 1rem);
  box-shadow: 0 0.6cqw 1.6cqw rgba(0, 0, 0, 0.5);
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.pillar svg {
  width: clamp(1.35rem, 2.6cqw, 2rem);
  height: auto;
}

.pillar span {
  font-size: clamp(0.55rem, 0.95cqw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--gold);
}

.pillar-rule {
  width: 70%;
  height: 1px;
  background: rgba(200, 146, 47, 0.35);
}

/* —— BANNER —— */
.banner {
  position: absolute;
  right: 4.5%;
  bottom: calc(3.5% + var(--safe-bottom));
  width: 42%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.banner-text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.6cqw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-diamonds {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 72%;
}

.banner-line {
  flex: 1;
  height: 1px;
  background: rgba(200, 146, 47, 0.5);
}

.diamond {
  width: clamp(0.4rem, 0.7cqw, 0.55rem);
  height: clamp(0.4rem, 0.7cqw, 0.55rem);
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ========== TABLET / DESKTOP — same composition, fluid scale ========== */
@media (min-width: 769px) {
  .nav {
    top: -10px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links,
  .nav-actions {
    display: flex;
    position: relative;
    top: -13%;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .nav-links {
    gap: clamp(0.5rem, 1.4cqw, 0.85rem);
  }

  .nav-link {
    font-size: clamp(0.6rem, 0.95cqw, 0.78rem);
    letter-spacing: 0.1em;
  }

  .player {
    width: min(72cqw, 68rem);
    right: -4%;
  }

  .brand-col {
    width: 42%;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .container-fluid {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    container-type: normal;
    padding-top: calc(7.25rem + var(--safe-top));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .wash-left {
    background: linear-gradient(
      to bottom,
      rgba(5, 10, 22, 0.96) 9%,
      rgba(5, 11, 24, 0.2) 34%,
      rgba(5, 11, 22, 0.55) 63%,
      rgba(5, 11, 22, 0.92) 82%,
      rgba(5, 11, 22, 0.98) 100%
    )
  }

  .wash-bottom,
  .wash-vignette {
    display: none;
  }

  .player {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    transform: translateX(-12%);
    width: min(128%, 46rem);
    max-width: none;
    height: auto;
    min-height: 42vh;
    max-height: 70vh;
    flex: 0 0 auto;
    margin: -1.5rem auto 0;
    object-fit: contain;
    object-position: center top;
    opacity: 1;
    z-index: 2;
    order: 2;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: none;
    border-bottom: none;
    padding: calc(0.5rem + var(--safe-top)) calc(1rem + var(--safe-right)) 0.5rem calc(1rem + var(--safe-left));
  }

  .crest {
    grid-column: auto;
    height: 7rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: auto;
  }

  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(5, 11, 22, 0.97);
    padding: calc(5.5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
  }

  .mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-close {
    position: absolute;
    top: calc(0.85rem + var(--safe-top));
    right: calc(1rem + var(--safe-right));
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 18, 35, 0.75);
    border: 1px solid var(--gold);
    border-radius: 0.35rem;
    cursor: pointer;
    padding: 0;
    z-index: 30;
  }

  .drawer-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .drawer-close:hover {
    background: rgba(8, 18, 35, 0.95);
  }

  .drawer-close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .mobile-drawer .nav-link {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(200, 146, 47, 0.25);
    width: 100%;
    text-align: left;
    color: var(--cream);
  }

  .mobile-drawer .nav-link.is-active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .mobile-drawer .btn {
    margin-top: 1.25rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .mobile-social {
    display: flex;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1.5rem;
  }

  .mobile-social svg {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
  }

  /* Mockup order: brand → player → sponsors → pillars → signup → banner */
  .brand-col {
    display: contents;
  }

  .brand {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    z-index: 4;
    order: 1;
    flex: 0 0 auto;
    gap: 0.25rem;
    pointer-events: auto;
  }

  .word-boston {
    font-size: clamp(2.75rem, 14cqw, 4rem);
  }

  .word-harbor {
    font-size: clamp(3rem, 15cqw, 4.35rem);
  }

  .word-fc {
    font-size: clamp(1.1rem, 5cqw, 1.4rem);
    color: var(--gold);
  }

  .tagline {
    order: 1;
    font-size: clamp(0.7rem, 3cqw, 0.85rem);
    letter-spacing: 0.14em;
    max-width: 18rem;
    width: 100%;
    margin-top: 0.25rem;
  }

  .coming {
    order: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: clamp(0.9rem, 4cqw, 1.15rem);
    letter-spacing: 0.35em;
    margin-top: 0.4rem;
    text-align: left;
  }

  .coming-year {
    color: var(--gold);
    margin-left: 0;
  }

  .sponsors {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
    margin-top: -3.5rem;
    padding: 0 1.25rem;
    z-index: 4;
    order: 3;
    flex: 0 0 auto;
  }

  .sponsor-block img.npsl {
    height: 3.75rem;
  }

  .sponsor-label {
    font-size: 0.6rem;
  }

  .sponsor-divider {
    height: 4.5rem;
  }

  .sponsor-item img.haven {
    height: 2.1rem;
  }

  .sponsor-item img.north {
    height: 2rem;
  }

  .pillars {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 0.6rem 1rem 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.4rem 0.25rem;
    gap: 0.35rem;
    z-index: 4;
    order: 4;
    flex: 0 0 auto;
  }

  .pillar {
    flex: 1;
  }

  .pillar-rule {
    width: 1px;
    height: auto;
    align-self: stretch;
    min-height: 3.5rem;
    background: rgba(200, 146, 47, 0.55);
  }

  .pillar span {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .pillar svg {
    width: 1.55rem;
  }

  .signup {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 0.6rem 1rem 0;
    padding: 0.6rem 0.75rem;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    z-index: 4;
    order: 5;
    border: 1px solid var(--gold);
    border-radius: 0.45rem;
    background: rgba(5, 13, 26, 0.72);
    flex: 0 0 auto;
  }

  .signup-lighthouse {
    display: none;
  }

  .signup-envelope {
    display: block;
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
  }

  .signup-form {
    flex: 1;
    min-width: 0;
    gap: 0.35rem;
  }

  .signup-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .signup-row {
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 0.2rem;
    overflow: hidden;
    background: rgba(5, 13, 26, 0.55);
    border: 1px solid rgba(200, 146, 47, 0.45);
  }

  .signup-row input {
    padding: 0.65rem 0.7rem;
    font-size: 0.85rem;
  }

  .signup-row button {
    padding: 0.65rem 0.75rem;
    font-size: 0.72rem;
    flex-shrink: 0;
  }

  .banner {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0.6rem 0 0;
    padding: 0.6rem 1rem calc(0.6rem + var(--safe-bottom));
    z-index: 4;
    order: 6;
    background: var(--gold);
    gap: 0.35rem;
    flex: 0 0 auto;
  }

  .banner-text {
    font-size: clamp(0.72rem, 3.2cqw, 0.9rem);
    letter-spacing: 0.14em;
    color: var(--navy-deep);
    text-shadow: none;
  }

  .banner-diamonds {
    width: 70%;
  }

  .banner-line {
    background: rgba(10, 20, 36, 0.35);
  }

  .diamond {
    background: var(--navy-deep);
    width: 0.4rem;
    height: 0.4rem;
  }
}

/* ========== SMALL PHONES ========== */
@media (max-width: 375px) {
  .word-boston {
    font-size: 2.5rem;
  }

  .word-harbor {
    font-size: 2.75rem;
  }

  .est {
    letter-spacing: 0.3em;
    font-size: 0.65rem;
  }

  .coming {
    letter-spacing: 0.22em;
    font-size: 0.8rem;
  }

  .sponsors {
    gap: 0.65rem;
  }

  .sponsor-block img.npsl {
    height: 3.1rem;
  }

  .brand-col {
    gap: 0;
  }

  .player {
    width: min(128%, 40rem);
    min-height: 40vh;
    max-height: 62vh;
    margin: -0.5rem auto 0;
  }

  .crest {
    height: 6.25rem;
  }

  .signup-label {
    font-size: 0.6rem;
  }

  .signup-row button {
    padding: 0.6rem 0.55rem;
    font-size: 0.65rem;
  }

  .pillar span {
    font-size: 0.55rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
