:root {
  --ink: #191512;
  --coal: #27211d;
  --rust: #9f3f21;
  --red: #c52f22;
  --gold: #d99b38;
  --bone: #f3eee6;
  --paper: #fffaf1;
  --muted: #756b60;
  --line: rgba(25, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(18, 15, 13, 0.84);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: 214px;
  min-width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav .nav-cta {
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  opacity: 1;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav .nav-cta:hover {
  color: #fff;
  background: #e03a2b;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/bull-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.76)),
    linear-gradient(0deg, rgba(25, 21, 18, 0.84), transparent 48%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Oswald, Impact, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--rust);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5.2rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.1;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: #fff;
  background: var(--coal);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover {
  color: var(--coal);
}

.event-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(25, 21, 18, 0.9);
  border-left: 6px solid var(--gold);
}

.event-strip span,
.event-strip em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 700;
}

.event-strip strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-grid,
.tiers,
.detail-grid,
.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.tiers article,
.detail-grid article,
.stock-grid article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.intro-grid p,
.tiers p,
.feature-copy p,
.contact p,
.detail-grid p,
.stock-grid p,
.gallery-heading p {
  color: var(--muted);
}

.band {
  background: var(--bone);
  border-block: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.body-lg {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.2rem;
}

.schedule {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.schedule div {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  background: #fff;
}

.schedule span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.schedule strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.event-notes {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.event-notes p {
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid var(--gold);
  color: var(--muted);
}

.event-notes strong {
  color: var(--ink);
}

.venue {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.venue-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.venue-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.13rem;
}

.detail-grid {
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.detail-grid article {
  min-height: auto;
  padding: 18px 20px;
  background: var(--bone);
}

.detail-grid h3,
.stock-grid h3 {
  font-size: 1.25rem;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.feature-copy p {
  font-size: 1.13rem;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.checklist li {
  padding: 12px 14px;
  background: var(--bone);
  border-left: 4px solid var(--red);
  font-weight: 700;
}

.stock-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 0;
}

.stock-photo {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 8px;
}

.stock-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stock-grid article {
  min-height: 190px;
}

.video-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 21, 18, 0.94), rgba(39, 33, 29, 0.86)),
    url("assets/gallery-03.jpg") center / cover;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.video-copy p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.video-copy .button {
  margin-top: 16px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f0d0b;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sponsor-band {
  color: #fff;
  background: var(--coal);
}

.sponsor-inner {
  text-align: center;
}

.sponsor-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.tiers {
  text-align: left;
}

.tiers article {
  color: var(--ink);
}

.gallery-section {
  padding-bottom: 72px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: 30px;
}

.gallery-heading p {
  margin: 0;
  font-size: 1.12rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coal);
}

.gallery-grid figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(25, 21, 18, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.gallery-page {
  background: var(--paper);
}

.gallery-page .site-header {
  position: absolute;
}

.gallery-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--coal);
}

.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.82), rgba(15, 12, 10, 0.42) 52%, rgba(15, 12, 10, 0.74)),
    linear-gradient(0deg, rgba(25, 21, 18, 0.88), transparent 56%);
}

.gallery-hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/rodeo-gallery-16.jpg") center / cover;
  transform: scale(1.02);
}

.gallery-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 64px;
}

.gallery-feature-strip {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 1px;
  padding: 0;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-feature-strip article {
  min-height: 150px;
  padding: 24px;
  background: #fff;
}

.gallery-feature-strip span {
  display: block;
  color: var(--red);
  font-family: Oswald, Impact, sans-serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-feature-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.photo-credit {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
  padding-top: 42px;
  padding-bottom: 14px;
}

.photo-credit h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.photo-credit p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.gallery-filters {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
  padding-top: 18px;
  padding-bottom: 26px;
}

.gallery-filters h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--coal);
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

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

.gallery-card {
  position: relative;
  grid-column: span 3;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coal);
  cursor: zoom-in;
}

.gallery-card.span-wide {
  grid-column: span 3;
}

.gallery-card.span-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card:nth-child(3),
.gallery-card:nth-child(4),
.gallery-card:nth-child(7),
.gallery-card:nth-child(8) {
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(25, 21, 18, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.gallery-card[hidden] {
  display: none;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 82px 28px 34px;
  background: rgba(8, 7, 6, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  grid-column: 2;
  max-width: min(1280px, 100%);
  max-height: 100%;
  margin: 0 auto;
}

.lightbox-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-frame figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: 800 1.4rem/1 "Source Sans 3", Arial, sans-serif;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-button:hover,
.lightbox-button:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.gallery-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
}

.gallery-close p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.13rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.contact-detail {
  max-width: 560px;
}

.inner-page {
  background: var(--paper);
}

.inner-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--coal);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.84), rgba(15, 12, 10, 0.42) 54%, rgba(15, 12, 10, 0.72)),
    linear-gradient(0deg, rgba(25, 21, 18, 0.88), transparent 56%);
}

.inner-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 64px;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
}

.page-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.page-kicker p,
.proof-grid p,
.process-list p,
.profile-grid p,
.media-system p {
  color: var(--muted);
}

.proof-grid,
.profile-grid,
.media-system,
.capture-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article,
.profile-grid article,
.media-system article,
.capture-service-grid article {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bull-card-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 0;
}

.bull-card-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bull-card-grid h3,
.bull-card-grid p,
.bull-card-grid .text-link {
  margin-inline: 24px;
}

.bull-card-grid .text-link {
  margin-bottom: 24px;
}

.bull-profile-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 150px clamp(22px, 5vw, 72px) 64px;
  color: #fff;
  overflow: hidden;
  background: var(--coal);
}

.bull-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.92), rgba(12, 10, 8, 0.58) 52%, rgba(12, 10, 8, 0.18));
}

.bull-profile-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bull-profile-hero > div {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.bull-profile-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
}

.bull-profile-summary,
.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bull-profile-summary article,
.profile-detail-grid article {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bull-profile-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bull-profile-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--coal);
  font-family: Oswald, Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.bull-profile-summary p,
.profile-detail-grid p,
.clean-list {
  color: var(--muted);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.process-band {
  background: var(--bone);
  border-block: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.statement-band {
  color: #fff;
  background: var(--coal);
}

.statement-band .section {
  padding-block: 70px;
}

.statement-band p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.capture-service-grid article {
  border-top: 5px solid var(--red);
}

.capture-feature .checklist {
  margin-bottom: 24px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.application-form,
.portal-preview,
.sponsor-stack {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.sidebar-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-list li {
  padding: 14px 16px;
  background: var(--bone);
  border-left: 4px solid var(--red);
  color: var(--muted);
  font-weight: 700;
}

.sponsor-stack {
  display: grid;
  gap: 18px;
}

.sponsor-package {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sponsor-package h3,
.portal-card h3 {
  margin-bottom: 10px;
}

.sponsor-package ul,
.portal-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}

.portal-layout > * {
  min-width: 0;
}

.portal-layout .sponsor-stack h2 {
  max-width: 100%;
  font-size: clamp(2.4rem, 3vw, 3.7rem);
  line-height: 1.02;
}

.portal-preview {
  color: var(--ink);
  background: #fff;
}

.portal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.portal-head strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.portal-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.portal-metrics,
.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.portal-metrics div,
.portal-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.portal-metrics span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.portal-metrics strong {
  display: block;
  margin-top: 4px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.portal-card {
  min-height: 190px;
}

.portal-card.wide {
  grid-column: span 2;
}

.rabon-chat-section {
  padding-top: 0;
}

.chat-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background: var(--coal);
}

.chat-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
}

.chat-kicker,
.chat-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-header h3 {
  margin-top: 2px;
  color: #fff;
}

.chat-window {
  display: grid;
  gap: 12px;
  min-height: 260px;
  max-height: 430px;
  padding: 20px;
  overflow-y: auto;
  background: var(--bone);
}

.chat-message {
  max-width: 78%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  white-space: pre-line;
}

.chat-message.maya,
.chat-message.assistant {
  justify-self: start;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.chat-message.visitor {
  justify-self: end;
  color: #fff;
  background: var(--red);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.chat-form input:disabled {
  opacity: 0.58;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    gap: 8px 14px;
    font-size: 0.84rem;
  }

  .brand {
    width: 166px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 132px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .event-strip,
  .intro,
  .two-col,
	  .venue,
	  .feature,
	  .stock-panel,
	  .video-section,
	  .gallery-heading,
	  .gallery-feature-strip,
	  .photo-credit,
	  .gallery-filters,
	  .page-kicker,
	  .split-feature,
	  .application-shell,
	  .bull-profile-summary,
	  .profile-detail-grid,
	  .portal-layout,
	  .contact {
	    grid-template-columns: 1fr;
  }

  .event-strip,
  .contact {
    display: grid;
  }

  .intro-grid,
  .tiers,
  .stock-grid,
  .proof-grid,
  .profile-grid,
  .media-system,
  .capture-service-grid,
  .process-list,
  .portal-metrics,
  .portal-cards {
    grid-template-columns: 1fr;
  }

  .portal-card.wide {
    grid-column: auto;
  }

  .chat-message {
    max-width: 92%;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .intro-grid article,
  .tiers article,
  .stock-grid article {
    min-height: auto;
  }

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

  .full-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card.span-wide,
  .gallery-card.span-tall,
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(7),
  .gallery-card:nth-child(8) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-close {
    display: grid;
  }

  .lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 10px;
    padding-inline: 16px;
  }

  .lightbox-button {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header {
    display: grid;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: 4rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .event-strip {
    gap: 8px;
  }

  .event-strip strong {
    font-size: 1.65rem;
  }

  .section {
    padding: 62px 0;
  }

  .schedule div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid figure.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .gallery-hero {
    min-height: 72vh;
  }

  .gallery-hero-copy {
    padding-top: 168px;
  }

  .full-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.span-tall {
    min-height: 280px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 74px 14px 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 180px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .lightbox-prev {
    justify-self: start;
  }

  .lightbox-next {
    justify-self: end;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100vw;
    padding: 12px 16px;
    overflow: hidden;
  }

  .brand {
    width: 148px;
    min-width: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 5px;
    overflow: hidden;
    font-size: 0.7rem;
  }

  .nav a {
    min-width: 0;
    padding: 5px 2px;
    overflow: hidden;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.08;
  }

  .gallery-cta,
  .inline-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }
}

.service-status {
  position: relative;
  z-index: 2;
  margin-top: 92px;
  padding: 12px 18px;
  color: #fff;
  background: var(--rust);
  text-align: center;
}

.availability-notice {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.availability-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.availability-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .availability-notice {
    grid-template-columns: 1fr;
  }

  .service-status {
    margin-top: 136px;
  }
}

@media (max-width: 560px) {
  .service-status {
    margin-top: 158px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .gallery-cta .button,
  .inline-actions .button,
  .contact-actions .button {
    width: 100%;
  }
}
