html {
  color-scheme: light;
  overflow-x: clip;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f1e7 0%, #fbf9f4 100%);
  color: var(--oga-ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-radial-gradient(circle at 10% 15%, rgba(6, 27, 58, 0.18) 0, rgba(6, 27, 58, 0.18) 1px, transparent 1px, transparent 32px),
    repeating-radial-gradient(circle at 90% 10%, rgba(217, 164, 65, 0.08) 0, rgba(217, 164, 65, 0.08) 1px, transparent 1px, transparent 40px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

a {
  color: inherit;
}

p {
  color: var(--fg-body);
}

.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;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--oga-navy);
  color: rgba(255, 248, 238, 0.97);
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.92);
  outline-offset: 3px;
}

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

.shell-narrow {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
}

.shell-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  align-items: start;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(4, 20, 42, 0.97), rgba(8, 29, 57, 0.94)),
    rgba(6, 27, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: 0 10px 30px rgba(6, 27, 58, 0.14);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--oga-white);
}

.brand img {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.03em;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 249, 238, 0.7);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-group {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 10px;
  color: rgba(255, 248, 238, 0.88);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.11em;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--oga-gold);
  border-bottom-color: rgba(217, 164, 65, 0.58);
}

.nav-panel {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 250px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(4, 20, 42, 0.98), rgba(8, 29, 57, 0.98));
  border: 1px solid rgba(217, 164, 65, 0.16);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.nav-panel a {
  color: rgba(255, 248, 238, 0.8);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 11px 12px;
  border-radius: 12px;
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  display: flex;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(255, 248, 238, 0.05);
  color: var(--oga-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
}

.header-actions .btn svg {
  width: 16px;
  height: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 238, 0.92);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-link svg {
  color: var(--oga-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--oga-gold), var(--oga-gold-deep));
  color: rgba(255, 249, 241, 0.98);
  border-color: rgba(255, 241, 214, 0.18);
  box-shadow: 0 16px 30px rgba(136, 88, 15, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--oga-gold);
}

.btn-secondary {
  background: rgba(255, 251, 245, 0.92);
  color: var(--oga-navy);
  border-color: rgba(6, 27, 58, 0.22);
  box-shadow: 0 12px 28px rgba(6, 27, 58, 0.08);
}

.section-dark .btn-secondary,
.btn-secondary.on-dark,
.site-header .btn-secondary,
.mobile-nav-actions .btn-secondary {
  background: rgba(255, 248, 238, 0.06);
  color: rgba(255, 248, 238, 0.96);
  border-color: rgba(217, 164, 65, 0.46);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(6, 27, 58, 0.96);
  color: rgba(255, 248, 238, 0.96);
  border-color: rgba(6, 27, 58, 0.96);
}

.section-dark .btn-secondary:hover,
.section-dark .btn-secondary:focus-visible,
.btn-secondary.on-dark:hover,
.btn-secondary.on-dark:focus-visible,
.site-header .btn-secondary:hover,
.site-header .btn-secondary:focus-visible,
.mobile-nav-actions .btn-secondary:hover,
.mobile-nav-actions .btn-secondary:focus-visible {
  background: rgba(255, 248, 238, 0.14);
  color: rgba(255, 248, 238, 0.98);
  border-color: rgba(232, 185, 89, 0.72);
}

.btn-tertiary,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--oga-navy);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-link {
  color: var(--oga-gold-muted);
}

.button-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 18px;
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(217, 164, 65, 0.18);
  background: transparent;
  color: rgba(255, 248, 238, 0.92);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(217, 164, 65, 0.16);
  background: linear-gradient(180deg, rgba(4, 20, 42, 0.98), rgba(8, 29, 57, 0.98));
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-nav-group {
  border-top: 1px solid rgba(255, 248, 238, 0.08);
  padding: 12px 0;
}

.mobile-nav-group summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.9);
  letter-spacing: 0.1em;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-links {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.mobile-nav-links a {
  color: rgba(255, 248, 238, 0.78);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hero {
  padding: clamp(58px, 7vw, 100px) 0;
}

.hero-home {
  position: relative;
  padding: 20px 0 0;
  color: rgba(255, 248, 238, 0.98);
  overflow: hidden;
  background:
    linear-gradient(180deg, #061a38 0%, #081d39 42%, #081f40 100%);
}

.hero-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(217, 164, 65, 0.4);
}

.hero-home h1,
.hero-home .hero-text,
.hero-home .hero-subcopy,
.hero-home p {
  color: rgba(255, 248, 238, 0.96);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 900px;
  overflow: hidden;
  border-top: 1px solid rgba(217, 164, 65, 0.26);
}

.hero-stage-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 900px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(6, 26, 56, 0.96) 0%,
      rgba(6, 26, 56, 0.82) 16%,
      rgba(6, 26, 56, 0.52) 34%,
      rgba(6, 26, 56, 0.16) 52%,
      transparent 68%
    ),
    linear-gradient(
      to right,
      rgba(6, 26, 56, 0.28) 0%,
      transparent 44%
    );
}

.hero-copy {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(50%, 620px);
  padding: 0 40px 56px clamp(36px, 4.5vw, 72px);
}

.hero-copy .eyebrow {
  position: relative;
  padding-left: 54px;
  color: rgba(244, 183, 73, 0.96);
  margin-bottom: 2px;
  text-shadow: 0 1px 18px rgba(4, 14, 32, 0.9);
}

.hero-copy .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 40px;
  height: 1px;
  background: var(--oga-gold);
}

.hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(255, 245, 234, 0.98);
  max-width: 11.5ch;
  text-shadow:
    0 2px 40px rgba(4, 14, 32, 0.88),
    0 4px 14px rgba(4, 14, 32, 0.65);
}

.hero-copy h1 em,
.hero-copy h1 strong {
  color: var(--oga-gold);
  font-style: normal;
}

.hero-text {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.54;
  max-width: 38ch;
  text-shadow: 0 1px 12px rgba(4, 14, 32, 0.7);
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: rgba(255, 248, 238, 0.82);
}

.hero-mini-proof span {
  position: relative;
}

.hero-mini-proof span + span::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: rgba(217, 164, 65, 0.8);
}

.hero-local-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  font-size: 0.84rem;
  color: rgba(255, 248, 238, 0.78);
}

.hero-copy .button-row {
  margin-top: 12px;
  gap: 12px;
  align-items: flex-start;
}

.hero-copy .button-row .btn {
  min-width: 196px;
}

.hero-local-line span {
  position: relative;
}

.hero-local-line span + span::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: rgba(217, 164, 65, 0.76);
}

.hero-plaque {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  bottom: 36px;
  z-index: 2;
  width: min(300px, calc(100% - 36px));
  padding: 0 24px 24px;
  border-radius: 14px;
  border: 1px solid rgba(217, 164, 65, 0.46);
  border-top: 3px solid rgba(217, 164, 65, 0.85);
  background: linear-gradient(160deg, rgba(8, 24, 52, 0.96), rgba(6, 27, 58, 0.98));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(217, 164, 65, 0.12);
}

.plaque-kicker {
  margin: 0 0 10px;
  padding-top: 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--oga-gold);
}

.hero-plaque h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: rgba(255, 248, 238, 0.98);
}

.hero-plaque p {
  margin-top: 12px;
  color: rgba(255, 248, 238, 0.82);
}

.hero-interior {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.96), rgba(8, 29, 57, 0.96)),
    rgba(6, 27, 58, 0.98);
  border-bottom: 1px solid rgba(217, 164, 65, 0.16);
}

.hero-interior h1,
.hero-interior .hero-text,
.hero-interior .hero-subcopy {
  color: rgba(255, 248, 238, 0.97);
}

.hero-interior h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  line-height: 1.02;
}

.hero-interior .shell-narrow {
  position: relative;
}

.hero-interior .shell-narrow::before {
  content: "";
  position: absolute;
  inset: -34px -40px;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.14), transparent 30%),
    repeating-radial-gradient(circle at top left, rgba(255, 248, 238, 0.05) 0, rgba(255, 248, 238, 0.05) 1px, transparent 1px, transparent 24px);
  opacity: 0.55;
  pointer-events: none;
}

.section {
  position: relative;
  padding: clamp(68px, 8vw, 110px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-cream {
  background: linear-gradient(180deg, #f7f3ec 0%, #fbf9f5 100%);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.98), rgba(8, 29, 57, 0.98)),
    rgba(6, 27, 58, 0.98);
  color: rgba(255, 248, 238, 0.97);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark .detail-summary {
  color: rgba(255, 248, 238, 0.95);
}

.section-header {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-header h2 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 1.05;
}

.section-intro {
  margin-top: 14px;
}

.home-feature-rail {
  position: relative;
  z-index: 2;
  background: var(--oga-navy);
  border-top: 1px solid rgba(217, 164, 65, 0.28);
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}

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

.feature-rail-grid > * {
  padding: 26px 26px 22px;
  border-right: 1px solid rgba(255, 248, 238, 0.11);
  display: flex;
  flex-direction: column;
}

.rail-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--oga-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--oga-navy);
  flex-shrink: 0;
}

.rail-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rail-icon svg,
.rail-icon svg * {
  stroke: var(--oga-navy);
}

.feature-rail-grid > *:last-child {
  border-right: 0;
}

.feature-rail-title {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.96);
}

.feature-rail-grid p {
  margin: 0;
  color: rgba(255, 248, 238, 0.68);
  font-size: 0.95rem;
}

.card-grid,
.proof-grid,
.testimonial-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.proof-card,
.detail-card,
.contact-card,
.form-panel,
.testimonial-card,
.team-card,
.notice-card,
.cta-panel,
.price-highlight {
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(11, 31, 61, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 27, 58, 0.08);
}

.home-services .info-card,
body[data-page="home"] .card-grid > .info-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: var(--oga-navy);
  border-color: rgba(217, 164, 65, 0.15);
}

.home-services .card-image,
body[data-page="home"] .card-grid > .info-card .card-image {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  border-radius: 0;
}

.card-image.uniform-fill-image,
.gallery-button img.uniform-fill-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center;
}

.image-panel img.uniform-fill-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.home-services .info-card::after,
body[data-page="home"] .card-grid > .info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 58, 0.16), rgba(6, 27, 58, 0.9));
}

.home-services .card-body,
body[data-page="home"] .card-grid > .info-card .card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px 24px 24px;
}

.home-services .card-body h3,
body[data-page="home"] .card-grid > .info-card .card-body h3,
.home-services .card-body p,
body[data-page="home"] .card-grid > .info-card .card-body p {
  color: rgba(255, 248, 238, 0.96);
}

.home-services .text-link,
body[data-page="home"] .card-grid > .info-card .text-link {
  color: var(--oga-gold);
}

body[data-page="home"] .card-grid > .info-card:nth-child(1) {
  grid-row: span 2;
  min-height: 596px;
}

body[data-page="home"] .card-grid > .info-card:nth-child(1) .card-image {
  min-height: 596px;
}

body[data-page="home"] .card-grid > .info-card:nth-child(4) {
  grid-row: span 2;
  min-height: 596px;
}

body[data-page="home"] .card-grid > .info-card:nth-child(4) .card-image {
  min-height: 596px;
}

body[data-page="home"] .card-grid > .info-card:nth-child(3),
body[data-page="home"] .card-grid > .info-card:nth-child(5),
body[data-page="home"] .card-grid > .info-card:nth-child(6) {
  min-height: 250px;
}

body[data-page="home"] .card-grid > .info-card:nth-child(5),
body[data-page="home"] .card-grid > .info-card:nth-child(6) {
  min-height: 250px;
}

.card-body,
.proof-card,
.detail-card,
.contact-card,
.form-panel,
.testimonial-card,
.team-card-body,
.notice-card,
.cta-panel,
.price-highlight {
  padding: 24px;
}

.media-frame {
  margin-top: 24px;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(11, 31, 61, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 27, 58, 0.08);
  overflow: hidden;
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.media-frame--schedule {
  position: relative;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(6, 27, 58, 0.98), rgba(11, 31, 61, 0.96));
  border-color: rgba(217, 164, 65, 0.34);
  box-shadow:
    0 20px 44px rgba(6, 27, 58, 0.18),
    inset 0 0 0 1px rgba(255, 248, 238, 0.06);
}

.media-frame-label {
  margin: 0 0 12px;
  color: rgba(255, 248, 238, 0.82);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-frame--schedule img {
  border-radius: 14px;
  border: 1px solid rgba(217, 164, 65, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.logo-wall {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 31, 61, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(6, 27, 58, 0.1);
}

.logo-tile img {
  max-width: 92%;
  max-height: 142px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.04);
}

.logo-tile--badge img {
  max-height: 150px;
}

.logo-tile--wordmark img {
  max-width: 96%;
  max-height: 126px;
}

.logo-tile--poster {
  grid-column: 1 / -1;
  min-height: 280px;
}

.logo-tile--poster img {
  max-height: 340px;
  max-width: 100%;
}

.stacked-cards {
  display: grid;
  gap: 16px;
}

.page-aside-stack {
  display: grid;
  gap: 20px;
}

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

.proof-card {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(248, 242, 233, 0.98));
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.detail-card {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 232, 0.96));
}

.detail-summary,
.team-role {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--oga-ink-2);
  margin: 10px 0 8px;
}

.team-specialty,
.testimonial-context,
.small-note {
  color: var(--oga-muted);
  font-size: 0.92rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--oga-gold), var(--oga-gold-deep));
}

.table-wrap {
  overflow-x: auto;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(6, 27, 58, 0.08);
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(249, 244, 236, 0.98));
  box-shadow: 0 18px 40px rgba(6, 27, 58, 0.08);
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  min-width: 560px;
  font-variant-numeric: tabular-nums;
}

.data-table th,
.data-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 0;
}

.data-table th {
  background: var(--oga-navy);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 248, 238, 0.92);
}

.data-table thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.data-table thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.data-table tbody tr {
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.data-table tbody tr:hover {
  transform: translateY(-1px);
}

.data-table tbody td {
  background: var(--oga-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 20px rgba(6, 27, 58, 0.08);
}

.data-table tbody td:first-child {
  border-radius: 16px 0 0 16px;
  font-weight: 700;
  color: var(--oga-navy);
  min-width: 180px;
}

.data-table tbody td:last-child {
  border-radius: 0 16px 16px 0;
  width: 160px;
}

.data-table tbody td:first-child::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--oga-gold), var(--oga-gold-deep));
  vertical-align: middle;
}

.data-table td a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(6, 27, 58, 0.06);
  border: 1px solid rgba(6, 27, 58, 0.12);
  color: var(--oga-navy);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.data-table td a:hover,
.data-table td a:focus-visible {
  background: var(--oga-navy);
  border-color: var(--oga-navy);
  color: rgba(255, 248, 238, 0.98);
}

.home-testimonial-band {
  background: var(--oga-navy);
}

.home-testimonial-band .section-header h2,
.home-testimonial-band .section-header p,
.home-testimonial-band .section-header .eyebrow {
  color: rgba(255, 248, 238, 0.96);
}

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

.testimonial-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 0 0;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 248, 238, 0.88);
}

.stars {
  margin: 0 0 10px;
  color: var(--oga-gold);
  letter-spacing: 0.18em;
}

.testimonial-name {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 248, 238, 0.96);
}

.home-testimonial-band .testimonial-context {
  color: rgba(255, 248, 238, 0.62);
}

.gallery-controls,
.center-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.center-row {
  margin-top: 24px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.filter-chip {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 27, 58, 0.12);
  background: rgba(255, 251, 245, 0.96);
  color: var(--oga-navy);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--oga-navy);
  color: rgba(255, 248, 238, 0.96);
  border-color: rgba(217, 164, 65, 0.28);
}

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

.gallery-card {
  margin: 0;
}

.gallery-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 34px rgba(6, 27, 58, 0.12);
}

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

.gallery-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 58, 0.12), rgba(6, 27, 58, 0.82));
}

.gallery-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  background: rgba(6, 27, 58, 0.88);
  color: var(--oga-gold);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gallery-card figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--oga-muted);
}

.lightbox {
  width: min(1000px, calc(100% - 32px));
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 20px;
  padding: 0;
  background: linear-gradient(180deg, rgba(4, 20, 42, 0.98), rgba(8, 29, 57, 0.98));
  color: rgba(255, 248, 238, 0.96);
}

.lightbox::backdrop {
  background: rgba(6, 27, 58, 0.92);
}

.lightbox-close-row {
  display: flex;
  justify-content: flex-end;
  padding: 12px;
}

.lightbox-close-row .icon-button {
  display: inline-flex;
}

.lightbox-body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 12px;
  padding: 0 16px 20px;
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 248, 238, 0.76);
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.2);
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.96);
  cursor: pointer;
  font-size: 1.5rem;
}

.form-panel,
.contact-card,
.notice-card,
.price-highlight {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 232, 0.96));
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--oga-navy);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.field label span {
  color: var(--oga-gold-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(6, 27, 58, 0.14);
  background: rgba(255, 253, 249, 0.98);
  color: var(--oga-navy);
  font-family: var(--font-body);
  font-size: 0.98rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--oga-muted);
}

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

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.helper-text,
.error-text,
.form-status {
  font-size: 0.86rem;
  line-height: 1.6;
}

.helper-text {
  color: var(--oga-muted);
  margin-top: 8px;
}

.error-text {
  color: var(--oga-error);
  min-height: 1.2em;
  margin-top: 6px;
}

.fieldset {
  margin: 18px 0 0;
  border: 0;
  padding: 0;
}

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

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(6, 27, 58, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.98);
}

.checkbox-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--oga-gold);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(46, 125, 79, 0.1);
  color: var(--oga-success);
}

.form-status.is-error {
  display: block;
  background: rgba(192, 57, 43, 0.1);
  color: var(--oga-error);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-card .map-wrap {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(6, 27, 58, 0.1);
}

.contact-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(6, 27, 58, 0.16);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.price-highlight {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.notice-card h3,
.contact-card h3,
.form-panel h2,
.proof-card h3,
.detail-card h3,
.team-card h3,
.info-card h3 {
  margin-top: 0;
}

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

.team-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 232, 0.96));
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(6, 27, 58, 0.08);
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.98);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--oga-navy);
  letter-spacing: 0.02em;
}

.faq-item p {
  margin-top: 12px;
}

.section-cta {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.98), rgba(8, 29, 57, 0.98)),
    rgba(6, 27, 58, 0.98);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: rgba(255, 248, 238, 0.05);
  border-color: rgba(217, 164, 65, 0.14);
}

.cta-panel h2,
.cta-panel p {
  color: rgba(255, 248, 238, 0.97);
}

.prose-block h2 {
  margin-bottom: 18px;
}

.prose-block p + p {
  margin-top: 14px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(4, 20, 42, 0.98), rgba(7, 25, 49, 0.98)),
    rgba(6, 27, 58, 0.98);
  color: rgba(255, 248, 238, 0.96);
  padding-top: 56px;
  border-top: 1px solid rgba(217, 164, 65, 0.18);
}

.brand-footer strong,
.brand-footer small {
  color: rgba(255, 248, 238, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
}

.footer-address {
  margin-top: 20px;
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 248, 238, 0.82);
}

.footer-address a,
.footer-links a,
.footer-base a {
  color: inherit;
}

.footer-note {
  margin-top: 16px;
  color: rgba(255, 248, 238, 0.64);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 248, 238, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-base a:hover,
.footer-base a:focus-visible {
  color: var(--oga-gold);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.65);
}

.nav-group > .nav-link::after {
  content: "▾";
  margin-left: 3px;
  font-size: 0.72em;
  opacity: 0.55;
  vertical-align: middle;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    min-height: 64px;
    background: linear-gradient(180deg, rgba(4, 20, 42, 0.99), rgba(7, 24, 49, 0.99));
    border-top: 1px solid rgba(217, 164, 65, 0.22);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.22);
  }

  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    text-decoration: none;
    color: rgba(255, 248, 238, 0.82);
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-right: 1px solid rgba(255, 248, 238, 0.08);
    transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }

  .mobile-cta-bar a:last-child {
    border-right: 0;
  }

  .mobile-cta-bar a:hover,
  .mobile-cta-bar a:focus-visible {
    color: rgba(255, 248, 238, 0.98);
    background: rgba(255, 248, 238, 0.06);
  }

  .mobile-cta-bar a.is-gold {
    background: linear-gradient(180deg, var(--oga-gold), var(--oga-gold-deep));
    color: rgba(255, 249, 241, 0.98);
  }

  .mobile-cta-bar a.is-gold:hover,
  .mobile-cta-bar a.is-gold:focus-visible {
    background: var(--oga-gold);
    color: rgba(255, 255, 255, 0.98);
  }

  .mobile-cta-bar svg {
    opacity: 0.72;
  }

  .mobile-cta-bar a.is-gold svg {
    opacity: 0.9;
  }
}

/* Training program card icons */
.card-icon {
  color: var(--oga-gold);
  margin-bottom: 14px;
  display: block;
}

/* Centered section header variant */
.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* Proof list — editorial numbered layout replacing identical card grid */
.proof-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(6, 27, 58, 0.07);
  border-radius: 18px;
  overflow: hidden;
}

.proof-item {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 232, 0.96));
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 12px;
  align-items: start;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: rgba(217, 164, 65, 0.42);
  line-height: 1.1;
  letter-spacing: -0.03em;
  padding-top: 3px;
}

.proof-item h3 {
  margin: 0 0 8px;
}

.proof-item p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .hero-plaque {
    display: none;
  }
  .hero-copy {
    width: min(88%, 380px);
    padding: 28px 16px 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .mobile-nav[data-mobile-nav]:not([hidden]) {
    display: block;
  }

  .contact-link {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .shell-split,
  .cta-panel,
  .footer-grid,
  .home-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 800px;
  }

  .hero-stage-image {
    min-height: 800px;
  }

  .hero-copy {
    top: auto;
    bottom: 0;
    width: min(56%, 520px);
    padding: 0 24px 44px 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 3.55vw, 3.9rem);
    max-width: 11.75ch;
  }

  .hero-text {
    margin-top: 10px;
    max-width: 34ch;
  }

  .hero-mini-proof {
    margin-top: 12px;
  }

  .hero-local-line {
    display: none;
  }

  .hero-plaque {
    right: 18px;
    bottom: 18px;
  }

  .feature-rail-grid,
  .proof-grid,
  .testimonial-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-rail-grid > *:nth-child(2n) {
    border-right: 0;
  }

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

  body[data-page="home"] .card-grid > .info-card:nth-child(1),
  body[data-page="home"] .card-grid > .info-card:nth-child(4) {
    grid-row: auto;
    min-height: 340px;
  }

  body[data-page="home"] .card-grid > .info-card:nth-child(1) .card-image,
  body[data-page="home"] .card-grid > .info-card:nth-child(4) .card-image {
    min-height: 340px;
  }

  body[data-page="home"] .card-grid > .info-card:nth-child(5),
  body[data-page="home"] .card-grid > .info-card:nth-child(6) {
    display: block;
    min-height: 280px;
  }

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

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

/* ─── all tables: wrap enhancement ─────────────────── */
.table-wrap {
  border-color: rgba(6, 27, 58, 0.14);
  box-shadow: 0 28px 60px rgba(6, 27, 58, 0.13);
}

@media (max-width: 980px) {
  body[data-page="book-online"] .table-wrap,
  body[data-page="league"] .table-wrap {
    padding: 12px;
    overflow: visible;
  }

  body[data-page="book-online"] .data-table,
  body[data-page="book-online"] .data-table thead,
  body[data-page="book-online"] .data-table tbody,
  body[data-page="book-online"] .data-table tr,
  body[data-page="book-online"] .data-table th,
  body[data-page="book-online"] .data-table td,
  body[data-page="league"] .data-table,
  body[data-page="league"] .data-table thead,
  body[data-page="league"] .data-table tbody,
  body[data-page="league"] .data-table tr,
  body[data-page="league"] .data-table th,
  body[data-page="league"] .data-table td {
    display: block;
  }

  body[data-page="book-online"] .data-table,
  body[data-page="league"] .data-table {
    min-width: 0;
    border-spacing: 0;
  }

  body[data-page="book-online"] .data-table thead,
  body[data-page="league"] .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body[data-page="book-online"] .data-table tbody,
  body[data-page="league"] .data-table tbody {
    display: grid;
    gap: 14px;
  }

  body[data-page="book-online"] .data-table tbody tr,
  body[data-page="league"] .data-table tbody tr {
    display: grid;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--oga-white);
    box-shadow: 0 16px 34px rgba(6, 27, 58, 0.08);
  }

  body[data-page="book-online"] .data-table tbody td,
  body[data-page="league"] .data-table tbody td {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border-top: 1px solid rgba(6, 27, 58, 0.08);
  }

  body[data-page="book-online"] .data-table tbody td:first-child,
  body[data-page="league"] .data-table tbody td:first-child {
    border-top: 0;
    min-width: 0;
  }

  body[data-page="book-online"] .data-table tbody td:first-child::before,
  body[data-page="league"] .data-table tbody td:first-child::before {
    display: none;
  }

  body[data-page="book-online"] .data-table tbody td::before,
  body[data-page="league"] .data-table tbody td::before {
    content: attr(data-label);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(6, 27, 58, 0.56);
  }

  body[data-page="book-online"] .data-table tbody td:last-child {
    width: auto;
  }

  body[data-page="book-online"] .data-table td a {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .shell,
  .shell-narrow {
    width: min(calc(100% - 24px), var(--container-max));
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .feature-rail-grid,
  .card-grid,
  .card-grid-three,
  .proof-grid,
  .proof-list,
  .testimonial-grid,
  .team-grid,
  .footer-links,
  .form-grid.is-two-column,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .feature-rail-grid > * {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 238, 0.1);
  }

  .hero-home {
    padding-top: 20px;
  }

  .hero-stage {
    background: linear-gradient(180deg, #061a38 0%, #081d39 46%, #0a2447 100%);
  }

  .hero-stage > picture {
    display: none;
  }

  .hero-stage-overlay {
    position: relative;
    min-height: 100%;
    background: linear-gradient(
      180deg,
      rgba(6, 26, 56, 0.95) 0%,
      rgba(6, 26, 56, 0.84) 44%,
      rgba(6, 26, 56, 0.68) 100%
    );
  }

  .hero-copy {
    position: relative;
    top: auto;
    bottom: auto;
    width: min(100%, 430px);
    justify-content: flex-start;
    padding: 42px 18px 22px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8.3vw, 3rem);
    line-height: 0.98;
    max-width: 10.8ch;
  }

  .hero-text {
    margin-top: 10px;
    max-width: 27ch;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-stage-image {
    min-height: 420px;
    object-position: center;
  }

  .hero-mini-proof,
  .hero-local-line {
    font-size: 0.8rem;
    gap: 8px 14px;
  }

  .hero-copy .button-row .btn {
    min-width: 182px;
  }

  .hero-plaque {
    right: 14px;
    bottom: 14px;
    width: min(210px, calc(100% - 28px));
    padding: 0 16px 18px;
  }

  .hero-plaque h2 {
    font-size: 1.35rem;
  }

  .form-actions,
  .footer-base {
    flex-direction: column;
    align-items: stretch;
  }

  .table-wrap {
    padding: 12px;
    overflow: visible;
  }

  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
  }

  .data-table {
    min-width: 0;
    border-spacing: 0;
  }

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

  .data-table tbody {
    display: grid;
    gap: 14px;
  }

  .data-table tbody tr {
    display: grid;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(250, 245, 237, 0.98));
    box-shadow: 0 16px 34px rgba(6, 27, 58, 0.08);
  }

  .data-table tbody td {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border-top: 1px solid rgba(6, 27, 58, 0.08);
  }

  .data-table tbody td:first-child {
    border-top: 0;
    min-width: 0;
  }

  .data-table tbody td:first-child::before {
    display: none;
  }

  .data-table tbody td::before {
    content: attr(data-label);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(6, 27, 58, 0.56);
  }

  .data-table tbody td:last-child {
    width: auto;
  }

  .data-table td a {
    width: 100%;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, rgba(4, 20, 42, 0.98), rgba(8, 29, 57, 0.98));
    box-shadow: 0 -10px 24px rgba(6, 27, 58, 0.2);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-cta-bar a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 248, 238, 0.96);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-right: 1px solid rgba(255, 248, 238, 0.08);
  }

  .mobile-cta-bar a.is-gold {
    background: linear-gradient(180deg, var(--oga-gold), var(--oga-gold-deep));
  }
}

@media (max-width: 480px) {
  .hero-copy {
    width: 100%;
    padding: 46px 16px 24px 20px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-copy .button-row .btn {
    min-width: 0;
    width: 100%;
  }

  /* Prevent long button labels from overflowing at 320px */
  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* Landscape phones — reduce hero height so content fits without scrolling */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-stage,
  .hero-stage-image {
    min-height: 300px;
  }

  .hero-plaque {
    display: none;
  }
}

/* ============================================================
   Featured testimonial — first card in home testimonial band
   ============================================================ */

