:root {
  --black: #050505;
  --ink: #0b0b0c;
  --panel: #101011;
  --panel-soft: #171717;
  --gold: #d6a23b;
  --gold-bright: #f3cf7a;
  --white: #f8f7f2;
  --muted: #c5beb0;
  --dim: rgba(248, 247, 242, 0.66);
  --soft: rgba(248, 247, 242, 0.08);
  --line: rgba(214, 162, 59, 0.28);
  --glass: rgba(8, 8, 8, 0.46);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(214, 162, 59, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505, #090909 45%, #050505);
  color: var(--white);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(4, 4, 4, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
  border: 1px solid rgba(243, 207, 122, 0.34);
  color: var(--gold-bright);
  font-weight: 950;
  letter-spacing: 0;
  transform: skewX(-9deg);
  background: rgba(0, 0, 0, 0.22);
}

.brand-copy {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--dim);
  font-size: 0.9rem;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px 0 76px;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  object-position: 61% 48%;
  opacity: 1;
  filter: saturate(1.02) contrast(1.1) brightness(0.88);
  transform: scale(1.34);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.91) 0%, rgba(5, 5, 5, 0.68) 43%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.38) 58%, #050505 100%),
    radial-gradient(circle at 68% 28%, rgba(214, 162, 59, 0.34), transparent 32rem),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 22rem);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}

.hero-content {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(10px);
  animation: riseIn 780ms ease both;
}

.scroll-cue {
  position: absolute;
  right: clamp(16px, 4vw, 52px);
  bottom: 34px;
  color: rgba(248, 247, 242, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 630px;
  margin-bottom: 22px;
  font-size: 5.08rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 950;
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.62);
}

h2 {
  margin-bottom: 20px;
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text,
.section-head p,
.section-copy p,
.location-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 660px;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  isolation: isolate;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 46%, transparent 58%),
    radial-gradient(circle at 50% 100%, rgba(243, 207, 122, 0.18), transparent 68%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 240ms ease, transform 420ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.btn:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.btn:hover::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.btn-primary {
  border-color: rgba(243, 207, 122, 0.62);
  background:
    linear-gradient(180deg, rgba(243, 207, 122, 0.94), rgba(214, 162, 59, 0.88));
  color: #080704;
  box-shadow: 0 14px 38px rgba(214, 162, 59, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 54px rgba(214, 162, 59, 0.3);
}

.btn-outline {
  border-color: rgba(248, 247, 242, 0.18);
  background: rgba(5, 5, 5, 0.22);
  color: var(--white);
}

.btn-outline:hover {
  border-color: rgba(243, 207, 122, 0.52);
  background: rgba(214, 162, 59, 0.08);
  color: var(--gold-bright);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--gold-bright);
}

.btn-ghost:hover {
  border-color: rgba(243, 207, 122, 0.22);
  background: rgba(214, 162, 59, 0.06);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span,
.method-list span,
.audience-list span {
  border: 1px solid rgba(248, 247, 242, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.18);
  color: rgba(248, 247, 242, 0.82);
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.soul {
  padding-top: 76px;
}

.soul-grid,
.about-grid,
.split,
.audience-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.section-copy {
  max-width: 680px;
}

.value-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-line span {
  min-height: 116px;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(214, 162, 59, 0.055), rgba(255, 255, 255, 0.018)),
    #0c0c0d;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-portrait {
  position: relative;
  margin: 0;
}

.coach-portrait::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 18px;
  z-index: -1;
  width: 66%;
  height: 84%;
  border: 1px solid var(--gold);
}

.coach-portrait img {
  width: 100%;
  aspect-ratio: 4 / 4.75;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  filter: saturate(0.82) contrast(1.02);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 28px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--gold);
  color: var(--gold-bright);
  font-size: 1.25rem;
  font-weight: 950;
}

.method {
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 162, 59, 0.12), transparent 28rem),
    #080808;
}

.method-list,
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location {
  background:
    linear-gradient(135deg, rgba(214, 162, 59, 0.12), transparent 36%),
    linear-gradient(180deg, #050505, #0c0c0c);
}

.location-panel {
  max-width: 840px;
  padding: 18px 0;
}

.booking {
  background: #080808;
}

.booking-grid {
  align-items: start;
}

.calendar-shell,
.booking-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.2);
}

.calendar-shell {
  margin-top: 28px;
  padding: 18px;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248, 247, 242, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--dim);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-btn:hover {
  background: rgba(214, 162, 59, 0.12);
  border-color: rgba(243, 207, 122, 0.45);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.weekdays {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 950;
  text-align: center;
}

.day-btn {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.46);
  cursor: default;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.day-btn.available {
  color: var(--white);
  border-color: rgba(214, 162, 59, 0.28);
  cursor: pointer;
}

.day-btn.available:hover,
.day-btn.active {
  background: rgba(214, 162, 59, 0.14);
  border-color: rgba(243, 207, 122, 0.62);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.booking-form {
  padding: 30px;
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(214, 162, 59, 0.1);
  color: var(--gold-bright);
  font-weight: 850;
}

fieldset {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

legend,
label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
}

.time-chip {
  position: relative;
}

.time-chip input {
  position: absolute;
  opacity: 0;
}

.time-chip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.time-chip span:hover {
  border-color: rgba(243, 207, 122, 0.36);
  color: var(--white);
}

.time-chip input:checked + span {
  background: rgba(214, 162, 59, 0.14);
  color: var(--gold-bright);
  border-color: rgba(243, 207, 122, 0.58);
  font-weight: 900;
}

.form-row {
  margin-bottom: 14px;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  padding: 0 12px;
  font: inherit;
}

select option {
  background: #111;
  color: var(--white);
}

input:focus,
select:focus,
.icon-btn:focus,
.btn:focus,
.day-btn:focus {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.btn-full {
  width: 100%;
}

.payment-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  padding: 104px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 162, 59, 0.16), transparent 34rem),
    linear-gradient(180deg, #050505, #10100f);
  text-align: center;
}

.final-cta-inner {
  max-width: 920px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  padding: 34px 0 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
}

.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 7px;
}

.footer a:hover {
  color: var(--gold-bright);
}

.legal {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.58);
  background: rgba(4, 22, 11, 0.82);
  color: #78f0a1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), inset 0 0 22px rgba(37, 211, 102, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(37, 211, 102, 0.18);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42), 0 0 0 6px rgba(37, 211, 102, 0.06);
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 16%, rgba(214, 162, 59, 0.16), transparent 30rem),
    linear-gradient(180deg, #050505, #0c0c0c);
}

.checkout-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.checkout-box {
  width: min(720px, 100%);
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

.checkout-brand {
  margin-bottom: 28px;
}

.checkout-box h1 {
  font-size: 4.5rem;
}

.checkout-summary {
  margin: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.checkout-summary strong {
  color: var(--white);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(10px);
  }
}

@media (max-width: 900px) {
  .hero-video {
    object-position: 60% 50%;
    transform: scale(1.12);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.66) 58%, rgba(5, 5, 5, 0.34) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.28) 42%, #050505 100%),
      radial-gradient(circle at 62% 22%, rgba(214, 162, 59, 0.26), transparent 28rem);
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1.14rem;
  }

  .soul-grid,
  .about-grid,
  .split,
  .audience-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .legal {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    padding: 12px 14px;
  }

  .brand-copy {
    display: none;
  }

  .nav {
    gap: 11px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 0 42px;
  }

  .hero-video {
    object-position: 62% 50%;
    transform: scale(1.06);
    filter: saturate(1.04) contrast(1.08) brightness(0.82);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.66) 68%, rgba(5, 5, 5, 0.42) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.18) 35%, #050505 100%),
      radial-gradient(circle at 72% 20%, rgba(214, 162, 59, 0.22), transparent 18rem);
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    transform: translateY(-34px);
    animation: none;
  }

  h1 {
    max-width: 360px;
    font-size: 2.82rem;
    line-height: 1.02;
    margin-bottom: 18px;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-text,
  .section-head p,
  .section-copy p,
  .location-panel p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-text {
    max-width: 340px;
  }

  .hero-actions {
    margin: 24px 0 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-tags {
    gap: 7px;
    max-width: 340px;
  }

  .hero-tags span,
  .method-list span,
  .audience-list span {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .soul {
    padding-top: 58px;
  }

  .coach-portrait::before {
    left: -8px;
    top: 10px;
    height: 78%;
  }

  .coach-portrait img {
    aspect-ratio: 4 / 3.55;
    object-position: center 20%;
  }

  .value-line {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .checkout-box {
    padding: 20px;
  }

  .calendar-shell {
    padding: 14px;
  }

  .calendar-top {
    margin-bottom: 14px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }
  }

  .checkout-box h1 {
    font-size: 2.5rem;
  }

  .weekdays,
  .calendar-grid {
    gap: 6px;
  }

  .day-btn {
    font-size: 0.8rem;
    min-width: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .footer {
    padding-bottom: 104px;
  }
}
