:root {
  --background: #0b0b0b;
  --foreground: #f5f5f5;
  --card: #111111;
  --card-foreground: #f5f5f5;
  --primary: #d4af37;
  --primary-foreground: #0b0b0b;
  --secondary: #161616;
  --secondary-foreground: #f5f5f5;
  --muted: #1a1a1a;
  --muted-foreground: #a1a1a1;
  --border: #2a2a2a;
  --ring: #d4af37;
  color-scheme: dark;
}

html[data-theme="light"] {
  --background: #f8f5ee;
  --foreground: #161515;
  --card: #ffffff;
  --card-foreground: #161515;
  --primary: #d4af37;
  --primary-foreground: #1a1a1a;
  --secondary: #f2ede2;
  --secondary-foreground: #161515;
  --muted: #ede6d8;
  --muted-foreground: #6b6357;
  --border: #e2d8c6;
  --ring: #d4af37;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--background);
  color: var(--foreground);
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Splash / Loader – premium first-load screen */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash.splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 5vw, 2rem);
}

.splash__logo {
  width: clamp(260px, 22vw, 750px);
  height: auto;
  object-fit: contain;
  animation: splash-logo 1.2s ease-in-out infinite;
}

.splash__loader {
  width: clamp(8rem, 60vw, 20rem);
  height: 3px;
  background: color-mix(in srgb, var(--primary) 35%, transparent);
  border-radius: 999px;
  overflow: hidden;
}

.splash__loader::after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  animation: splash-loader 1s ease-in-out infinite;
}

@keyframes splash-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

@keyframes splash-loader {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

a {
  color: inherit;
  text-decoration: none;
}

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

iframe,
video {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

.gold {
  color: var(--primary);
}

.muted {
  color: var(--muted-foreground);
}

.small {
  font-size: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--foreground);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary);
}

.h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin: 0;
}

.h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 44rem;
  margin: 0;
}

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

.section {
  padding: 5rem 0;
}

.section--tint {
  background: color-mix(in srgb, var(--muted) 35%, transparent);
}

.section__head {
  max-width: 44rem;
}

.section__head .muted {
  margin-top: 0.75rem;
  font-size: 1rem;
}

.scroll-mt {
  scroll-margin-top: 6rem;
}

/* Pain Points section */
.pain-section {
  padding: 5rem 0;
}

.pain-section__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.pain-section__head .badge {
  margin-bottom: 1rem;
}

.pain-section__head .h2 {
  margin-bottom: 0.75rem;
}

.pain-section__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pain-extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pain-card--highlight {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--card), color-mix(in srgb, var(--primary) 8%, var(--card)));
}

.pain-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.pain-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}

.pain-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.extra-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.extra-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.extra-card--highlight {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--card), color-mix(in srgb, var(--primary) 8%, var(--card)));
}

.extra-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}

.extra-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

  .pain-extra {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pain-section__head .h2 {
    font-size: 1.6rem;
  }

  .pain-card,
  .extra-card {
    padding: 1.25rem 1rem;
  }
}

/* What You Will Learn section (2-column: intro | curriculum list with dividers) */
.learn-section {
  padding: 5rem 0;
  background: var(--background);
}

.learn-grid {
  display: grid;
  gap: 2.5rem 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .learn-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem 2.5rem;
  }
}

.learn-intro {
  min-width: 0;
}

.learn-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.learn-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 1rem;
}

.learn-highlight {
  display: inline-block;
  margin-top: 0.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
}

.learn-intro__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Right column: curriculum list with dividers */
.curriculum-list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.curriculum-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.curriculum-item:last-child {
  border-bottom: none;
}

.curriculum-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.curriculum-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.curriculum-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.25;
  margin: 0;
  min-width: 0;
}

.curriculum-desc {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .curriculum-desc {
    grid-column: 3 / 4;
  }
}

@media (max-width: 640px) {
  .learn-headline {
    font-size: 1.6rem;
  }

  .curriculum-title {
    font-size: 1rem;
  }

  .curriculum-item {
    grid-template-columns: auto 1fr;
  }

  .curriculum-desc {
    grid-column: 2 / -1;
  }
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  padding-top: env(safe-area-inset-top, 0);
  z-index: 50;
  background: color-mix(in srgb, var(--background) 55%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  min-width: 0;
}

.nav.scrolled {
  background: color-mix(in srgb, var(--background) 85%, transparent);
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 0;
  min-width: 0;
  flex-wrap: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.logo__img {
  height: 3.5rem;
  width: auto;
  max-height: 3.5rem;
  display: block;
  object-fit: contain;
}

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

.nav__links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--foreground) 88%, transparent);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Desktop-only: theme and Book a Call in header bar */
.nav__actions-theme,
.nav__actions-cta {
  display: none;
}

/* Dropdown menu block: theme toggle + Book a Call (shown only when menu open on sm/md) */
.nav__menu-actions {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.nav__menu-actions .icon-btn {
  width: 100%;
  justify-content: center;
}

.nav__menu-cta {
  display: none;
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: transparent;
}

.icon-btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
}

@media (pointer: coarse) {
  .icon-btn {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
  .btn {
    min-height: 2.75rem;
  }
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--muted) 55%, transparent);
  color: var(--foreground);
}

.icon-btn__sun,
.icon-btn__moon {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn__moon svg {
  width: 1.125rem;
  height: 1.125rem;
}

html[data-theme="dark"] .icon-btn__sun {
  display: inline;
}
html[data-theme="dark"] .icon-btn__moon {
  display: none;
}
html[data-theme="light"] .icon-btn__sun {
  display: none;
}
html[data-theme="light"] .icon-btn__moon {
  display: inline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease,
    color 120ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--primary);
  border-color: transparent;
  color: var(--primary-foreground);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--primary) 88%, #000 12%);
}

.btn--outline {
  background: transparent;
  color: var(--foreground);
}

.btn--outline:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  color: var(--primary);
}

/* Mobile menu */
.nav__menu-btn {
  display: inline-flex;
}

.icon-btn__bars {
  width: 1.1rem;
  height: 0.12rem;
  background: currentColor;
  position: relative;
}
.icon-btn__bars::before,
.icon-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 0.12rem;
  background: currentColor;
}
.icon-btn__bars::before {
  top: -0.35rem;
}
.icon-btn__bars::after {
  top: 0.35rem;
}

.nav--open .nav__links {
  display: flex;
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.5rem max(1.5rem, env(safe-area-inset-left)) 0.75rem max(1.5rem, env(safe-area-inset-right));
  background: var(--card);
  border-bottom: 1px solid var(--border);
  z-index: 51;
}

.nav--open .nav__link {
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.nav--open .nav__link:hover {
  background: color-mix(in srgb, var(--muted) 60%, transparent);
}

/* Sm/md: navbar shows ONLY logo + toggle; theme + Book a Call inside dropdown */
@media (max-width: 991px) {
  .nav__actions-theme,
  .nav__actions-cta {
    display: none !important;
  }
  .nav--open .nav__menu-actions {
    display: flex;
  }
  .nav--open .nav__menu-cta {
    display: inline-flex;
  }
}

/* Desktop (lg): show theme + Book a Call in bar; hide dropdown theme/CTA and toggle */
@media (min-width: 992px) {
  .nav__inner {
    gap: 1rem;
    padding: 0.75rem 0;
  }
  .nav__actions-theme,
  .nav__actions-cta {
    display: inline-flex;
  }
  .nav__menu-actions,
  .nav__menu-cta {
    display: none !important;
  }
  .nav__menu-btn {
    display: none;
  }
  .nav__links {
    display: flex;
  }
  .nav--open .nav__links {
    position: static;
    flex-direction: row;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    top: auto;
    left: auto;
    right: auto;
  }
  .nav--open .nav__link {
    min-height: 0;
    padding: 0;
    font-size: 0.95rem;
  }
  .nav--open .nav__menu-actions {
    display: none !important;
  }
}

/* Navbar: tighter layout on very small screens */
@media (max-width: 399px) {
  .nav__inner {
    gap: 0.35rem;
    padding: 0.5rem 0;
  }
  .logo__img {
    height: 2rem;
    max-height: 2rem;
  }
  .nav__actions .btn {
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
  }
  .icon-btn {
    min-width: 2.5rem;
    min-height: 2.5rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .socials-section .socials-tab {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.8rem;
  }
}

/* Nav: same horizontal spacing as other sections on all screens */
.nav .container {
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

/* Mobile: extra spacing so logo and toggle don’t sit flush on edges */
@media (max-width: 1023px) {
  .nav .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
}

@media (min-width: 1024px) {
  .nav .container {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

/* HERO */
.hero {
  min-height: 50vh;
  min-height: 50dvh;
  padding-top: clamp(6rem, 12vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 5.5rem);
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 16%, transparent), transparent 55%),
    radial-gradient(circle at bottom right, color-mix(in srgb, var(--muted) 30%, transparent), transparent 60%),
    color-mix(in srgb, var(--secondary) 60%, transparent);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}

.hero__copy {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__copy .badge {
  margin-bottom: 1rem;
}

.hero__copy .h1 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero__copy .lead {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.hero__cta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__media {
  display: grid;
  justify-items: center;
  padding-top: 0.5rem;
}

.hero-card {
  border-radius: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--primary) 25%, var(--border));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--muted) 40%, transparent),
    color-mix(in srgb, var(--card) 90%, transparent),
    color-mix(in srgb, var(--background) 90%, transparent)
  );
  padding: 1.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-card__panel {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 35%, transparent);
  padding: 1.5rem;
}

.hero-card__big {
  font-size: clamp(3.25rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--foreground) 15%, transparent);
  letter-spacing: 0.14em;
}

.hero-card__mini {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.mini {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--muted) 45%, transparent);
  padding: 1rem;
}

.mini__title {
  font-weight: 700;
}
.mini__text {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.hero__meta {
  margin-top: 2rem;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero__stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.hero__stat-label {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3.5rem;
  }

  .hero__copy .h1 {
    margin-bottom: 1.25rem;
  }

  .hero__copy .lead {
    margin-top: 1.5rem;
  }

  .hero__cta {
    margin-top: 2rem;
  }

  .hero__meta {
    margin-top: 2.25rem;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: center;
    justify-items: center;
    gap: 2.5rem;
  }

  .hero__media {
    padding-top: 0;
  }

  .hero-card {
    padding: 1.75rem;
  }
}

/* GRID / CARDS */
.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  padding: 1.25rem;
}

.card--warn {
  border-color: color-mix(in srgb, #ef4444 25%, var(--border));
}

.warn-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: color-mix(in srgb, #ef4444 12%, transparent);
  color: #ef4444;
  font-weight: 900;
}

/* ABOUT */
.about {
  display: grid;
  gap: 2.5rem;
}

.about__media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about__portrait-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 420px;
  border: 8px solid #d4af37;
  border-radius: 12px;
  box-shadow: 20px 20px 0px #161515;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__portrait-frame:hover {
  transform: translateY(-5px);
  box-shadow: 28px 28px 0px #161515;
}

.about__portrait-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.about__portrait-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4af37;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  line-height: 1;
}

@media (max-width: 767px) {
  .about__media {
    justify-content: center;
  }

  .about__portrait-frame {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .about__portrait-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.pill {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  padding: 1rem;
}

.pill__title {
  font-weight: 700;
}
.pill__text {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .about {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

/* FEATURES */
.stack {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

.feature {
  display: grid;
  gap: 1.25rem;
}

.feature__title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.media {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--muted) 45%, transparent);
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
  .feature--reverse {
    direction: rtl;
  }
  .feature--reverse > * {
    direction: ltr;
  }
}

/* Reels subsection (Instagram embeds) in Results */
.reels__title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  margin-top: 2.5rem;
}

.reels__sub {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.reel-embed {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  min-height: 400px;
}

.reel-embed .instagram-media {
  margin: 0 !important;
  min-width: 100%;
}

/* Results platform groups */
.results-platforms {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 2rem;
}

.results-platform {
  margin-top: 0;
  flex: 1 1 320px;
  min-width: min(100%, 320px);
}

.results-platform__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-platform__sub {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.results-platform .reel-embed {
  margin-top: 1rem;
}

.results-trust {
  margin-top: 2.25rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Socials tabs section */
.socials-section {
  background: var(--background);
}

.socials-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(1.5rem, 5vw, 2.75rem) auto;
  padding: 0 0.5rem;
}

.socials-header .h2 {
  font-size: clamp(1.5rem, 5vw, 2.3rem);
}

.socials-header .socials-subtext {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.socials-label {
  display: inline-block;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.socials-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 55%, transparent);
  border: 1px solid var(--border);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.socials-tabs::-webkit-scrollbar {
  display: none;
}

.socials-tab {
  flex: 0 0 auto;
  min-width: 100px;
  min-height: 2.75rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease,
    box-shadow 0.18s ease;
}

.socials-tab:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--primary) 10%, var(--muted));
}

.socials-tab--active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 25%, transparent);
}

.socials-panels {
  margin-top: 2rem;
}

.socials-panel {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--background) 85%, var(--foreground) 15%);
  padding: 1.75rem 1.5rem;
  display: none;
}

.socials-panel--active {
  display: block;
}

.socials-panel__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 4vw, 1.75rem);
}

.socials-panel__content {
  min-width: 0;
  overflow-wrap: break-word;
}

.socials-panel__content .muted,
.socials-panel__content p {
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.socials-panel__title {
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  margin: 0 0 0.75rem;
  color: var(--foreground);
  line-height: 1.25;
}

.socials-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--muted-foreground);
}

.socials-list li + li {
  margin-top: 0.3rem;
}

.socials-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.75rem;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease;
}

.socials-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 30%, transparent);
  background: color-mix(in srgb, var(--primary) 92%, var(--background) 8%);
  border-color: color-mix(in srgb, var(--primary) 80%, var(--border));
}

.socials-panel__media {
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Responsive video wrappers: one place for all embed sizing */
.socials-media-video {
  width: 100%;
  max-width: min(360px, 100%);
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--muted);
}

.socials-media-video--youtube {
  max-width: min(640px, 100%);
  aspect-ratio: 16 / 9;
}

.socials-media-video--youtube .socials-media-video__wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
}

.socials-media-video--youtube .socials-media-video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.socials-media-video--portrait {
  aspect-ratio: 9 / 16;
  max-width: min(320px, 100%);
}

.socials-media-video--portrait iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  vertical-align: top;
}

@media (min-width: 480px) {
  .socials-media-video--portrait {
    max-width: min(360px, 100%);
  }
}

.socials-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 1rem;
  border: 1px dashed color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--muted) 35%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-media-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .socials-panel__body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .socials-panel {
    padding: 2rem 2rem;
  }
}

@media (max-width: 767px) {
  .socials-tab {
    flex: 1 1 0;
    min-width: 0;
  }

  .socials-panel {
    padding: clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 1.25rem);
    overflow-x: hidden;
  }

  .socials-panel__body {
    gap: 1.25rem;
  }

  .socials-panel__media {
    order: 1;
  }

  .socials-panel__content {
    order: 0;
  }
}

@media (min-width: 768px) {
  .socials-tab {
    flex: 1 0 120px;
  }
}

@media (min-width: 768px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* RESULTS TILES */
.grid--tiles {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid--tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid--tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  overflow: hidden;
  transition: transform 160ms ease;
}

.tile:hover {
  transform: scale(1.01);
}

.tile__img {
  height: 12rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--muted) 40%, transparent),
    color-mix(in srgb, var(--card) 85%, transparent),
    color-mix(in srgb, var(--background) 85%, transparent)
  );
}

.tile__body {
  padding: 1.1rem;
}

.tile__title {
  font-weight: 700;
}

.tile__text {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

/* EMBED */
.center {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

/* Booking: full-width embed, no extra space around Calendly */
.section--booking {
  padding-bottom: 2rem;
}

.section--booking .container {
  margin-bottom: 0;
}

.booking-embed-wrap {
  width: 100%;
  margin-top: 2rem;
  padding: 0 1rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .booking-embed-wrap {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .booking-embed-wrap {
    padding: 0 2rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.embed {
  margin-top: 0;
  min-height: 700px;
  border-radius: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  background: #fff;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Calendly embed internal spacing – use if injecting CSS into Calendly or for same-origin overrides */
.Yirv_lcEoJvq0f_H9E0w.XUKnHm8j4G7Hgt84mtar {
  margin-top: 36px !important;
  margin-bottom: 30px;
}

.iframe {
  width: 100%;
  min-height: 600px;
  height: 790px;
  border: 0;
  display: block;
  background: var(--background);
}

/* Booking skeleton loader – min-height so skeleton is visible while Calendly loads */
.booking-embed {
  position: relative;
  min-height: 420px;
}

.booking-embed iframe {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  min-height: 420px;
}

.booking-embed--loaded iframe {
  opacity: 1;
  pointer-events: auto;
}

.booking-skeleton {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.booking-skeleton__inner {
  width: 100%;
  max-width: 72rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.75rem;
  padding: 2.25rem 2rem;
}

.booking-skeleton__col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.booking-skeleton__line,
.booking-skeleton__pill,
.booking-skeleton__calendar {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--muted-foreground) 12%, transparent) 0%,
    color-mix(in srgb, var(--muted-foreground) 28%, transparent) 20%,
    color-mix(in srgb, var(--muted-foreground) 12%, transparent) 40%
  );
  background-size: 200% 100%;
  animation: booking-skeleton-shimmer 1.4s ease-in-out infinite;
}

.booking-skeleton__line {
  height: 0.9rem;
  border-radius: 999px;
}

.booking-skeleton__line--title {
  width: 60%;
  height: 1.2rem;
}

.booking-skeleton__line--subtitle {
  width: 80%;
}

.booking-skeleton__line--short {
  width: 40%;
}

.booking-skeleton__pill-row {
  display: flex;
  gap: 0.5rem;
}

.booking-skeleton__pill {
  width: 4.5rem;
  height: 0.8rem;
  border-radius: 999px;
}

.booking-skeleton__calendar {
  flex: 1;
  border-radius: 1.1rem;
}

.booking-embed--loaded .booking-skeleton {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@keyframes booking-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .booking-skeleton__inner {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .iframe {
    min-height: 500px;
    height: 700px;
  }
}

/* GALLERY / ACHIEVEMENTS */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .gallery {
    gap: 1.5rem;
  }
}

.gallery__item {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery__item:hover::after,
.gallery__item:focus-visible::after {
  opacity: 1;
}

.gallery__item:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Gallery dialog (lightbox) */
.gallery-dialog {
  --gallery-width: min(92vw, 560px);
  --gallery-height: min(85vh, 940px);
  width: var(--gallery-width);
  height: var(--gallery-height);
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  border: none;
  border-radius: 0.75rem;
  background: var(--background);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

.gallery-dialog__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: var(--gallery-height);
}

.gallery-dialog__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--gallery-width);
  width: var(--gallery-width);
  height: var(--gallery-height);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-dialog__carousel::-webkit-scrollbar {
  display: none;
}

.gallery-dialog__slide {
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--gallery-width);
  height: var(--gallery-height);
}

.gallery-dialog__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-dialog__prev,
.gallery-dialog__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--background) 90%, transparent);
  color: var(--foreground);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.gallery-dialog__prev:hover,
.gallery-dialog__next:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.gallery-dialog__prev {
  left: 0.5rem;
}

.gallery-dialog__next {
  right: 0.5rem;
}

.gallery-dialog__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--background) 90%, transparent);
  color: var(--foreground);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.gallery-dialog__close:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

/* FAQ */
.faq {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  padding: 1.1rem 1.2rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
}

/* FOOTER – same horizontal spacing as other sections (uses .container) */
.footer {
  border-top: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  background: var(--background);
  padding: 3.5rem 0 2.5rem;
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}

/* Ensure footer containers match site padding on mobile and desktop */
.footer .container {
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}

@media (min-width: 1024px) {
  .footer .container {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer__link {
  display: block;
  padding: 0.3rem 0;
  color: color-mix(in srgb, var(--foreground) 88%, transparent);
}

.footer__link:hover {
  color: var(--primary);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social__btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  color: var(--muted-foreground);
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.social__btn:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}

.social__btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}
