/*
Theme Name: Karen Y. McClain Final V15 WooCommerce
Theme URI: https://KarenYMcClain.biz
Author: Custom Theme
Description: Lightweight WordPress theme for Karen Y. McClain with clean focused pages, final Stripe links, WooCommerce shop/cart/checkout styling, Star Pupil donation button, curated Karen & Friends photos, YouTube channel/video, film poster showcase, live-ready WordPress blog layout, custom content builder, dedicated KMCC Travel page, speaking page, blog, and professional/social links.
Version: 15.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: karen-y-mcclain-exact
*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Great+Vibes&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --ink: #ffffff;
  --muted: #d8cbe7;
  --dark: #06000f;
  --midnight: #100027;
  --plum: #250044;
  --purple: #5d20a6;
  --pink: #e62b83;
  --hot-pink: #ff4ca3;
  --gold: #f6c84c;
  --gold-deep: #b87910;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(246, 200, 76, 0.35);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(230, 43, 131, 0.18), transparent 32%),
              radial-gradient(circle at top right, rgba(246, 200, 76, 0.14), transparent 30%),
              linear-gradient(135deg, var(--dark), var(--midnight) 44%, #050008);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1.05rem; }
strong { color: #fff; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 76px 0; position: relative; overflow: hidden; }
.section.tight { padding: 52px 0; }
.section-title { max-width: 760px; margin-bottom: 42px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); display: block; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 { font-family: Playfair Display, Georgia, serif; }
h1 { font-size: clamp(2.75rem, 5.6vw, 5.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.75rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; font-weight: 800; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: #f4eafd; max-width: 720px; }
.gold { color: var(--gold); }
.pink { color: var(--hot-pink); }
.script { font-family: Great Vibes, cursive; color: var(--hot-pink); font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 0.9; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 0, 13, 0.78);
  border-bottom: 1px solid rgba(246, 200, 76, 0.22);
}
.navbar { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; min-width: 210px; }
.brand .brand-main { font-family: Great Vibes, cursive; color: var(--gold); font-size: 2.25rem; line-height: 0.95; }
.brand .brand-domain { font-family: Playfair Display, serif; color: #fff; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
.brand small { color: #f7e8ff; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.66rem; margin-top: 4px; }
.nav-menu { display: flex; align-items: center; gap: 26px; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.nav-menu > a, .drop-trigger { color: #fff; opacity: 0.92; padding: 14px 0; }
.nav-menu > a:hover, .drop-trigger:hover { color: var(--gold); }
.dropdown { position: relative; }
.drop-trigger { border: 0; background: transparent; font: inherit; cursor: pointer; }
.drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  min-width: 260px;
  background: rgba(15, 0, 36, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 12px;
  transition: 0.2s ease;
}
.dropdown:hover .drop-menu, .dropdown:focus-within .drop-menu { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.drop-menu a { display: block; padding: 12px 14px; border-radius: 12px; color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 700; }
.drop-menu a:hover { background: rgba(246, 200, 76, 0.12); color: #fff; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.05); color: #fff; font-size: 1.5rem; }

.nav-donate {
  min-height: 38px;
  padding: 0 16px !important;
  border-radius: 999px;
  color: #120018 !important;
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  box-shadow: 0 10px 26px rgba(246, 200, 76, 0.22);
}
.nav-donate:hover { color: #120018 !important; transform: translateY(-1px); }
.bottom-feature-links {
  padding: 34px 0;
  border-top: 1px solid rgba(246, 200, 76, 0.16);
  border-bottom: 1px solid rgba(246, 200, 76, 0.16);
  background: rgba(0, 0, 0, 0.14);
}
.bottom-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bottom-feature-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(246, 200, 76, 0.26);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}
.bottom-feature-link span { color: var(--gold); font-size: 1.25rem; }
.bottom-feature-link:hover {
  border-color: var(--gold);
  background: rgba(246, 200, 76, 0.1);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(246, 200, 76, 0.6);
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #120018;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(246, 200, 76, 0.25);
  transition: 0.25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(246, 200, 76, 0.35); }
.btn.secondary { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.24); box-shadow: none; }
.btn.secondary:hover { border-color: var(--gold); }
.btn.pink-btn { background: linear-gradient(135deg, var(--pink), #ff70b6); color: #fff; border-color: rgba(255, 255, 255, 0.2); }
.btn.small { min-height: 40px; padding: 0 16px; font-size: 0.86rem; }
.btn.full { width: 100%; }

.hero {
  min-height: calc(100vh - 92px);
  padding: 64px 0 34px;
  display: grid;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(246, 200, 76, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr); align-items: center; gap: 44px; position: relative; z-index: 1; }
.hero-copy h1 span { display: block; }
.hero-copy .name { color: #fff; text-shadow: 0 0 42px rgba(255, 76, 163, 0.22); }
.hero-copy .domain { color: var(--hot-pink); font-size: 0.84em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 30px; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.badge { border: 1px solid rgba(246, 200, 76, 0.34); color: #ffe7a0; border-radius: 999px; padding: 8px 12px; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; background: rgba(246, 200, 76, 0.08); }
.hero-note { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 580px; }
.hero-note div { padding: 14px; border-radius: 18px; background: var(--card); border: 1px solid rgba(255,255,255,0.12); }
.hero-note b { color: #fff; display: block; font-size: 0.95rem; }
.hero-note span { color: var(--muted); font-size: 0.82rem; }
.hero-media { position: relative; min-height: 560px; }
.portrait-frame {
  position: absolute;
  inset: 10px 66px 70px 28px;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(230,43,131,0.24), rgba(246,200,76,0.12));
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(1.08) contrast(1.04); }
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,0,12,0.58), transparent 58%);
}
.float-card {
  position: absolute;
  background: rgba(9,0,26,0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.book-float { width: 250px; right: 0; bottom: 16px; }
.kmcc-float { width: 170px; left: 0; bottom: 0; }
.float-card img { border-radius: 16px; }
.float-card strong { display: block; margin-top: 10px; }
.float-card span { display: block; color: var(--muted); font-size: 0.82rem; }

.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at top right, rgba(255,76,163,0.18), transparent 34%); opacity: 0.85; pointer-events: none; }
.card > * { position: relative; z-index: 1; }
.card-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(246,200,76,0.13); color: var(--gold); font-size: 1.6rem; margin-bottom: 18px; border: 1px solid rgba(246,200,76,0.3); }
.card h3 { margin-bottom: 10px; }
.card-link { color: var(--gold); font-weight: 900; display: inline-flex; gap: 8px; align-items: center; margin-top: 12px; }

.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 44px; align-items: center; }
.image-panel { position: relative; border-radius: 34px; padding: 16px; background: linear-gradient(135deg, rgba(246,200,76,0.24), rgba(230,43,131,0.14)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.image-panel img { border-radius: 26px; width: 100%; }
.fact-list { display: grid; gap: 14px; margin-top: 24px; }
.fact { padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); }
.fact b { color: var(--gold); display: block; margin-bottom: 4px; }

.book-section { background: linear-gradient(135deg, rgba(230,43,131,0.17), rgba(93,32,166,0.15)); border-top: 1px solid rgba(246,200,76,0.18); border-bottom: 1px solid rgba(246,200,76,0.18); }
.book-section .split { align-items: center; }
.book-section .image-panel { max-width: 480px; justify-self: center; width: 100%; }
.book-section .image-panel img { aspect-ratio: 4 / 3; object-fit: contain; background: #f4fbfb; }
.book-section h2 { max-width: 620px; }
.price { font-family: Playfair Display, serif; font-size: 2.4rem; color: #fff; margin: 8px 0 20px; }
.purchase-box { background: rgba(0,0,0,0.25); border: 1px solid var(--line); border-radius: 22px; padding: 22px; margin-top: 22px; }
.purchase-box label { display: block; color: #fff; font-weight: 800; margin-bottom: 8px; }
.purchase-box input { width: 100%; height: 48px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); color: #fff; padding: 0 14px; }
.purchase-note { color: #cdbdde; font-size: 0.86rem; margin-top: 12px; }

.page-hero { padding: 66px 0 52px; border-bottom: 1px solid rgba(246,200,76,0.17); background: radial-gradient(circle at 70% 20%, rgba(230,43,131,0.2), transparent 30%); }
.page-hero h1 { font-size: clamp(2.7rem, 5.1vw, 4.8rem); max-width: 920px; }
.page-hero .container { display: grid; gap: 18px; }
.breadcrumb { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; }

.bio-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
.bio-card { position: sticky; top: 116px; }
.bio-card img { border-radius: 32px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.timeline { display: grid; gap: 16px; margin-top: 28px; }
.timeline-item { display: grid; grid-template-columns: 22px 1fr; gap: 14px; }
.dot { width: 14px; height: 14px; margin-top: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(246,200,76,0.13); }
.timeline-content { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.gallery-item { border: 1px solid rgba(246,200,76,0.26); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,0.06); cursor: pointer; aspect-ratio: 3 / 4; min-height: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.86); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.active { display: flex; }
.lightbox img { max-height: 88vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox button { position: absolute; top: 24px; right: 24px; }

.video-shell { aspect-ratio: 16 / 9; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(230,43,131,0.2), rgba(246,200,76,0.1)); box-shadow: var(--shadow); display: grid; place-items: center; text-align: center; padding: 36px; }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { max-width: 620px; }
.video-placeholder .play { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: var(--gold); color: #120018; font-size: 1.8rem; }

.professional-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.professional-section { scroll-margin-top: 120px; margin-bottom: 32px; }
.brand-row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; align-items: center; }
.brand-row img { width: 110px; border-radius: 20px; background: #fff; }

.blog-list { display: grid; gap: 18px; }
.blog-post { padding: 24px; border-radius: 22px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); }
.blog-post span { color: var(--gold); font-size: 0.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form label { color: #fff; font-weight: 800; display: grid; gap: 8px; }
.form input, .form select, .form textarea {
  width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); color: #fff; padding: 14px 16px; font: inherit;
}
.form textarea { min-height: 150px; resize: vertical; }
.form option { color: #16001f; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.socials a { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: var(--gold); font-weight: 900; }

.cta-band { padding: 38px 44px; border-radius: 32px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(230,43,131,0.24), rgba(246,200,76,0.12)); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.cta-band h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); max-width: 820px; }
.cta-band p { max-width: 760px; }
.site-footer { border-top: 1px solid rgba(246,200,76,0.18); padding: 54px 0 26px; background: rgba(0,0,0,0.26); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.75fr 0.85fr 1fr; gap: 36px; align-items: start; }
.site-footer h3 { font-size: 1.1rem; margin-bottom: 10px; }
.footer-links { display: grid; gap: 10px; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 34px; padding-top: 22px; color: #a999b8; font-size: 0.9rem; text-align: center; }

.notice { border-left: 4px solid var(--gold); background: rgba(246,200,76,0.08); padding: 16px 18px; border-radius: 14px; color: #f6e8ff; }

@media (max-width: 1180px) {
  .nav-menu { gap: 18px; font-size: 0.8rem; }
  .brand { min-width: 190px; }
  .hero-note { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 1040px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-menu {
    position: fixed; top: 92px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(10,0,26,0.98); box-shadow: var(--shadow);
  }
  .nav-menu.active { display: flex; }
  .nav-menu > a, .drop-trigger { padding: 14px; text-align: left; }
  .dropdown:hover .drop-menu, .dropdown:focus-within .drop-menu { transform: none; }
  .drop-menu { position: static; transform: none; opacity: 1; pointer-events: auto; background: rgba(255,255,255,0.04); box-shadow: none; margin: 4px 0 12px; }
  .hero-grid, .split, .bio-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 520px; }
  .grid.three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .navbar { height: 82px; }
  .brand .brand-main { font-size: 1.7rem; }
  .brand .brand-domain { font-size: 1.05rem; }
  .brand small { font-size: 0.55rem; }
  .nav-menu { top: 82px; left: 14px; right: 14px; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 48px 0 28px; }
  .hero-grid { gap: 30px; }
  .hero-media { min-height: 480px; }
  .portrait-frame { inset: 0 24px 110px 0; border-radius: 30px; }
  .book-float { width: 190px; right: 0; bottom: 38px; }
  .kmcc-float { width: 130px; left: 0; bottom: 0; }
  .hero-note, .grid.three, .grid.two, .footer-grid, .form .row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 3 / 4; min-height: 0; }
  .cta-band { padding: 28px; grid-template-columns: 1fr; align-items: flex-start; }
  .btn { width: 100%; max-width: 360px; }
  .brand-row { grid-template-columns: 1fr; }
}


/* Final layout polish */
.navbar, .hero-grid, .split, .footer-grid, .contact-grid, .bio-layout { min-width: 0; }
.card, .image-panel, .cta-band, .gallery-item, .video-shell { min-width: 0; }
.nav-menu .btn.small { padding-left: 18px; padding-right: 18px; }
.card-link { white-space: nowrap; }
.site-footer p { max-width: 360px; }
@media (max-width: 1040px) {
  .book-section .image-panel { max-width: 560px; justify-self: start; }
  .cta-band .btn { justify-self: start; }
}
@media (max-width: 520px) {
  .page-hero { padding: 48px 0 40px; }
  .section-title { margin-bottom: 28px; }
  .hero-note div, .card { padding: 22px; }
  .image-panel { padding: 10px; border-radius: 24px; }
  .image-panel img { border-radius: 18px; }
  .footer-grid { gap: 26px; }
}

/* WordPress exact-theme refinements */
main h2,
.section h2,
.page-hero h1 + .lead { margin-bottom: 18px; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }


/* Client update: simplified business structure */
.feature-banner {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(246,200,76,0.18), rgba(230,43,131,0.18));
  box-shadow: var(--shadow);
  color: inherit;
  overflow: hidden;
}
.feature-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(246,200,76,0.55);
}
.feature-banner-media {
  border-radius: 24px;
  padding: 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(246,200,76,0.35);
}
.feature-banner-media img {
  width: 100%;
  border-radius: 18px;
}
.feature-banner-copy p {
  max-width: 720px;
  margin-bottom: 0;
}
.feature-banner .btn {
  pointer-events: none;
}
.division-grid {
  align-items: stretch;
  margin: 32px 0;
}
.division-card {
  display: flex;
  flex-direction: column;
}
.division-card h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}
.division-card .card-link {
  margin-top: auto;
  padding-top: 18px;
  white-space: normal;
  line-height: 1.45;
}
.vision-card {
  margin-top: 32px;
}
.imdb-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}
.imdb-feature h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}
.publishing-layout {
  align-items: start;
}
.publishing-card {
  padding: 30px;
}
.publishing-book-image {
  margin-bottom: 24px;
  padding: 12px;
}
.publishing-book-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f4fbfb;
}
.future-releases-card h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}
.labeled-socials a {
  width: auto;
  min-width: 46px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.82rem;
}
.footer-links a[data-social="amazon"] {
  color: var(--gold);
  font-weight: 900;
}
@media (max-width: 1040px) {
  .feature-banner,
  .imdb-feature {
    grid-template-columns: 1fr;
  }
  .feature-banner-media {
    max-width: 180px;
  }
}
@media (max-width: 680px) {
  .feature-banner {
    padding: 22px;
    border-radius: 24px;
  }
  .feature-banner-media {
    max-width: 150px;
  }
  .imdb-feature .btn,
  .feature-banner .btn {
    width: 100%;
    max-width: 360px;
  }
}


/* Client update: Speaking Engagements */
.speaking-feature {
  background: linear-gradient(135deg, rgba(230,43,131,0.24), rgba(246,200,76,0.16));
}
.speaking-icon {
  min-height: 110px;
  display: grid;
  place-items: center;
  font-size: 3.25rem;
  color: var(--midnight);
}
.feature-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.feature-actions .btn {
  white-space: nowrap;
}
.speaking-layout {
  align-items: start;
}
.speaking-page-main .lead {
  max-width: 760px;
}
.speaking-request-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}
.speaking-topic-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.speaking-topic {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
}
.speaking-topic b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}
.speaking-topic p {
  margin-bottom: 0;
}
#speaking-inquiry {
  scroll-margin-top: 120px;
}
@media (max-width: 1040px) {
  .feature-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  .feature-actions {
    flex-direction: column;
    width: 100%;
  }
  .feature-actions .btn {
    width: 100%;
    white-space: normal;
  }
  .speaking-icon {
    max-width: 150px;
  }
}


/* Client update: focused page structure and cleaner UX */
.focused-hero {
  padding-bottom: 64px;
}
.simple-split {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}
.home-intro-section {
  border-top: 1px solid rgba(246,200,76,0.12);
  border-bottom: 1px solid rgba(246,200,76,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(230,43,131,0.08));
}
.compact-title {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}
.compact-title .eyebrow {
  justify-content: center;
}
.clean-path-grid {
  align-items: stretch;
}
.path-card {
  min-height: 260px;
}
.path-card p {
  min-height: 84px;
}
.inner-title {
  margin-top: 42px;
}
.wide-card {
  max-width: 100%;
}
.portfolio-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}
.intro-card .hero-actions,
.compact-actions {
  margin-top: 22px;
}
.portfolio-video {
  margin: 30px 0 32px;
}
.portfolio-detail-grid {
  margin-top: 30px;
}
.headshot-section {
  background: rgba(255,255,255,0.035);
  border-top: 1px solid rgba(246,200,76,0.12);
}
.detail-split {
  align-items: start;
}
.detail-copy-card p:last-child {
  margin-bottom: 0;
}
.detail-copy-card .fact-list {
  margin-top: 0;
}
.star-overview-section .division-grid,
.detail-page-section + .section .grid {
  align-items: stretch;
}
.speaking-page-section .lead {
  max-width: 780px;
}
.nav-menu a {
  white-space: nowrap;
}
.nav-menu .drop-menu a {
  white-space: normal;
}
@media (max-width: 1120px) {
  .nav-menu {
    gap: 10px;
  }
  .nav-menu a,
  .drop-trigger {
    font-size: 0.84rem;
  }
}
@media (max-width: 1040px) {
  .portfolio-top-grid,
  .simple-split {
    grid-template-columns: 1fr;
  }
  .compact-title {
    text-align: left;
    margin-left: 0;
  }
  .compact-title .eyebrow {
    justify-content: flex-start;
  }
  .path-card,
  .path-card p {
    min-height: unset;
  }
}
@media (max-width: 680px) {
  .focused-hero {
    padding-bottom: 44px;
  }
  .portfolio-top-grid {
    gap: 18px;
  }
  .compact-actions .btn,
  .intro-card .hero-actions .btn {
    width: 100%;
  }
  .path-card {
    padding: 24px;
  }
}

/* Client update June 05: clean professional landing homepage */
.home-landing {
  min-height: calc(100vh - 92px);
  padding: 54px 0 64px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(246, 200, 76, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(230, 43, 131, 0.16), transparent 32%);
}
.home-landing-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.home-headshot-panel {
  width: min(100%, 480px);
  justify-self: center;
  border-radius: 34px;
  padding: 12px;
  border: 1px solid rgba(246, 200, 76, 0.42);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}
.home-headshot-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}
.home-landing-copy h1 {
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  letter-spacing: -0.06em;
  max-width: 760px;
}
.home-role-line {
  margin: 18px 0 18px;
  color: var(--gold);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-welcome-line {
  max-width: 720px;
  margin-bottom: 28px;
}
.home-button-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
}
.home-nav-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(246, 200, 76, 0.38);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  transition: 0.2s ease;
}
.home-nav-button:hover,
.home-nav-button.highlight {
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #120018;
  border-color: rgba(246, 200, 76, 0.7);
  transform: translateY(-2px);
}
.home-nav-button.highlight:hover {
  box-shadow: 0 18px 42px rgba(246, 200, 76, 0.28);
}
.nav-contact {
  color: var(--gold) !important;
}
@media (max-width: 1040px) {
  .home-landing-inner {
    grid-template-columns: 1fr;
  }
  .home-landing-copy {
    text-align: center;
  }
  .home-landing-copy .eyebrow {
    justify-content: center;
  }
  .home-welcome-line,
  .home-button-nav {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 680px) {
  .home-landing {
    min-height: auto;
    padding: 38px 0 50px;
  }
  .home-headshot-panel {
    max-width: 360px;
    border-radius: 26px;
    padding: 9px;
  }
  .home-headshot-panel img {
    border-radius: 19px;
  }
  .home-button-nav {
    grid-template-columns: 1fr;
  }
  .home-nav-button {
    min-height: 50px;
    border-radius: 18px;
  }
}
.contact-email-box {
  margin-top: 22px;
}
.contact-email-box a {
  color: var(--gold);
  font-weight: 900;
}

/* Client update June 05 v7: simplified homepage with no homepage tabs and book front/center */
.home-clean-landing {
  min-height: auto;
  padding: 64px 0 58px;
}
.home-clean-landing .home-landing-copy {
  max-width: 760px;
}
.home-book-front {
  padding-top: 24px;
}
.home-book-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(246, 200, 76, 0.42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 200, 76, 0.16), transparent 34%),
    radial-gradient(circle at 94% 15%, rgba(230, 43, 131, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}
.home-book-image {
  display: block;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(246, 200, 76, 0.35);
  transition: 0.25s ease;
}
.home-book-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}
.home-book-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
}
.home-book-copy h2 {
  margin-bottom: 10px;
}
.home-book-copy p {
  max-width: 720px;
}
.book-subtitle {
  color: #fff;
  font-weight: 900;
  font-size: 1.16rem;
  margin-bottom: 16px;
}
.home-book-copy .book-price {
  color: #fff;
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  font-weight: 800;
  margin: 16px 0 20px;
}
.home-feature-banners {
  padding-top: 28px;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-feature-banner {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(24px, 3.5vw, 36px);
  border-radius: 28px;
  border: 1px solid rgba(246, 200, 76, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at top right, rgba(230, 43, 131, 0.16), transparent 44%);
  transition: 0.25s ease;
}
.home-feature-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 200, 76, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at top right, rgba(246, 200, 76, 0.17), transparent 44%);
}
.home-feature-banner .feature-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.home-feature-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  margin-bottom: 14px;
}
.home-feature-banner p {
  flex: 1;
  color: #eadff4;
}
.home-feature-banner .card-link {
  margin-top: 18px;
}
.speaking-v7-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.speaking-main-copy {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(246, 200, 76, 0.32);
  background: rgba(255, 255, 255, 0.065);
}
.speaking-intro-copy p {
  color: #f4eafd;
}
.speaking-list-stack {
  display: grid;
  gap: 20px;
}
.speaking-list-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.kym-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.kym-check-list li {
  position: relative;
  padding-left: 26px;
  color: #eadff4;
  font-weight: 700;
}
.kym-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.25;
}
.final-note {
  margin-top: 12px;
  color: #fff;
}
@media (max-width: 980px) {
  .home-book-showcase,
  .speaking-v7-grid {
    grid-template-columns: 1fr;
  }
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .home-clean-landing {
    padding-top: 38px;
    padding-bottom: 36px;
  }
  .home-book-front {
    padding-top: 12px;
  }
  .home-book-showcase,
  .speaking-main-copy {
    border-radius: 24px;
  }
  .home-book-image {
    border-radius: 22px;
  }
  .home-book-image img {
    border-radius: 14px;
  }
  .home-feature-banner {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .bottom-feature-grid { grid-template-columns: 1fr; }
  .bottom-feature-link { min-height: 64px; }
}


/* V11 client updates */
.star-donate-actions {
  margin-top: 24px;
}
.friends-section {
  border-top: 1px solid rgba(246, 200, 76, 0.14);
  background: radial-gradient(circle at 20% 0%, rgba(230, 43, 131, 0.08), transparent 34%);
}
.friends-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.friends-gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
}
@media (max-width: 900px) {
  .friends-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .friends-gallery-grid { grid-template-columns: 1fr; }
}

/* V11.2 Karen & Friends visual cleanup */
.friends-gallery-item img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.28);
}

/* V12 film and video updates */
.film-showcase-card,
.film-showcase-section {
  margin-top: 34px;
}
.film-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.film-poster-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.065);
  padding: 14px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}
.film-poster-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
}
.film-poster-button {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.film-poster-button img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  max-height: 560px;
}
.film-gif-card {
  display: grid;
  align-content: center;
}
.film-gif-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.film-poster-card figcaption {
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}
.inline-title {
  margin-bottom: 24px;
}
.centered-actions {
  justify-content: center;
  margin-top: 24px;
}
.labeled-socials a[data-social="youtube"] {
  background: rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .film-showcase-grid {
    grid-template-columns: 1fr;
  }
  .film-poster-button img {
    max-height: none;
  }
}
.film-poster-button.gallery-item {
  aspect-ratio: auto;
  display: block;
}
.film-poster-button img {
  height: auto;
}

/* V13 Blog management and frontend blog UI */
.blog-intro-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(230,43,131,0.07));
  border-bottom: 1px solid rgba(246,200,76,0.12);
}
.blog-intro-grid {
  align-items: start;
}
.admin-blog-shortcut {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(246,200,76,0.25);
  background: rgba(246,200,76,0.08);
  color: #f8edff;
  font-size: 0.92rem;
}
.admin-blog-shortcut a {
  color: var(--gold);
  font-weight: 900;
}
.blog-help-card h3 {
  color: var(--gold);
  margin-bottom: 12px;
}
.kym-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.kym-blog-card {
  overflow: hidden;
  border: 1px solid rgba(246,200,76,0.22);
  border-radius: 26px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 22px 58px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.kym-blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,0.22);
  overflow: hidden;
}
.kym-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.kym-blog-card:hover .kym-blog-card-image img {
  transform: scale(1.04);
}
.kym-blog-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(230,43,131,0.22), transparent 38%),
    linear-gradient(135deg, rgba(93,32,166,0.48), rgba(6,0,15,0.8));
  color: var(--gold);
  font-family: Playfair Display, Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
}
.kym-blog-card-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kym-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.kym-blog-meta span + span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(246,200,76,0.58);
}
.kym-blog-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}
.kym-blog-card h3 a:hover {
  color: var(--gold);
}
.kym-blog-card p {
  flex: 1;
}
.blog-empty-state {
  max-width: 820px;
}
.kym-pagination {
  margin-top: 34px;
}
.kym-pagination ul,
.kym-pagination .nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.kym-pagination a,
.kym-pagination span,
.page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246,200,76,0.25);
  background: rgba(255,255,255,0.065);
  color: #fff;
  font-weight: 800;
}
.kym-pagination .current {
  background: var(--gold);
  color: #14001e;
}
.blog-single-hero h1 {
  max-width: 980px;
}
.single-featured-image {
  max-width: 980px;
}
.single-featured-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.blog-content-wrap {
  max-width: 860px;
}
.blog-entry-content {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 30px;
  border: 1px solid rgba(246,200,76,0.2);
  background: rgba(255,255,255,0.065);
}
.blog-entry-content > *:first-child {
  margin-top: 0;
}
.blog-entry-content p,
.blog-entry-content li {
  color: #efe3f7;
  font-size: 1.05rem;
}
.blog-entry-content a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.blog-entry-content h2,
.blog-entry-content h3,
.blog-entry-content h4 {
  margin: 1.4em 0 0.55em;
}
.blog-entry-content ul,
.blog-entry-content ol {
  padding-left: 1.2rem;
}
.single-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
@media (max-width: 1040px) {
  .kym-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .kym-blog-grid {
    grid-template-columns: 1fr;
  }
  .kym-blog-card-copy,
  .blog-entry-content {
    padding: 22px;
  }
  .single-blog-actions .btn {
    width: 100%;
  }
}

/* V13.1 live blog cleanup */
.blog-intro-live {
  max-width: 860px;
  text-align: center;
}
.blog-intro-live .hero-actions {
  justify-content: center;
}


/* V14 KMCC Travel page */
.kmcc-page-section {
  position: relative;
}
.kmcc-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.kmcc-character-card {
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(246, 200, 76, 0.35);
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.kmcc-character-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.kmcc-copy-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(246, 200, 76, 0.28);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(230,43,131,0.08));
  box-shadow: var(--shadow);
}
.kmcc-quote {
  margin: 0 0 26px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  background: rgba(246, 200, 76, 0.09);
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.72;
  font-weight: 700;
}
.kmcc-copy-card h2 {
  margin-bottom: 18px;
}
.kmcc-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.kmcc-schedule-card {
  margin-top: 30px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(246, 200, 76, 0.32);
  background: rgba(0,0,0,0.18);
}
.kmcc-schedule-card .hero-actions {
  margin-top: 20px;
}
@media (max-width: 900px) {
  .kmcc-intro-grid,
  .kmcc-detail-grid {
    grid-template-columns: 1fr;
  }
  .kmcc-character-card {
    max-width: 560px;
  }
}

.footer-contact-line { margin: 8px 0 0; font-size: 0.92rem; }
.footer-contact-line a, .office-contact-line a { color: var(--gold); font-weight: 800; }
.office-contact-line { margin: 12px 0 18px; }

/* WooCommerce polished shop, cart, and checkout styling */
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.kym-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #16001e;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
}
.commerce-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(246, 200, 76, 0.18), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(230, 43, 131, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(37, 0, 68, 0.92), rgba(6, 0, 15, 0.94));
}
.commerce-shell {
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(22px, 3vw, 42px);
}
.commerce-shell .woocommerce,
.woocommerce-page .woocommerce {
  color: #fff;
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  color: var(--muted);
  margin: 0 0 22px;
  font-weight: 700;
}
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  margin: 0 0 24px;
}
.woocommerce .woocommerce-ordering select,
.woocommerce-page .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  border: 1px solid rgba(246, 200, 76, 0.28);
  border-radius: 14px;
  background: rgba(10, 0, 28, 0.72);
  color: #fff;
  padding: 12px 14px;
  box-shadow: none;
}
.woocommerce form .form-row textarea { min-height: 130px; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff; line-height: 24px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 11px; right: 8px; }
.select2-dropdown { background: #100027; color: #fff; border-color: rgba(246, 200, 76, 0.28); }
.select2-results__option { color: #fff; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--purple); color: #fff; }
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 10px 0 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  padding: 0 0 22px !important;
  transition: 0.24s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 200, 76, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
  margin: 0 0 20px;
  background: rgba(255,255,255,0.04);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #fff;
  font-family: Playfair Display, serif;
  font-size: 1.45rem;
  line-height: 1.15;
  padding: 0 20px;
  margin: 0 0 10px;
}
.woocommerce ul.products li.product .price {
  color: var(--gold) !important;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 0 20px;
  margin-bottom: 16px;
}
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(246, 200, 76, 0.65) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold), #ff9f1c) !important;
  color: #16001e !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 14px 34px rgba(246, 200, 76, 0.18);
}
.woocommerce ul.products li.product .button { margin-left: 20px; margin-right: 20px; }
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(246, 200, 76, 0.3);
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--gold); color: #14001d; }
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}
.woocommerce div.product div.images img {
  border-radius: 24px;
  border: 1px solid rgba(246, 200, 76, 0.24);
  background: rgba(255,255,255,0.04);
}
.woocommerce div.product .product_title {
  font-family: Playfair Display, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gold) !important;
  font-size: 1.7rem;
  font-weight: 900;
}
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.woocommerce .quantity .qty {
  width: 84px;
  min-height: 46px;
  border: 1px solid rgba(246, 200, 76, 0.28);
  border-radius: 999px;
  background: rgba(10,0,28,0.72);
  color: #fff;
  padding: 0 12px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 42px 0 0;
  border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(246, 200, 76, 0.24);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  margin: 0 8px 8px 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: #fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--gold); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #14001d; }
.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid rgba(246, 200, 76, 0.2);
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  padding: 24px;
  color: var(--muted);
}
.woocommerce div.product .woocommerce-tabs .panel h2,
.related.products h2,
.upsells.products h2 {
  color: #fff;
  font-family: Playfair Display, serif;
}
.woocommerce table.shop_table {
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  color: #fff;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(255,255,255,0.12);
  color: #fff;
  padding: 18px;
}
.woocommerce table.shop_table th { color: #ffe7a0; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.woocommerce table.shop_table .product-name a { color: #fff; font-weight: 900; }
.woocommerce table.shop_table .product-thumbnail img { width: 74px; border-radius: 12px; }
.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: min(520px, 100%);
  margin-left: auto;
  margin-top: 28px;
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.065);
}
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
  color: #fff;
  font-family: Playfair Display, serif;
  margin-bottom: 20px;
}
.woocommerce .coupon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce .coupon .input-text {
  min-height: 46px;
  border: 1px solid rgba(246, 200, 76, 0.28);
  border-radius: 999px;
  background: rgba(10,0,28,0.72);
  color: #fff;
  padding: 0 16px;
  min-width: 220px;
}
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: start;
}
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  float: none;
  width: auto;
}
.woocommerce-checkout #customer_details {
  border: 1px solid rgba(246, 200, 76, 0.22);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
}
.woocommerce-checkout #order_review {
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.065);
  position: sticky;
  top: 110px;
}
.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: -8px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
}
.woocommerce form .form-row { width: 100%; padding: 0; margin: 0 0 16px; }
.woocommerce form .form-row-wide { grid-column: 1 / -1; }
.woocommerce form .form-row label { color: #fff; font-weight: 800; margin-bottom: 7px; }
.woocommerce form .form-row .required { color: var(--gold); }
.woocommerce-privacy-policy-text p { font-size: 0.9rem; }
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  border-top: 0;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255,255,255,0.075);
  color: #fff;
  box-shadow: none;
}
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before { color: var(--gold); }
.woocommerce .woocommerce-error::before { color: #ff70b6; }
.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
  margin-bottom: 20px;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--gold); }
.woocommerce #payment {
  background: rgba(10,0,28,0.78);
  border: 1px solid rgba(246, 200, 76, 0.2);
  border-radius: 18px;
}
.woocommerce #payment ul.payment_methods {
  border-bottom-color: rgba(255,255,255,0.14);
}
.woocommerce #payment div.payment_box {
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  border-radius: 14px;
}
.woocommerce #payment div.payment_box::before { border-bottom-color: rgba(255,255,255,0.08); }
.woocommerce .return-to-shop { margin-top: 24px; }
.woocommerce .products .star-rating,
.woocommerce .star-rating { color: var(--gold); }
.woocommerce span.onsale {
  min-height: 44px;
  min-width: 44px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  top: 14px;
  left: 14px;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; border: 1px solid rgba(246, 200, 76, 0.22); border-radius: 14px; padding: 12px 14px; color: #fff; background: rgba(255,255,255,0.055); font-weight: 800; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover { background: rgba(246,200,76,0.12); border-color: var(--gold); }
@media (max-width: 1100px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .woocommerce-checkout #order_review_heading { grid-column: auto; grid-row: auto; margin-bottom: 0; }
  .woocommerce-checkout #order_review { position: static; }
}
@media (max-width: 760px) {
  .commerce-shell { padding: 18px; border-radius: 20px; }
  .woocommerce ul.products { grid-template-columns: 1fr; gap: 18px; }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 24px; }
  .woocommerce ul.products li.product a img { height: 290px; }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before { color: #ffe7a0; }
  .woocommerce .coupon { display: grid; }
  .woocommerce .coupon .input-text { width: 100% !important; min-width: 0; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}

/* WooCommerce Cart and Checkout Blocks support */
.wc-block-cart,
.wc-block-checkout,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  color: #fff;
}
.wc-block-components-sidebar-layout {
  gap: 30px;
}
.wc-block-cart__main,
.wc-block-checkout__main,
.wc-block-components-main {
  border: 1px solid rgba(246, 200, 76, 0.22);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  padding: clamp(18px, 2.4vw, 28px);
}
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar,
.wc-block-components-sidebar {
  border: 1px solid rgba(246, 200, 76, 0.24);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  padding: 22px;
}
.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-cart-items__header,
.wc-block-components-order-summary__title-text,
.wc-block-components-totals-wrapper h2,
.wc-block-components-totals-wrapper h3 {
  color: #fff !important;
  font-family: Playfair Display, serif;
}
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=password],
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-textarea {
  border: 1px solid rgba(246, 200, 76, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(10,0,28,0.72) !important;
  color: #fff !important;
  min-height: 48px;
}
.wc-block-components-text-input label,
.wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-payment-method-label,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-product-name,
.wc-block-cart-item__total-price-and-sale-badge-wrapper,
.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-order-summary-item__quantity,
.wc-block-components-order-summary-item__description,
.wc-block-components-product-metadata,
.wc-block-components-product-metadata__description,
.wc-block-components-shipping-rates-control__package-title,
.wc-block-components-shipping-rates-control__package-items,
.wc-block-components-address-card,
.wc-block-components-address-card address,
.wc-block-components-checkout-step__description,
.wc-block-components-validation-error,
.wc-block-components-radio-control__description {
  color: var(--muted) !important;
}
.wc-block-components-product-name,
.wc-block-cart-item__total-price-and-sale-badge-wrapper,
.wc-block-components-totals-item__value {
  color: #fff !important;
  font-weight: 900;
}
.wc-block-cart-items .wc-block-cart-items__row,
.wc-block-components-order-summary-item,
.wc-block-components-totals-wrapper,
.wc-block-checkout__payment-method,
.wc-block-components-checkout-step {
  border-color: rgba(255,255,255,0.14) !important;
}
.wc-block-components-product-image img,
.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img {
  border-radius: 14px;
  border: 1px solid rgba(246, 200, 76, 0.18);
}
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold), #ff9f1c) !important;
  color: #16001e !important;
  border: 1px solid rgba(246, 200, 76, 0.65) !important;
  min-height: 48px;
  font-weight: 900 !important;
  box-shadow: 0 14px 34px rgba(246, 200, 76, 0.18);
}
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(246, 200, 76, 0.3);
}
.wc-block-components-quantity-selector {
  border: 1px solid rgba(246, 200, 76, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(10,0,28,0.72) !important;
}
.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button {
  color: #fff !important;
}
.wc-block-components-notice-banner {
  border: 1px solid rgba(246, 200, 76, 0.24) !important;
  border-left-width: 4px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.075) !important;
  color: #fff !important;
}
.wc-block-components-notice-banner__content,
.wc-block-components-notice-banner__content a { color: #fff !important; }
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.wc-block-grid__product {
  border: 1px solid rgba(246, 200, 76, 0.24) !important;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
  padding: 0 0 22px !important;
  overflow: hidden;
}
.wc-block-grid__product-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center top;
}
.wc-block-grid__product-title { color: #fff; font-family: Playfair Display, serif; font-size: 1.35rem; }
.wc-block-grid__product-price { color: var(--gold); font-weight: 900; }
.wc-block-grid__product-add-to-cart a {
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold), #ff9f1c) !important;
  color: #16001e !important;
  font-weight: 900 !important;
}
@media (max-width: 1100px) {
  .wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .wc-block-components-sidebar-layout { display: block; }
  .wc-block-cart__main,
  .wc-block-checkout__main,
  .wc-block-components-main,
  .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar,
  .wc-block-components-sidebar { padding: 18px; margin-bottom: 18px; border-radius: 20px; }
  .wc-block-grid__products { grid-template-columns: 1fr; }
  .wc-block-grid__product-image img { height: 280px; }
}
