:root {
  --bg: #0a0a0c;
  --bg-soft: #101014;
  --panel: rgba(18, 18, 22, 0.95);
  --text: #f2f1ec;
  --muted: #908d86;
  --line: rgba(255, 255, 255, 0.1);
  --header-height: 84px;
  --content-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.booking-page {
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 180ms ease;
}

a:hover {
  opacity: 0.72;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

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

h1,
h2,
strong {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--header-height);
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.82) 0%, rgba(10, 10, 12, 0) 100%);
}

.menu-toggle {
  display: inline-grid;
  gap: 7px;
  padding: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: start end;
  padding: 84px 22px 22px;
  background: rgba(5, 5, 7, 0.52);
  backdrop-filter: blur(14px);
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel-inner {
  width: min(320px, calc(100vw - 44px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.menu-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.menu-links a {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.95;
}

main,
.page-main {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.hero-home {
  position: relative;
  height: 100vh;
  padding-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-media-full {
  overflow: hidden;
  height: 100%;
  border-radius: 0;
  background: var(--bg-soft);
}

.hero-media-full img {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 0 24px 0;
  pointer-events: none;
  transform: translateY(0);
}

.hero-overlay .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-overlay h1 {
  max-width: 9ch;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.96;
  color: white;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.section-index {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 12px 0 36px;
  border-bottom: 1px solid var(--line);
}

.marquee-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marquee 16s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
}

.marquee-track span {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.3vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 1.2rem;
}

.section-index a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.section-index a:hover {
  color: var(--text);
  opacity: 1;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.quick-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.quick-link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.quick-link-social {
  color: var(--text) !important;
}

.quick-link-booking {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.portfolio-section,
.gallery-section,
.contact-section,
.booking-layout,
.page-intro {
  padding-top: 64px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.portfolio-section,
.gallery-section {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.page-main .gallery-section:first-child {
  padding-top: 110px;
}

.page-intro {
  min-height: 34vh;
  display: grid;
  align-content: end;
  padding-bottom: 24px;
}

.page-intro h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
  padding: 20px 0 80px;
}

.about-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-soft);
}

.about-photo-card img {
  aspect-ratio: 0.8 / 1.2;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.about-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.about-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
}

.photo-layout {
  display: grid;
  gap: 16px;
}

.baseball-layout {
  grid-template-columns: 1.3fr 0.9fr;
  grid-template-areas:
    "large tall"
    "wide small";
}

.football-layout {
  grid-template-columns: 0.9fr 1.3fr;
  grid-template-areas:
    "tall large"
    "small-left small-right";
}

.events-layout {
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-areas:
    "large small-left small-right"
    "wide wide wide";
}

.photo-large {
  grid-area: large;
}

.photo-tall {
  grid-area: tall;
}

.photo-wide {
  grid-area: wide;
}

.photo-small-left {
  grid-area: small-left;
}

.photo-small-right {
  grid-area: small-right;
}

.baseball-layout .photo-small {
  grid-area: small;
}

.photo-card,
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-soft);
}

.photo-card img,
.gallery-card img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.photo-card:hover img,
.gallery-card:hover img {
  transform: scale(1.02);
}

.baseball-layout .photo-large,
.football-layout .photo-large {
  aspect-ratio: 1.45 / 1;
}

.baseball-layout .photo-tall,
.football-layout .photo-tall {
  aspect-ratio: 0.85 / 1.15;
}

.baseball-layout .photo-wide,
.events-layout .photo-wide {
  aspect-ratio: 1.8 / 1;
}

.baseball-layout .photo-small,
.football-layout .photo-small,
.events-layout .photo-small {
  aspect-ratio: 1 / 1;
}

.events-layout .photo-large {
  aspect-ratio: 1.2 / 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-card {
  aspect-ratio: 1 / 1;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding-bottom: 80px;
}

.booking-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.booking-page .eyebrow,
.booking-page .contact-links,
.booking-page .contact-links a,
.booking-page .contact-links span,
.booking-page .booking-note,
.booking-page .pricing-card p,
.booking-page .pricing-note p,
.booking-page .booking-form label,
.booking-page .page-intro p {
  color: #ffffff;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 18px;
  color: var(--muted);
}

.pricing-panel {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.pricing-panel-grid {
  display: grid;
  gap: 14px;
}

.pricing-card,
.pricing-note {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.9rem;
  line-height: 1;
  color: #ffffff;
}

.pricing-card p:last-child,
.pricing-note p:last-child {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.booking-page .booking-form input,
.booking-page .booking-form textarea,
.booking-page .booking-form select {
  color: #ffffff;
}

.booking-page .booking-form input::placeholder,
.booking-page .booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.booking-page .booking-form select {
  appearance: auto;
  background-color: rgba(255, 255, 255, 0.04);
}

.booking-page .booking-form select option {
  background: #101014;
  color: #ffffff;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.12);
}

.button-primary {
  width: fit-content;
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  padding: 0 0 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .baseball-layout,
  .football-layout,
  .events-layout,
  .gallery-grid,
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }

  .baseball-layout {
    grid-template-areas:
      "large large"
      "tall small"
      "wide wide";
  }

  .football-layout {
    grid-template-areas:
      "large large"
      "tall small-left"
      "small-right small-right";
  }

  .events-layout {
    grid-template-areas:
      "large large"
      "small-left small-right"
      "wide wide";
  }

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

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

}

@media (max-width: 720px) {
  .site-header {
    padding: 0 12px;
  }

  .menu-toggle {
    padding: 12px;
  }

  .menu-toggle span {
    width: 34px;
  }

  main,
  .page-main {
    width: min(calc(100% - 18px), var(--content-width));
  }

  .hero-home {
    height: 72vh;
    padding-top: 0;
    margin-left: calc(50% - 50vw);
  }

  .hero-media-full {
    height: 100%;
    border-radius: 0;
  }

  .hero-overlay h1 {
    max-width: 8ch;
    font-size: clamp(2.5rem, 10vw, 4.2rem);
  }

  .hero-overlay {
    transform: translateY(-1vh);
  }

  .section-index {
    gap: 0.8rem 1rem;
    padding-bottom: 28px;
  }

  .quick-link {
    min-height: 44px;
    padding: 0 1rem;
  }

  .portfolio-section,
  .gallery-section,
  .page-intro,
  .booking-layout {
    padding-top: 42px;
  }

  .portfolio-section,
  .gallery-section {
    padding-bottom: 42px;
  }

  .page-main .gallery-section:first-child {
    padding-top: 94px;
  }

  .baseball-layout,
  .football-layout,
  .events-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .photo-card,
  .photo-large,
  .photo-tall,
  .photo-wide,
  .photo-small,
  .photo-small-left,
  .photo-small-right {
    grid-area: auto !important;
  }

  .baseball-layout .photo-small,
  .football-layout .photo-small,
  .events-layout .photo-small,
  .baseball-layout .photo-large,
  .football-layout .photo-large,
  .events-layout .photo-large,
  .baseball-layout .photo-tall,
  .football-layout .photo-tall,
  .baseball-layout .photo-wide,
  .events-layout .photo-wide,
  .gallery-card {
    aspect-ratio: 1.08 / 1;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.65rem;
  }
}
