:root {
  --black: #0A0A0A;
  --rich-black: #111111;
  --white: #FFFFFF;
  --off-white: #F4F4F4;
  --grey: #8C8C8C;
  --max-width: 1180px;
  --border: 1px solid rgba(255,255,255,0.16);
  --border-dark: 1px solid rgba(10,10,10,0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96);
  border-bottom: var(--border-dark); backdrop-filter: blur(10px);
}
.navbar { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand-text { font-family: "Playfair Display", serif; font-size: 1.15rem; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  padding: 8px 12px; border: var(--border-dark); font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.1em; transition: 0.2s ease; background: var(--white);
}
.nav-links a:hover, .nav-links a.active, .btn:hover { background: var(--black); color: var(--white); }
.hero, .page-hero {
  min-height: 74vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), #d8d8d8;
}
.page-hero.short { min-height: 48vh; }
.hero-inner, .page-hero-inner { width: min(92%, 780px); color: var(--white); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; margin-bottom: 16px; display: inline-block; }
h1, h2, h3, h4 { font-family: "Playfair Display", serif; line-height: 1.08; margin: 0 0 12px; }
h1 { font-size: clamp(3rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
p { margin: 0 0 16px; }
.hero p, .page-hero p { color: rgba(255,255,255,0.9); }
.section { padding: 64px 0; }
.section.dark { background: var(--black); color: var(--white); }
.section.off { background: var(--off-white); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section.dark p, .section.dark .meta, .section.dark li { color: rgba(255,255,255,0.82); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .price-card, .team-card, .portal-card, .feature-card {
  padding: 24px; border: var(--border-dark); background: var(--white);
}
.section.dark .card, .section.dark .price-card, .section.dark .team-card, .section.dark .portal-card, .section.dark .feature-card {
  background: var(--rich-black); color: var(--white); border: var(--border);
}
.placeholder, .poster, .video-box, .calendar-box {
  min-height: 230px; background: #dadada; border: var(--border-dark);
}
.section.dark .placeholder, .section.dark .poster, .section.dark .video-box, .section.dark .calendar-box {
  background: #222; border: var(--border);
}
.poster.tall { min-height: 360px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; min-width: 120px;
  border: 1px solid currentColor; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem;
  transition: 0.2s ease; background: transparent;
}

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; min-width: 120px;
  border: 1px solid currentColor; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem;
  transition: 0.2s ease; background: white; color: var(--black);
}
.btn-row, .dots, .socials { display: flex; gap: 10px; flex-wrap: wrap; }
.dots { justify-content: center; margin-top: 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.28; }
.dot.active { opacity: 1; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 30px; align-items: center; }
.icon-list, .contact-list { display: grid; gap: 18px; }
.icon-item, .contact-item, .team-meta { display: flex; gap: 14px; align-items: flex-start; }
.icon, .contact-icon, .avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto;
  border: var(--border-dark); background: var(--off-white);
}
.section.dark .icon, .section.dark .contact-icon, .section.dark .avatar { border: var(--border); background: #1b1b1b; }
.meta { color: #555; }
.price { font-size: 2rem; font-family: "Playfair Display", serif; margin-bottom: 10px; }
form { display: grid; gap: 12px; }
input, textarea {
  width: 100%; padding: 12px 14px; border: var(--border-dark); background: var(--white); color: var(--black); font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.footer { padding: 24px 0 36px; border-top: var(--border-dark); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.small { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); }
.calendar-box, .video-box { display: grid; place-items: center; }
.play { width: 74px; height: 74px; border-radius: 50%; border: var(--border-dark); display: grid; place-items: center; font-size: 1.5rem; }
.section.dark .play { border: var(--border); }
.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.timeline-item { min-height: 180px; border: 1px dashed rgba(255,255,255,0.28); display: flex; align-items: end; padding: 20px; font-family: "Playfair Display", serif; font-size: 1.7rem; }
.section:not(.dark) .timeline-item { border-color: rgba(10,10,10,0.25); }


/* =========================================
   HOME PAGE HERCULES HERO – FINAL LOGO STYLE
========================================= */

.hero--hercules-bg {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    radial-gradient(circle at top, rgba(184,145,69,0.16), transparent 42%),
    url("assets/img/hercules/purple-background-5.webp") center/cover no-repeat;
  overflow: hidden;
}

/* subtle centre depth */
.hero--hercules-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.22), transparent 62%);
  pointer-events: none;
}

/* subtle bottom fade for depth */
.hero--hercules-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.35));
  pointer-events: none;
}

/* keep content above overlays */
.hero--hercules-bg .hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 820px);
}

/* eyebrow */
.hero-eyebrow-hercules {
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

/* =========================================
   HERCULES HERO – IMAGE LOGO VERSION
========================================= */

.hero--hercules-bg {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)),
    radial-gradient(circle at top, rgba(225,155,56,0.12), transparent 42%),
    url("assets/img/hercules/purple-background-5.webp") center/cover no-repeat;
  overflow: hidden;
}

.hero--hercules-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), transparent 60%);
  pointer-events: none;
}

.hero--hercules-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
  pointer-events: none;
}

.hero--hercules-bg .hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 860px);
}

.hero-inner--hercules {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow-hercules {
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

/* Logo image */
.hero-logo-hercules {
  display: block;
  width: min(100%, 720px);
  margin: 0 auto 26px;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(43,22,0,0.65))
          drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

/* Copy */
.hero-copy-hercules {
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

.hero-btn-row-hercules {
  justify-content: center;
  margin-top: 6px;
}

/* CTA button */
.btn--hercules {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(2px);
  letter-spacing: 0.12em;
}

.btn--hercules:hover {
  background: #ffd54d;
  color: #2b1600;
  border-color: #ffd54d;
}

/* Mobile */
@media (max-width: 720px) {
  .hero-logo-hercules {
    width: min(100%, 520px);
    margin-bottom: 18px;
  }

  .hero-copy-hercules {
    font-size: 0.96rem;
    max-width: 560px;
  }
}

@font-face {
  font-family: "Greek Freak";
  src: url("fonts/Greek-Freak.woff2") format("woff2"),
       url("fonts/Greek-Freak.woff") format("woff");
  font-display: swap;
}

/* =========================================
   OAK LEGACY / ALUMNI SECTION
========================================= */

/* =========================================
   SECTION WRAPPER
========================================= */

.legacy-section {
  position: relative;
  padding: 72px 0;
  background: #0f0f0f;
  color: #ffffff;
  overflow: hidden;
}

.legacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05), transparent 28%);
  pointer-events: none;
}

.legacy-section .container {
  position: relative;
  z-index: 2;
}

.legacy-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* =========================================
   SLIDE LAYOUT
========================================= */

.legacy-slide-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legacy-entry {
  margin: 0;
  align-items: stretch;
}

.legacy-entry > [class*="col-"] {
  display: flex;
}

/* =========================================
   FEATURE IMAGES
========================================= */

.legacy-feature-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.legacy-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.legacy-feature-image-wrap:hover .legacy-feature-image {
  transform: scale(1.03);
}

/* =========================================
   ARTIST CARD
========================================= */

.legacy-artist-card--refined {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(180deg, #f8f6f1 0%, #f2efe8 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: #1a1a1a;
  display: flex;
  align-items: stretch;
}

.legacy-artist-card--refined > .row {
  width: 100%;
  min-height: 100%;
  align-items: stretch !important;
}

/* =========================================
   HEADSHOT AREA
========================================= */

.legacy-artist-headshot-wrap {
  height: 100%;
  padding: 18px 12px 18px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.legacy-artist-img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 22px 22px 52px 22px;
  border: 2px solid rgba(212, 175, 55, 0.9);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  background: #ddd;
}

/* =========================================
   TEXT AREA
========================================= */

.legacy-artist-card--refined .col-12.col-lg-3,
.legacy-artist-card--refined .col-12.col-lg-9 {
  display: flex;
}

.legacy-card-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.15rem 1.4rem 1.15rem 0.7rem;
}

.legacy-artist-name {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #181818;
}

.legacy-credit-line {
  margin: 0 0 0.6rem;
  color: rgba(24, 24, 24, 0.65);
  font-size: 0.75rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legacy-artist-copy {
  margin: 0 0 1rem;
  color: rgba(24, 24, 24, 0.9);
  font-size: 0.85rem;
  line-height: 1.6;
}

.legacy-artist-copy strong {
  color: #111111;
  font-weight: 700;
}

/* =========================================
   BUTTONS
========================================= */

.legacy-popup-btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 11px;
  border: 1px solid #b68b2a;
  background: linear-gradient(180deg, #d4af37 0%, #b78c2a 100%);
  color: #111111 !important;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(183, 140, 42, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.legacy-popup-btn:hover,
.legacy-popup-btn:focus {
  background: linear-gradient(180deg, #e2bf52 0%, #c89a2f 100%);
  color: #111111 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(183, 140, 42, 0.28);
  filter: brightness(1.02);
}

/* =========================================
   CAROUSEL CONTROLS / INDICATORS
========================================= */

#legacyCarousel .carousel-indicators {
  margin-top: 14px !important;
  margin-bottom: 0;
}

#legacyCarousel .carousel-indicators button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

#legacyCarousel .carousel-indicators button.active {
  background-color: #d4af37;
}

#legacyCarousel .carousel-control-prev,
#legacyCarousel .carousel-control-next {
  width: 4.5%;
}

#legacyCarousel .carousel-control-prev-icon,
#legacyCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1) brightness(1.5);
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {
  .legacy-section {
    padding: 44px 0 52px;
  }

  .legacy-title {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    line-height: 1.05;
  }

  .legacy-slide-stack {
    gap: 18px;
  }

  .legacy-entry {
    --bs-gutter-y: 0;
  }

  .legacy-feature-image-wrap,
  .legacy-artist-card--refined {
    min-height: 300px;
  }

  .legacy-artist-img {
    max-width: 140px;
  }

  .legacy-card-body {
    padding: 1.15rem 1.4rem 1.15rem 0.7rem;
  }

  .legacy-artist-name {
    font-size: 0.95rem;
  }

  .legacy-credit-line {
    font-size: 0.68rem;
  }

  .legacy-artist-copy {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 991.98px) {
  .legacy-section {
    padding: 64px 0;
  }

  .legacy-slide-stack {
    gap: 18px;
  }

  .legacy-feature-image-wrap,
  .legacy-artist-card--refined {
    min-height: 285px;
    border-radius: 20px;
  }

  .legacy-feature-image {
    min-height: 285px;
  }

  .legacy-artist-card--refined .col-12.col-lg-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .legacy-artist-card--refined .col-12.col-lg-9 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .legacy-artist-headshot-wrap {
    padding: 16px 14px 14px 16px;
  }

  .legacy-artist-img {
    max-width: 118px;
    border-radius: 20px 20px 48px 20px;
  }

  .legacy-card-body {
    padding: 1rem 1rem 1rem 0.85rem;
  }

  .legacy-artist-name {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .legacy-credit-line {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .legacy-artist-copy {
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .legacy-popup-btn {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.64rem;
    border-radius: 10px;
  }

  #legacyCarousel .carousel-control-prev,
  #legacyCarousel .carousel-control-next {
    width: 5%;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
  .legacy-section {
    padding: 56px 0;
  }

  .legacy-title {
    margin-bottom: 24px;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .legacy-slide-stack {
    gap: 20px;
  }

  .legacy-entry {
    gap: 16px;
  }

  .legacy-entry > [class*="col-"] {
    display: block;
  }

  .legacy-feature-image-wrap,
  .legacy-feature-image,
  .legacy-artist-card--refined {
    min-height: unset;
  }

  .legacy-feature-image-wrap {
    min-height: 220px;
    border-radius: 22px;
  }

  .legacy-feature-image {
    min-height: 220px;
  }

  .legacy-artist-card--refined .col-12.col-lg-3,
  .legacy-artist-card--refined .col-12.col-lg-9 {
    display: block;
  }

  .legacy-artist-headshot-wrap {
    padding: 18px 18px 0;
    justify-content: flex-start;
  }

  .legacy-artist-img {
    max-width: 145px;
    border-radius: 24px 24px 60px 24px;
  }

  .legacy-card-body {
    padding: 1.1rem 1.1rem 1.25rem;
  }

  .legacy-artist-name {
    font-size: 1.08rem;
  }

  .legacy-credit-line {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }

  .legacy-artist-copy {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .legacy-popup-btn {
    width: 100%;
    margin-top: 1rem;
  }

  #legacyCarousel .carousel-control-prev,
  #legacyCarousel .carousel-control-next {
    display: none;
  }
}

@media (max-width: 540px) {
  .legacy-section {
    padding: 52px 0;
  }
}

/* =========================================
   MODALS
========================================= */

.legacy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 9999;
}

.legacy-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legacy-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 10000;
}

.legacy-modal.active {
  opacity: 1;
  visibility: visible;
}

.legacy-modal-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: 88vh;
  overflow-y: auto;
  padding: 38px 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #111111;
  color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legacy-modal-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0),
    rgba(212, 175, 55, 0.9),
    rgba(212, 175, 55, 0)
  );
}

.legacy-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.legacy-modal-close:hover {
  color: #d4af37;
  transform: rotate(90deg);
}

.legacy-modal-dialog h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.legacy-modal-subtitle {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legacy-modal-intro {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.legacy-modal-section + .legacy-modal-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legacy-modal-section h4 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4af37;
}

.legacy-modal-section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
}

.legacy-modal-section p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.legacy-modal-section em {
  color: #fff4cb;
  font-style: normal;
}

.legacy-modal-dialog::-webkit-scrollbar {
  width: 10px;
}

.legacy-modal-dialog::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.legacy-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 999px;
}

.legacy-modal-dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.55);
}

/* =========================================
   MODAL RESPONSIVE TWEAKS
========================================= */

@media (max-width: 991.98px) {
  .legacy-modal-dialog {
    padding: 30px 22px 22px;
  }

  .legacy-modal-dialog::before {
    left: 22px;
    right: 22px;
  }
}

@media (max-width: 540px) {
  .legacy-modal {
    padding: 16px;
  }

  .legacy-modal-dialog {
    padding: 26px 18px 18px;
  }

  .legacy-modal-dialog::before {
    left: 18px;
    right: 18px;
  }

  .legacy-modal-close {
    top: 12px;
    right: 14px;
    font-size: 1.7rem;
  }

  .legacy-modal-dialog h3 {
    font-size: 1.35rem;
  }

  .legacy-modal-section h4 {
    font-size: 0.76rem;
  }
}

/* BENEFITS DIVIDER */
.benefits {
  padding: 80px 0;
}

/* =========================================
   FIX HEADSHOT SHAPE (TABLET)
========================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

  .legacy-artist-img {
    width: 100%;
    max-width: 115px;

    /* KEY FIX */
    height: auto !important;      /* remove stretch */
    aspect-ratio: 1 / 1.15;       /* controls shape */

    object-fit: cover;
    object-position: center top;  /* better face framing */

    border-radius: 20px 20px 48px 20px;
  }

  /* Prevent parent forcing height */
  .legacy-artist-headshot-wrap {
    align-items: flex-start;
  }

}

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

.benefit-card {
  border: 1px solid #ccc;
  padding: 40px;
  background: #f5f5f5;
  transition: all 0.35s ease;
  position: relative;
}

/* ✨ Hover effect */
.benefit-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Optional subtle line animation */
.benefit-card::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 30px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.35s ease;
}

.benefit-card:hover::after {
  width: calc(100% - 80px);
}

.benefit-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 1.2rem;
  line-height: 1.4;
}

/* ABOUT HOME PAGE*/
.about-preview {
  padding: 100px 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #333;
  display: block;
}

/* ABOUT PAGE */

.page-hero-about {
  position: relative;
  min-height: 62vh;
  padding: 110px 0 80px;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("assets/img/about/about-hero-collage.webp") center/cover no-repeat;
  overflow: hidden;
}

.page-hero-about {
  background-size: 110%;
}

.page-hero-about::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}

.page-hero-about .page-hero-about-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 680px);
  margin: 0 auto;
  text-align: center;
}

.page-hero-about h1 {
  margin-bottom: 16px;
}

.page-hero-about p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}

/* Mobile refinement */
@media (max-width: 720px) {
  .page-hero-about {
    min-height: 54vh;
    padding: 90px 0 60px;
    background-position: center center;
  }

  .page-hero-about .page-hero-about-inner {
    width: min(92%, 560px);
  }
}

/* Our Story */
.about-story {
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}

.about-story .container {
  max-width: 1040px;
}

.about-story h2 {
  text-align: center;
  margin-bottom: 28px;
}

.about-quote {
  max-width: 860px;
  margin: 0 auto 42px;
  padding: 32px 28px;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border: var(--border);
}

.about-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.45;
  color: var(--white);
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #444;
}

.about-text p:first-child {
  font-size: 1.14rem;
  color: var(--black);
}

.about-text strong {
  color: var(--black);
}

/* Pillars */
.about-pillars {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.12)),
    url("assets/img/about/about-pillars-bg.webp") center/cover no-repeat;
  overflow: hidden;
}

.about-pillars::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.35));
  pointer-events: none;
}

.pillars-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,10,10,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  background: rgba(10,10,10,0.8);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.pillar h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.pillar p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* Team */
.team {
  background: var(--off-white);
}

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

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--border-dark);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.team-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #ddd;
  border-bottom: var(--border-dark);
}

.team-card-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card h4 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.team-role {
  display: block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: var(--border-dark);
}

.team-socials a {
  padding: 7px 12px;
  border: var(--border-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--white);
  transition: 0.2s ease;
}

.team-socials a:hover {
  background: var(--black);
  color: var(--white);
}

/* CTA */
.about-cta {
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.about-cta h2 {
  color: var(--white);
}

.about-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.82);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1000px) {
  .pillars-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-hero:not(.short) {
    min-height: 54vh;
    padding: 90px 0 60px;
  }

  .about-quote {
    padding: 24px 20px;
  }

  .pillars-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image {
    height: 220px;
  }
}
/* Eyebrow label */
.section-eyebrow {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #555;
}

/* Heading */
.about-preview-content h2 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Paragraph */
.about-preview-content p {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 30px;
}

/* Button alignment */
.about-preview-content .btn {
  display: inline-block;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-preview-content {
    text-align: left;
  }

  .about-preview-image img {
    max-width: 600px;
  }
}
/* Mobile */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.center {
  text-align: center;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* TESTAMONIALS */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid #111;
  overflow: hidden;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-head h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
}

.testimonials-carousel {
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 20px 40px 10px;
  box-sizing: border-box;
}

.testimonial-quote {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.45;
  margin: 0 auto 30px;
  max-width: 900px;
  font-weight: 400;
}

.testimonial-name {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-role {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.5px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
}

.testimonials-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0;
  background: #000;
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonials-dot.active {
  opacity: 1;
  transform: scale(1.05);
}

.testimonials-dot:hover {
  opacity: 0.6;
}

@media (max-width: 700px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonial-slide {
    padding: 10px 20px 10px;
  }

  .testimonial-quote {
    font-size: 1.15rem;
  }
}


/* CONTACT HERO */

.page-hero-contact {
  position: relative;
  min-height: 62vh;
  padding: 110px 0 80px;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("assets/img/contact/contact-hero-image.webp") center/cover no-repeat;
  overflow: hidden;
}

.page-hero-contact {
  background-size: 110%;
}

.page-hero-contact::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}

.page-hero-contact .page-hero-contact-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 680px);
  margin: 0 auto;
  text-align: center;
}

.page-hero-contact h1 {
  margin-bottom: 16px;
}

.page-hero-contact p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 720px) {
  .page-hero-contact {
    min-height: 54vh;
    padding: 90px 0 60px;
    background-position: center center;
  }

  .page-hero-contact .page-hero-contact-inner {
    width: min(92%, 560px);
  }
}


/* =========================
   GENERIC PAGE HERO FIX
   About + Contact
   ========================= */

.page-hero,
.about-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.page-hero img,
.about-hero img,
.contact-hero img,
.page-hero-image,
.about-hero-image,
.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before,
.about-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.page-hero .hero-content,
.about-hero .hero-content,
.contact-hero .hero-content,
.page-hero .section-intro,
.about-hero .section-intro,
.contact-hero .section-intro,
.page-hero .container,
.about-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-content,
.about-hero .hero-content,
.contact-hero .hero-content {
  width: min(100%, 1000px);
  margin: 0 auto;
  text-align: center;
}

.page-hero h1,
.about-hero h1,
.contact-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  text-wrap: balance;
}

.page-hero p,
.about-hero p,
.contact-hero p {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1rem, 2vw, 1.7rem);
  line-height: 1.35;
  text-wrap: balance;
}

/* TABLET */
@media (max-width: 1024px) {
  .page-hero,
  .about-hero,
  .contact-hero {
    min-height: 62vh;
    padding: 110px 28px 70px;
  }

  .page-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    line-height: 0.98;
  }

  .page-hero p,
  .about-hero p,
  .contact-hero p {
    max-width: 760px;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .page-hero,
  .about-hero,
  .contact-hero {
    min-height: 58vh;
    padding: 96px 20px 56px;
    align-items: center;
  }

  .page-hero .hero-content,
  .about-hero .hero-content,
  .contact-hero .hero-content {
    width: 100%;
  }

  .page-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    line-height: 0.96;
    margin-bottom: 14px;
  }

  .page-hero p,
  .about-hero p,
  .contact-hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.4;
  }
}

.page-hero,
.about-hero,
.contact-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* CONTACT FORM */
.form-intro {
  margin-bottom: 24px;
}

.form-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 500;
}

.form-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 560px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 16px 18px;
  font: inherit;
  font-size: 1rem;
  color: #111;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.04);
  background: #fff;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 8px;
  justify-self: start;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
}

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

/* FOOTER */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid #ddd;
}

/* 3-column layout now */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Right align contact + legal */
.footer-right {
  text-align: right;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 25px;
  gap: 20px;
  flex-wrap: wrap;
}

.socials a {
  margin-right: 16px;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}

.socials a:hover {
  opacity: 0.6;
}

.footer-copy {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-right {
    text-align: left;
  }
}
@media (max-width: 720px) {
  .navbar { padding: 14px 0; flex-direction: column; align-items: flex-start; }
  .nav-links { justify-content: flex-start; }
  .hero, .page-hero { min-height: 58vh; }
  .section { padding: 48px 0; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}


/* =========================
   HERCULES LANDING PAGE
   Add after your main site CSS
   ========================= */

:root {
  --color-purple: #5d3a9b;
  --color-gold: #ffd700;
  --color-blue: #6ea0d2;
  --color-terracotta: #d16d3a;
  --color-marble: #f5f3ef;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-text: #1d1d1d;
  --color-muted: #5b5b5b;
  --color-border: rgba(17, 17, 17, 0.1);
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
  --max-width-narrow: 780px;
}

/* Load Greek-Freak only if you have the font file available */
@font-face {
  font-family: "Greek Freak";
  src: url("assets/fonts/Greek-Freak.ttf") format("woff2"),
       url("assets/fonts/Greek-Freak.ttf") format("woff");
  font-display: swap;
}

.hercules-landing {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at top center, rgba(255, 215, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
}

.hercules-container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.hercules-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.2;
}

.hercules-bg-shape--1 {
  top: 120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: var(--color-gold);
}

.hercules-bg-shape--2 {
  top: 760px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: var(--color-blue);
}

.hercules-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  min-height: auto;
  padding: 90px 0 70px;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)),
    radial-gradient(circle at top, rgba(225,155,56,0.12), transparent 42%),
    url("assets/img/hercules/purple-background-5.webp") center/cover no-repeat;
}

.hercules-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), transparent 60%);
  pointer-events: none;
}

.hercules-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
  pointer-events: none;
}

.hercules-hero-overlay {
  display: none;
}

.hercules-hero-grid {
  position: relative;
  z-index: 2;
  width: min(92%, 860px);
  margin: 0 auto;
  max-width: none;
}

.hercules-hero-content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

/* eyebrow */
.hercules-eyebrow {
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* logo */
.hercules-logo-wrap {
  margin-bottom: 36px;
}

.hercules-logo {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.5));
}

/* copy */
.hercules-hero-copy {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* CTA – more refined, less chunky */
.hercules-btn--hero {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hercules-btn--hero:hover {
  background: var(--color-gold);
  color: var(--color-purple);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* meta line */
.hercules-hero-meta {
  margin-top: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

/* SEO hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* mobile */
@media (max-width: 640px) {
  .hercules-hero {
    padding: 100px 0 80px;
  }

  .hercules-logo {
    max-width: 100%;
  }

  .hercules-hero-copy {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .hercules-hero {
    padding: 82px 0 62px;
  }
}

@media (max-width: 640px) {
  .hercules-hero {
    padding: 76px 0 54px;
  }
}

/* BUTTONS */
.hercules-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: none;
}

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

.hercules-btn--primary {
  background: var(--color-gold);
  color: var(--color-purple);
  box-shadow: 0 14px 30px rgba(255, 215, 0, 0.24);
}

.hercules-btn--primary:hover {
  box-shadow: 0 18px 38px rgba(255, 215, 0, 0.34);
}

.hercules-btn--secondary {
  background: var(--color-purple);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.hercules-btn--secondary:hover {
  background: #503189;
}

.hercules-btn--full {
  width: 100%;
}

.hercules-microcopy {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.85);
}

.hercules-microcopy--small {
  font-size: 0.88rem;
  color: inherit;
  opacity: 0.82;
}

.hercules-divider {
  position: relative;
  margin-top: 72px;
  height: 24px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 1) 0%, rgba(230, 183, 0, 1) 100%);
  overflow: hidden;
}

.hercules-divider span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 3%, rgba(93,58,155,1) 3% 4%, transparent 4% 8%, rgba(93,58,155,1) 8% 9%, transparent 9% 13%, rgba(93,58,155,1) 13% 14%, transparent 14% 18%, rgba(93,58,155,1) 18% 19%, transparent 19% 23%, rgba(93,58,155,1) 23% 24%, transparent 24% 28%, rgba(93,58,155,1) 28% 29%, transparent 29% 33%, rgba(93,58,155,1) 33% 34%, transparent 34% 38%, rgba(93,58,155,1) 38% 39%, transparent 39% 43%, rgba(93,58,155,1) 43% 44%, transparent 44% 48%, rgba(93,58,155,1) 48% 49%, transparent 49% 53%, rgba(93,58,155,1) 53% 54%, transparent 54% 58%, rgba(93,58,155,1) 58% 59%, transparent 59% 63%, rgba(93,58,155,1) 63% 64%, transparent 64% 68%, rgba(93,58,155,1) 68% 69%, transparent 69% 73%, rgba(93,58,155,1) 73% 74%, transparent 74% 78%, rgba(93,58,155,1) 78% 79%, transparent 79% 83%, rgba(93,58,155,1) 83% 84%, transparent 84% 88%, rgba(93,58,155,1) 88% 89%, transparent 89% 93%, rgba(93,58,155,1) 93% 94%, transparent 94% 100%);
  opacity: 0.9;
}


/* =========================
   HERCULES TICKET COUNTDOWN
========================= */

.hercules-ticket-countdown {
  padding: 24px 0 20px;
}

.ticket-countdown-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(91,58,164,0.96), rgba(45,16,82,0.96));
  border: 1px solid rgba(212,175,55,0.24);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.2),
    0 0 24px rgba(212,175,55,0.08);
  overflow: hidden;
  position: relative;
}

.ticket-countdown-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 28%);
  pointer-events: none;
}

.ticket-countdown-copy,
.ticket-countdown-timer {
  position: relative;
  z-index: 1;
}

.ticket-countdown-eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0d98b;
}

.ticket-countdown-copy h2 {
  margin: 0 0 12px;
  color: #fff;
}

.ticket-countdown-text {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,0.9);
}

.ticket-countdown-text strong {
  color: #f0d98b;
}

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

.countdown-unit {
  text-align: center;
  padding: 18px 12px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.countdown-unit span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.countdown-unit small {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 1024px) {
  .ticket-countdown-card {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }
}

@media (max-width: 640px) {
  .hercules-ticket-countdown {
    padding: 18px 0 16px;
  }

  .ticket-countdown-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

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

  .countdown-unit {
    padding: 16px 10px;
    border-radius: 18px;
  }
}
/* QUICK BOOK */
.hercules-quickbook {
  padding: 36px 0 72px;
}

.hercules-quickbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.9fr;
  gap: 36px;
  align-items: start;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 40px;
  padding: 44px 46px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.hercules-quickbook-copy h2 {
  margin: 0 0 18px;
  line-height: 1.05;
}

.hercules-quickbook-copy p {
  margin: 0;
  max-width: 420px;
  color: #5d5d5d;
}

.hercules-booking-selector {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hercules-date-selector,
.hercules-time-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.time-selector-label {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5b3aa4;
}

.date-pill,
.time-pill {
  appearance: none;
  border: 1.5px solid rgba(91,58,164,0.22);
  background: transparent;
  color: #5b3aa4;
  border-radius: 999px;
  padding: 14px 26px;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.date-pill:hover,
.time-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.7);
  box-shadow: 0 8px 20px rgba(91,58,164,0.08);
}

.date-pill.is-active,
.time-pill.is-active {
  background: #5b3aa4;
  color: #fff;
  border-color: #5b3aa4;
  box-shadow: 0 10px 24px rgba(91,58,164,0.24);
}

.time-pill {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.hercules-quickbook-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
}

.selected-date-label {
  margin: 0 0 22px;
  font-size: 1rem;
  color: #5d5d5d;
}

.selected-date-label span {
  font-weight: 700;
  color: #5b3aa4;
}

.hercules-quickbook-action .hercules-btn {
  min-width: 260px;
  text-align: center;
}

.hercules-microcopy--small {
  margin-top: 12px;
  color: #5d5d5d;
}

@media (max-width: 1100px) {
  .hercules-quickbook-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }

  .hercules-quickbook-copy p {
    max-width: none;
  }

  .hercules-quickbook-action {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hercules-quickbook-grid {
    border-radius: 26px;
    padding: 24px 18px;
  }

  .date-pill,
  .time-pill {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .hercules-quickbook-action .hercules-btn {
    min-width: 100%;
  }
}

/* GENERAL SECTIONS */
.hercules-section {
  position: relative;
  padding: 100px 0;
}

.hercules-section--intro {
  background: var(--color-marble);
  padding-top: 95px;
  padding-bottom: 75px;
}

.hercules-section--story {
  background: linear-gradient(180deg, var(--color-marble) 0%, #ffffff 100%);
}

.hercules-section--highlights {
  background:
    radial-gradient(circle at top right, rgba(110,160,210,0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.hercules-section--muses {
  background:
    radial-gradient(circle at center, rgba(209,109,58,0.16), transparent 24%),
    linear-gradient(180deg, #5d3a9b 0%, #4c2d84 100%);
  color: var(--color-white);
}

.hercules-section--visit {
  background: var(--color-marble);
}

.hercules-section--team {
  background: #ffffff;
  padding-top: 85px;
  padding-bottom: 85px;
}

.section-intro {
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 18px;
  color: inherit;
}

.section-intro p {
  margin: 0 auto 14px;
  max-width: 760px;
  line-height: 1.8;
  font-size: 1.06rem;
  color: inherit;
}

.hercules-section:not(.hercules-section--muses) .section-intro p,
.hercules-story-text p,
.detail-item p,
.hercules-card p,
.hercules-booking-card p,
.team-item p {
  color: var(--color-muted);
}

/* STORY */
.hercules-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hercules-story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px;
  color: var(--color-black);
}

.hercules-story-text p {
  margin: 0 0 16px;
  line-height: 1.85;
  font-size: 1.05rem;
}

.story-visual-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255,215,0,0.12), transparent 35%),
    linear-gradient(180deg, rgba(93,58,155,1) 0%, rgba(70,42,120,1) 100%);
  box-shadow: var(--shadow-strong);
  padding: 18px;
}

.story-poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

/* CARDS */
.hercules-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.hercules-card {
  padding: 34px 30px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 210px;
}

.hercules-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hercules-card p {
  margin: 0;
  line-height: 1.75;
}

.hercules-card--light {
  background: #ffffff;
}

.hercules-card--purple {
  background: rgba(93, 58, 155, 0.96);
  color: var(--color-white);
}

.hercules-card--purple p {
  color: rgba(255,255,255,0.85);
}

.hercules-card--blue {
  background: rgba(110, 160, 210, 0.22);
}

.hercules-card--terracotta {
  background: rgba(209, 109, 58, 0.18);
}

/* VISIT */
.hercules-visit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.hercules-visit-details h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
  color: var(--color-black);
}

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

.detail-item {
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.detail-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.detail-item p {
  margin: 0;
  line-height: 1.7;
}

.hercules-booking-card {
  background:
    radial-gradient(circle at top center, rgba(255, 215, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(93,58,155,1) 0%, rgba(77,43,133,1) 100%);
  color: var(--color-white);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  position: sticky;
  top: 100px;
}

.hercules-booking-card h3 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.15;
}

.hercules-booking-card p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}


/* TEAM */
:root {
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.35);
  --purple: #5A2A82;
  --purple-soft: rgba(90, 42, 130, 0.35);
}

.hercules-section--team {
  position: relative;
}

.hercules-section--team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--purple));
  opacity: 0.6;
}

.hercules-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.team-item {
  text-align: center;
  position: relative;
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(212,175,55,0.08);
  transition: all 0.35s ease;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-item:hover .team-img-wrap {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.7),
    0 0 12px var(--gold-soft),
    0 0 24px var(--purple-soft);
}

.team-item h3 {
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.team-item h3::after {
  content: "";
  display: block;
  width: 40%;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(to right, var(--gold), var(--purple));
  opacity: 0.8;
}

.team-item p {
  font-size: 1rem;
  opacity: 1;
  color: var(--color-purple);
  margin: 0;
}

@media (max-width: 1024px) {
  .hercules-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hercules-team-grid {
    grid-template-columns: 1fr;
  }
}
/* FINAL CTA */
.hercules-final-cta {
  position: relative;
  padding: 115px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,215,0,0.12), transparent 26%),
    radial-gradient(circle at center center, rgba(255,255,255,0.05), transparent 60%),
    linear-gradient(180deg, rgba(93,58,155,1) 0%, rgba(67,38,117,1) 100%);
  color: var(--color-white);
}

.hercules-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at center, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px);
  opacity: 0.2;
  pointer-events: none;
}

.hercules-final-actions {
  margin-top: 32px;
}

/* STICKY BUTTON */
.hercules-sticky-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-purple);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hercules-sticky-book.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hercules-quickbook-grid,
  .hercules-story-grid,
  .hercules-visit-grid {
    grid-template-columns: 1fr;
  }

  .hercules-quickbook-action {
    text-align: left;
  }

  .hercules-booking-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .hercules-section,
  .hercules-final-cta {
    padding: 78px 0;
  }

  .hercules-hero {
    padding-top: 92px;
  }

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

  .hercules-card {
    min-height: auto;
  }

  .hercules-quickbook-grid {
    padding: 22px;
  }
}

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

  .hercules-logo {
    max-width: 320px;
  }

  .hercules-hero-copy,
  .section-intro p,
  .hercules-story-text p,
  .detail-item p,
  .hercules-card p,
  .hercules-booking-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hercules-btn,
  .hercules-sticky-book {
    min-height: 50px;
  }

  .hercules-info-chips {
    gap: 10px;
  }

  .info-chip {
    width: 100%;
  }

  .hercules-sticky-book {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 0 18px;
  }
}

.hercules-muses-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.hercules-section--muses .section-intro {
  text-align: center;
}

.hercules-section--muses .section-intro p {
  color: rgba(255, 255, 255, 0.88);
}

.hercules-muses-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hercules-muses-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 980px) {
  .hercules-muses-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hercules-muses-photo {
    aspect-ratio: 16 / 10;
    object-position: center 20%;
  }
}

@media (max-width: 640px) {
  .hercules-muses-photo {
    aspect-ratio: 5 / 4;
    object-position: center 18%;
  }
}

.hercules-section--cast {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-marble) 100%);
}

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

.cast-card {
  background: var(--color-white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cast-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.cast-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.cast-card-image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.cast-card-content {
  padding: 22px 20px 24px;
  text-align: center;
}

.cast-card-content h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--color-black);
}

.cast-role {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-purple);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hercules-cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hercules-cast-grid {
    grid-template-columns: 1fr;
  }

  .cast-card-image {
    height: 320px;
  }
}

/* =========================
   HERCULES CAST SECTION
   Updated with equal-height principal + muse cards
========================= */

.hercules-section--cast {
  position: relative;
}

.hercules-section--cast .section-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.cast-block + .cast-block {
  margin-top: 56px;
}

.cast-category-title {
  text-align: center;
  margin-bottom: 24px;
}

.cast-category-title h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-purple);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.cast-category-title h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #6d3bb0);
  border-radius: 999px;
}

/* PRINCIPALS GRID */
.hercules-cast-grid--principals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* SHARED CARD STYLING */
.cast-card,
.muse-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.35),
    0 0 0 1px rgba(212,175,55,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  backdrop-filter: blur(4px);
}

.cast-card:hover,
.muse-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.25);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.45),
    0 0 18px rgba(212,175,55,0.18),
    0 0 28px rgba(109,59,176,0.12);
}

/* PRINCIPAL IMAGES */
.cast-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(109,59,176,0.18), transparent 55%),
    #111;
  flex-shrink: 0;
}

.cast-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(10,10,10,0.75), transparent);
  pointer-events: none;
  z-index: 2;
}

.cast-card-image,
.muse-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease;
}

.cast-front {
  opacity: 1;
  z-index: 1;
}

.cast-hover {
  opacity: 0;
  z-index: 1;
}

.cast-card:hover .cast-front,
.muse-card:hover .cast-front {
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(0.9);
}

.cast-card:hover .cast-hover,
.muse-card:hover .cast-hover {
  opacity: 1;
  transform: scale(1.02);
}

/* PRINCIPAL CARD CONTENT */
.cast-card-content {
  padding: 18px 18px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cast-card-content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  color: var(--color-purple);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cast-role {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: goldenrod;
}

.cast-role::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, #d4af37, #6d3bb0);
  border-radius: 999px;
  opacity: 0.9;
}

/* MUSES */
.cast-block--muses {
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.muses-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.muse-card {
  min-width: 0;
}

.muse-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.14), transparent 55%),
    #111;
  flex-shrink: 0;
}

.muse-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
  pointer-events: none;
  z-index: 2;
}

.muse-content {
  padding: 12px 10px 16px;
  text-align: center;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.muse-content h4 {
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.3;
  color: goldenrod;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.muse-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-purple);
}

/* MUSES GRID BASE */
.muses-grid {
  display: grid;
  gap: 18px;
}

.muse-card {
  width: 100%;
  min-width: 0;
}

/* Make images behave nicely inside cards */
.muse-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px 24px 0 0;
}

/* TABLET */
@media (min-width: 641px) and (max-width: 1024px) {
  .muses-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
  }

  .muse-card {
    min-width: 0;
    width: 100%;
  }

  .muses-strip .muse-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .muses-strip .muse-card:nth-child(5),
  .muses-strip .muse-card:nth-child(6),
  .muses-strip .muse-card:nth-child(7) {
    grid-row: 3;
  }

  .muses-strip .muse-card:nth-child(5) {
    grid-column: 1 / 2;
  }

  .muses-strip .muse-card:nth-child(6) {
    grid-column: 2 / 3;
  }

  .muses-strip .muse-card:nth-child(7) {
    grid-column: 3 / 4;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hercules-muses-photo {
    aspect-ratio: 16 / 10;
    object-position: center 40%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .hercules-cast-grid--principals {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cast-card-image-wrap {
    aspect-ratio: 4 / 4.8;
  }

  .cast-card-content {
    min-height: 104px;
  }

  .cast-block--muses {
    margin-top: 52px;
    padding-top: 26px;
  }

  @media (max-width: 640px) {
  .muses-strip {
    --muse-gap: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--muse-gap);
  }

  .muse-card {
    min-width: 0;
    width: 100%;
  }

  .muses-strip .muse-card:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - var(--muse-gap)) / 2);
    max-width: none;
  }

  .muses-strip .muse-card:nth-child(7) .muse-image-wrap {
    width: 100%;
  }
}

  .muse-content {
    min-height: 96px;
  }

  .muse-content h4 {
    font-size: 0.9rem;
  }

  .cast-modal {
    padding: 14px;
  }

  .cast-modal-dialog {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .cast-modal-group ul {
    columns: 1;
  }
}

/* VIEW FULL CAST BUTTON */
.cast-modal-trigger-wrap {
  margin-top: 42px;
  text-align: center;
}

.cast-modal-trigger {
  appearance: none;
  border: 1px solid rgba(212,175,55,0.32);
  background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(109,59,176,0.16));
  color: var(--color-purple);
  padding: 14px 28px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.04);
}

.cast-modal-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.5);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.35),
    0 0 18px rgba(212,175,55,0.14),
    0 0 26px rgba(109,59,176,0.1);
}

/* MODAL */
.cast-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cast-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cast-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,12,0.8);
  backdrop-filter: blur(6px);
}

.cast-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(85vh, 900px);
  overflow: auto;
  border-radius: 24px;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, rgba(20,20,26,0.98), rgba(13,13,18,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    0 0 24px rgba(212,175,55,0.08),
    0 0 36px rgba(109,59,176,0.08);
  color: #fff;
}

.cast-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cast-modal-close:hover {
  background: rgba(212,175,55,0.18);
  transform: rotate(90deg);
}

.cast-modal-content h3 {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #fff;
}

.cast-modal-group + .cast-modal-group {
  margin-top: 28px;
}

.cast-modal-group h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #f0d98b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cast-modal-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}

.cast-modal-group li {
  break-inside: avoid;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* TABLET */
@media (max-width: 1024px) {
  .hercules-cast-grid--principals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .hercules-cast-grid--principals {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cast-card-image-wrap {
    aspect-ratio: 4 / 4.8;
  }

  .cast-card-content {
    min-height: 104px;
  }

  .cast-block--muses {
    margin-top: 52px;
    padding-top: 26px;
  }

  .cast-modal {
    padding: 14px;
  }

  .cast-modal-dialog {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .cast-modal-group ul {
    columns: 1;
  }
}

/* TOUCH DEVICES */
@media (hover: none) {
  .cast-card:hover,
  .muse-card:hover {
    transform: none;
  }
}

.muse-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.muse-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   BOOTSTRAP MOBILE NAV + GLOBAL RESPONSIVE TUNING
========================================= */
.site-navbar {
  min-height: 80px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
}

.site-header .container {
  width: min(calc(100% - 32px), var(--max-width));
}

.site-navbar .navbar-brand {
  margin-right: 1rem;
}

.site-navbar .navbar-toggler {
  border: 1px solid rgba(10,10,10,0.14);
  padding: 0.45rem 0.65rem;
  border-radius: 0;
  box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: none;
  border-color: rgba(10,10,10,0.3);
}

.nav-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810,10,10,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .navbar-collapse {
  flex-grow: 0;
}

.site-navbar .nav-links {
  gap: 10px;
  align-items: center;
}

.site-navbar .nav-item {
  display: flex;
}

.site-navbar .nav-link {
  padding: 8px 12px;
  border: var(--border-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.2s ease;
  background: var(--white);
  color: var(--black);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar .nav-link:focus-visible {
  background: var(--black);
  color: var(--white);
}

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

select {
  width: 100%;
  padding: 12px 14px;
  border: var(--border-dark);
  background: var(--white);
  color: var(--black);
  font: inherit;
}

@media (max-width: 991.98px) {
  .site-navbar {
    min-height: 72px;
  }

  .site-navbar .navbar-collapse {
    margin-top: 14px;
    padding: 14px 0 6px;
    border-top: 1px solid rgba(10,10,10,0.08);
  }

  .site-navbar .nav-links {
    align-items: stretch;
    gap: 8px;
  }

  .site-navbar .nav-item,
  .site-navbar .nav-link {
    width: 100%;
  }

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

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

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

@media (max-width: 767.98px) {
  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero,
  .page-hero {
    min-height: 62vh;
    padding: 110px 0 70px;
  }

  .page-hero.short {
    min-height: 40vh;
  }

  .section {
    padding: 52px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .timeline {
    grid-template-columns: 1fr;
  }

  .card,
  .price-card,
  .team-card,
  .portal-card,
  .feature-card {
    padding: 20px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.footer-copy a {
  color: var(--gold); 
  text-decoration: underline;
  font-weight: 500;
  
}

.footer-copy a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* =========================================
   COOKIE BANNER
========================================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.96);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner__content {
  flex: 1;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner__text a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.cookie-btn--primary {
  background: #ffd700;
  color: #111111;
}

.cookie-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 767px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}