:root {
  --gold: #DEA831;
  --gold-dark: #B28629;
  --gold-light: #F3BF45;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --dark-bg: #0F0F0F;
  --gray-light: #F5F5F5;
  --gray-mid: #999999;
  --gray-dark: #333333;
  --green: #2ECC71;
  --accent-green: #1ABC9C;
  --text-primary: #1A1A1A;
  --text-light: #666666;
  --intro-overlap: clamp(84px, 12vw, 117px);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: #000000;
  border-bottom: 1px solid rgba(222, 168, 49, 0.28);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav {
  margin-left: auto;
}

.site-menu,
.site-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-menu > .menu-item {
  position: relative;
}

.site-menu a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-block;
  padding: 0.62rem 0.85rem;
  border-radius: 6px;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a {
  color: var(--white);
  background: rgba(222, 168, 49, 0.2);
}

.site-menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.45rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.site-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 0.45rem;
  border-radius: 10px;
  background: #0D0D0D;
  border: 1px solid rgba(222, 168, 49, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-menu .sub-menu li {
  margin: 0;
}

.site-menu .sub-menu a {
  display: block;
  color: var(--gold);
  padding: 0.55rem 0.75rem;
}

.site-menu .menu-item-has-children:hover > .sub-menu,
.site-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(222, 168, 49, 0.5);
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 3rem 1.5rem;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.home-brand-title {
  font-family: 'Bebas Neue', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  -webkit-text-stroke: 1.1px rgba(0, 0, 0, 0.75);
  text-shadow:
    0 0 0 #DEA831,
    1px 0 0 #DEA831,
    -1px 0 0 #DEA831,
    0 1px 0 #DEA831,
    0 -1px 0 #DEA831,
    0 10px 24px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.32);
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.9;
}

.hero-image {
  text-align: center;
  align-self: end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 168, 49, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-small {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--gold-light);
}

/* ===== INTRO SECTION ===== */
.intro {
  margin-top: calc(-1 * var(--intro-overlap));
  padding: 4rem 1.5rem;
  background: var(--white);
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== SERVICES / CARDS ===== */
.services {
  padding: 1.2rem 1.5rem;
  background: var(--gray-light);
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(222, 168, 49, 0.2);
  border-color: var(--gold);
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.8rem 0;
  color: var(--black);
  font-weight: 700;
}

.card p {
  color: var(--text-light);
  margin: 0 0 1rem 0;
  line-height: 1.7;
  flex-grow: 1;
}

.card-link {
  color: var(--gold);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.card:hover .card-link {
  color: var(--gold-dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 3rem 1.5rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== MERCH TEASER ===== */
.merch-teaser {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(222, 168, 49, 0.12), rgba(46, 204, 113, 0.08));
}

.merch-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.merch-teaser h2 {
  margin: 0 0 0.6rem 0;
  font-size: 1.8rem;
}

.merch-teaser p {
  margin: 0;
  color: var(--text-light);
  max-width: 520px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 3rem 1.5rem;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.2rem;
  margin: 0 0 0.5rem 0;
  font-weight: 800;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.page-hero p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 3rem 1.5rem;
  background: var(--white);
}

.content-section h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  color: var(--black);
  font-weight: 700;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem 0;
  color: var(--black);
  font-weight: 700;
}

.content-section p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  max-width: 900px;
}

.about-bio {
  max-width: 980px;
}

.about-bio-media {
  float: right;
  margin: 0 0 1rem 2rem;
}

.about-bio-media img {
  height: clamp(360px, 44vw, 560px);
  width: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
}

.feature-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.cta-box {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(222, 168, 49, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.cta-box h3 {
  margin-top: 0;
}

.skills-video-band {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.skills-video-inner {
  margin: 0;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(222, 168, 49, 0.1) 0%, rgba(46, 204, 113, 0.08) 100%);
  border-radius: 12px;
}

.skills-training-video {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .skills-training-video {
    max-height: min(75vh, 680px);
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

/* ===== PRICING GRID ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(222, 168, 49, 0.15);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(222, 168, 49, 0.3);
}

.pricing-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 1.5rem;
  color: var(--black);
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-body {
  padding: 1.5rem;
}

.pricing-note {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 1rem 0;
  font-style: italic;
}

/* ===== PRICING DETAILS ===== */
.pricing-details {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

.pricing-section h2 {
  margin-top: 0;
}

.pricing-table {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.pricing-table h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #E6E6E6;
}

.pricing-table th {
  font-weight: 700;
  color: var(--gray-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: radial-gradient(circle at top left, rgba(243, 191, 69, 0.35), transparent 55%),
    linear-gradient(135deg, #161616 0%, #2B2B2B 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(222, 168, 49, 0.25), transparent 70%);
  border-radius: 50%;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 0.8rem 0;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-lead {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-highlight {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.contact-highlight h2 {
  margin-top: 0;
  color: var(--gold-light);
}

.contact-highlight ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-highlight li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.6;
}

.contact-highlight li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.contact-section {
  background: var(--gray-light);
  padding: 3.5rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-card,
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h2,
.contact-form-card h2 {
  margin-top: 0;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-details span {
  display: block;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.contact-details p {
  margin: 0;
  color: var(--text-light);
}

.contact-details a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-note {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(222, 168, 49, 0.15), rgba(46, 204, 113, 0.12));
}

.contact-note h3 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  font-size: 1rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(222, 168, 49, 0.2);
}

.contact-form .btn {
  width: fit-content;
}

.form-status {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-status.success {
  background: rgba(46, 204, 113, 0.15);
  color: #1E8E4A;
}

.form-status.error {
  background: rgba(231, 76, 60, 0.15);
  color: #B03A2E;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo {
  display: block;
  height: 56px;
  margin: 0 0 0.6rem 0;
}

.footer-brand .brand {
  display: block;
}

.tagline {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0.5rem 0 0 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav h4 {
  margin: 0 0 0.5rem 0;
  color: var(--gold);
  font-size: 1rem;
}

.footer-nav a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contact h4 {
  margin: 0 0 0.5rem 0;
  color: var(--gold);
  font-size: 1rem;
}

.footer-contact p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.small {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero-content h1 {
    font-size: 3.6rem;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .hero-image {
    justify-self: end;
    text-align: right;
  }

  .hero-image img {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .hero-content h1 {
    font-size: 4.4rem;
  }

  .hero-tagline {
    font-size: 2.3rem;
  }
}

@media (max-width: 820px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-tagline {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .services h2 {
    font-size: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 992px) {
  .site-header-inner {
    min-height: 82px;
    justify-content: center;
    position: relative;
  }

  .site-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-logo {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 1.5rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #000000;
    border-top: 1px solid rgba(222, 168, 49, 0.28);
    border-bottom: 1px solid rgba(222, 168, 49, 0.28);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 520px;
  }

  .site-menu {
    display: block;
    padding: 0.8rem 1rem 1rem;
  }

  .site-menu > .menu-item > a {
    display: block;
    padding: 0.7rem 0.75rem;
  }

  .site-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0.15rem 0 0.35rem 0.6rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }

  .site-menu .menu-item-has-children:hover > .sub-menu,
  .site-menu .menu-item-has-children:focus-within > .sub-menu {
    display: none;
  }

  .site-menu .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
  }

  .site-menu .sub-menu a {
    padding: 0.45rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .page-hero {
    padding: 2rem 1rem;
  }

  .page-hero h1 {
    font-size: 1.3rem;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .services {
    padding: 1.5rem 1rem;
  }

  .about-bio-media {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
  }

  .about-bio-media img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .skills-training-video {
    width: 100%;
  }
}
