:root {
  --bg: #ffffff;
  --text: #050505;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --text-light: #ffffff;
  --muted: rgba(0,0,0,.6);
  --muted-light: rgba(255,255,255,.62);
  --line: rgba(0,0,0,.12);
  --line-light: rgba(255,255,255,.12);
  --accent: #d62828;
  --radius: 22px;
  --container: 1280px;
	--light-grey: rgba(0,0,0,.075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 860px);
}

.site-logo,
.footer-logo,
.hero-logo {
  width: 78px;
  height: auto;
}

.custom-logo-link img {
  width: 78px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.menu a {
  text-decoration: none;
  opacity: .56;
}

.menu a[aria-current="page"],
.menu a:hover {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  transition: .25s ease;
}

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

.button-solid {
  background: var(--text-light);
  border-color: var(--text-light);
  color: var(--text);
}

.button-outline {
  background: transparent;
  border-color: currentColor;
}

.section-light .button-solid,
.page-content .button-solid {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.section {
  padding: 120px 0;
}

.section-dark {
  position: relative;
  background: var(--surface);
  color: var(--text-light);
}

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-light-grey {
  background: var(--light-grey);
  color: var(--text);
}

.site-main {
  overflow: clip;
}

/* =========================
   Side Navigation
   ========================= */

.side-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 0;
	gap: 1px;
  /*border: 1px solid rgba(255,255,255,.08);*/
  backdrop-filter: blur(12px);
}

.side-nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
  color: rgba(255,255,255,.74);
	padding: 8px 12px;
	background: rgba(0,0,0,.6);
}
.side-nav a:hover {
  background: rgba(0,0,0,.85);
}

.side-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  flex: 0 0 8px;
  transition: transform .2s ease, background .2s ease;
}

.side-nav a:hover .side-nav-dot,
.side-nav a:focus-visible .side-nav-dot {
  background: #fff;
  transform: scale(1.45);
}

.side-nav a:hover .side-nav-label,
.side-nav a:focus-visible .side-nav-label {
  color: #fff;
}

/* =========================
   Hero
   ========================= */

.hero {
  --hero-overlay-opacity: 0.64;
  --hero-overlay-strong: 0.24;

  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg {
  z-index: 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, var(--hero-overlay-opacity)),
      rgba(0, 0, 0, var(--hero-overlay-strong))
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,.52),
      rgba(0,0,0,.16) 24%,
      rgba(0,0,0,.16) 76%,
      rgba(0,0,0,.52)
    ),
    url('../images/hero-bg-v3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(.55) contrast(1.05);
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(.55) contrast(1.05);
  transform: scale(1.02);
}

.hero-bg.hero-bg-overlay {
  z-index: 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, var(--hero-overlay-opacity)),
      rgba(0, 0, 0, var(--hero-overlay-strong))
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,.52),
      rgba(0,0,0,.16) 24%,
      rgba(0,0,0,.16) 76%,
      rgba(0,0,0,.52)
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  position: static;
  margin: 0 0 5rem;
  display: flex;
  justify-content: center;
}

.hero-logo {
  filter: invert(1);
  width: 90px;
  height: auto;
  display: block;
}

.hero-title,
.display-title,
.page-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .87;
}

.hero-title {
  font-size: clamp(4.5rem, 15vw, 12rem);
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 38px;
}

.hero-divider span,
.section-mark span {
  display: block;
  width: 70px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.hero-divider p,
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  opacity: .72;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 3.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatDown 2s infinite;
  z-index: 1;
}

.hero-scroll span {
  width: 1px;
  height: 4rem;
  background: #fff;
  opacity: .9;
}

.hero-scroll i {
  width: 8px;
  height: 8px;
  display: block;
  background: #fff;
  transform: rotate(45deg);
}

.hero-logo-wrap,
.hero-title,
.hero-divider,
.hero-actions {
  position: relative;
  z-index: 1;
}

/* =========================
   Shared Section Typography
   ========================= */

.section-heading {
  margin-bottom: 64px;
}

.section-mark {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.section-mark.invert {
  color: var(--text-light);
}

.display-title {
  font-size: clamp(3rem, 9vw, 8rem);
  max-width: 920px;
}

.display-title.dark {
  color: var(--text);
}

.section-copy,
.about-copy p,
.entry-content,
.footer-copy,
.contact-value,
.schedule-meta {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.section-copy {
  max-width: 720px;
  color: var(--muted-light);
}

.dark-copy,
.about-copy p {
  color: var(--muted);
}

/* =========================
   About / Contact Layout
   ========================= */

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-highlights strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.about-highlights span {
  color: var(--muted);
  font-size: .92rem;
}

/* =========================
   Schedule
   ========================= */

/*.schedule-listing {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.schedule-row-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
}

.schedule-row-card:last-child {
  border-bottom: 0;
}

.schedule-date {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--muted-light);
}

.schedule-title {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.schedule-meta {
  margin: 0;
  color: var(--muted-light);
}

.schedule-side {
  display: flex;
  align-items: flex-start;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 700;
  border: 1px solid currentColor;
}

.badge-scheduled { color: #80ed99; }
.badge-closed { color: #ff6b6b; }
.badge-cancelled { color: #ffb347; }
.badge-completed { color: #74c0fc; } */

.schedule-editorial {
  display: grid;
  gap: 56px;
  margin-top: 42px;
}

.schedule-day-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}

.schedule-day-meta {
  position: sticky;
  top: 120px;
}

.schedule-day-name {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.schedule-day-date {
  margin: 0;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.schedule-day-items {
  /*border-top: 1px solid var(--line-light);*/
}

.schedule-entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line-light);
}

.schedule-entry-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  color: rgba(255,255,255,.72);
  letter-spacing: .01em;
}

.schedule-entry-main {
  min-width: 0;
}

.schedule-entry-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.schedule-entry-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-weight: 800;
}

.schedule-entry-sub {
  margin: 0;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
}

.schedule-entry-sep {
  display: inline-block;
  margin: 0 .45rem;
}

.schedule-entry-actions {
  margin-top: 16px;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  font-weight: 700;
  border: 1px solid currentColor;
}

.badge-scheduled { color: #80ed99; }
.badge-closed { color: #ff6b6b; }
.badge-cancelled { color: #ffb347; }
.badge-completed { color: #74c0fc; }

.schedule-day-group.is-past {
  opacity: 0.35;
}

.schedule-day-group.is-past .schedule-entry-actions {
  display: none;
}

@media (max-width: 980px) {
  .schedule-day-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .schedule-day-meta {
    position: static;
  }
}

@media (max-width: 640px) {
  .schedule-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .schedule-entry-time {
    font-size: 1.9rem;
  }

  .schedule-entry-head {
    gap: 10px;
  }

  .schedule-entry-title {
    font-size: 1.6rem;
  }

  .schedule-entry-sub {
    font-size: .78rem;
    line-height: 1.5;
  }
}

/* =========================
   Contact
   ========================= */

.contact-card {
  /*border: 1px solid var(--line);*/
  padding: 0 28px 28px;
  display: grid;
  gap: 28px;
}

.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--muted);
}

.contact-value {
  margin: 0;
}

.contact-value.small {
  font-size: 1rem;
}

.contact-value a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.35);
}

/* =========================
   Page / Blog
   ========================= */

.page-content {
  min-height: 60vh;
}

.page-header-block {
  margin-bottom: 32px;
}

.page-title {
  font-size: clamp(3rem, 8vw, 6rem);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.post-list {
  display: grid;
  gap: 20px;
}

.post-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.post-card h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  padding: 44px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo {
  width: 70px;
}

.footer-copy {
  max-width: 420px;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted);
}

.footer-meta a {
  color: inherit;
}

.footer-bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

/* =========================
   Floating WhatsApp
   ========================= */

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.hide-mobile {
  display: inline-flex;
}

/* =========================
   Animations
   ========================= */

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes slidePattern {
  from { transform: translateY(0); }
  to { transform: translateY(4px); }
}

/* =========================
   Pricing
   ========================= */

.pricing-section {
  border-top: 1px solid var(--line);
}

.pricing-groups {
  display: grid;
  gap: 28px;
}

.pricing-group {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.pricing-group-head {
  margin-bottom: 18px;
}

.pricing-kicker,
.pricing-plan-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1rem;
	font-weight: 600;
  color: var(--text);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card,
.pricing-shortcode-wrap {
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.pricing-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.pricing-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.pricing-desc,
.pricing-meta {
  margin: 0;
  color: var(--muted);
}

.pricing-card-actions,
.pricing-group-actions,
.schedule-cta-bar {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.schedule-row-cta {
  align-items: start;
}

.schedule-side-stack {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.button-small-light {
  min-height: 40px;
  padding-inline: 14px;
  font-size: .68rem;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1100px) {
  .side-nav {
    left: 14px;
  }

  .side-nav-label {
    display: none;
  }
}

@media (max-width: 980px) {
  .about-grid,
  .contact-grid,
  .footer-inner,
  .schedule-row-card,
  .contact-two-col {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .site-nav {
    width: 100%;
    order: 3;
  }

  .menu {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .display-title {
    max-width: 100%;
  }

  .hero-title span {
    margin-left: 0;
  }

  .hero-divider {
    gap: 14px;
  }

  .hero-divider span {
    width: 30px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .hide-mobile {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .schedule-side-stack {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .side-nav {
    left: 50%;
    bottom: 16px;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0,0,0,.5);
  }

  .hero-logo-wrap {
    margin-bottom: 2.5rem;
  }

  .hero-scroll {
    bottom: 28px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 92px 0;
  }

  .hero-inner {
    padding-top: 64px;
    padding-bottom: 96px;
  }

  .hero-logo-wrap {
    margin-bottom: 2rem;
  }

  .hero-logo {
    width: 72px;
  }

  .hero-title {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hero-divider {
    flex-direction: column;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .hero-scroll span {
    height: 24px;
  }

  .button,
  .hero-actions,
  .section-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

.menu-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 120;
  width: 58px;
  height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 0 auto;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,1);
}

.overlay-menu[hidden] {
  display: none;
}

.overlay-menu-inner {
  width: min(100% - 40px, 760px);
  text-align: center;
}

.overlay-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay-menu-list li + li {
  margin-top: 18px;
}

.overlay-menu-list a {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s ease, transform .2s ease;
}

.overlay-menu-list a:hover,
.overlay-menu-list a:focus-visible {
  opacity: .72;
  transform: translateY(-1px);
}

.overlay-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  cursor: pointer;
}

.overlay-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: #fff;
}

.overlay-menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.overlay-menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .menu-toggle,
  .overlay-menu-close {
    width: 52px;
    height: 52px;
    top: 16px;
    right: 16px;
  }

  .overlay-menu-list a {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* Pricing */
.sa-pricing-shortcode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sa-pricing-shortcode-card {
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.sa-pricing-shortcode-plan {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.sa-pricing-shortcode-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.sa-pricing-shortcode-desc {
  margin: 0;
  color: var(--muted);
}

.sa-pricing-shortcode-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
	color: var(--text);
	margin: 0;
}

.sa-pricing-shortcode-actions {
  margin-top: 8px;
}

.sa-pricing-shortcode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
	background: var(--text);
	color: var(--text-light);
}

@media (max-width: 980px) {
  .sa-pricing-shortcode-grid {
    grid-template-columns: 1fr;
  }
}