/* Kelly Manzone — Movement is Life */

:root {
  --content-max: 1200px;
  --bg: #0E1310;
  --bg-alt: #12180F;
  --bg-footer: #0B0F0C;
  --ink: #ECE7DA;
  --ink-soft: #C9CFC2;
  --ink-dim: #9AA396;
  --ink-faint: #6E7769;
  --gold: #C79A4B;
  --gold-light: #DDB268;
  --gold-deep: #7C5F28;
  --cream: #EAE4D6;
  --dark: #171C17;
  --dark-warm: #14180F;
  --line: rgba(236, 231, 218, .14);
  --display: 'Big Shoulders Display', sans-serif;
  --body: Archivo, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--gold); color: var(--dark-warm); }
input::placeholder { color: #828B7E; }
img { max-width: 100%; }

a, button { transition: color .25s ease, background-color .25s ease, border-color .25s ease, opacity .25s ease; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroSettle { from { transform: scale(1.05); } to { transform: none; } }

.fade-1 { animation: fadeUp .7s ease both; }
.fade-2 { animation: fadeUp .8s ease .1s both; }
.fade-3 { animation: fadeUp .8s ease .22s both; }
.fade-4 { animation: fadeUp .8s ease .34s both; }
.fade-5 { animation: fadeUp .8s ease .46s both; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 6vw;
  background: linear-gradient(rgba(10, 14, 11, .88), rgba(10, 14, 11, .55));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 231, 218, .08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--dark-warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); color: var(--dark-warm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid rgba(236, 231, 218, .25);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Shared ---------- */

.container { max-width: var(--content-max); margin: 0 auto; }

.section { padding: 120px 6vw 100px; background: var(--bg); }
.section-alt { background: var(--bg-alt); border-top: 1px solid rgba(236, 231, 218, .08); }

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.kicker-center { justify-content: center; color: var(--gold-light); }
.kicker-line { width: 38px; height: 1px; background: var(--gold); flex: none; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-title {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: .95;
  color: var(--ink);
}

.section-note {
  margin: 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 16px 26px;
  border-radius: 4px;
  white-space: nowrap;
}
.btn-solid { background: var(--gold); color: var(--dark-warm); }
.btn-solid:hover { background: var(--gold-light); color: var(--dark-warm); }
.btn-ghost { border: 1px solid rgba(236, 231, 218, .4); color: var(--ink); font-weight: 600; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { font-size: 12px; padding: 12px 20px; }

.input {
  flex: 1;
  min-width: 200px;
  background: rgba(14, 19, 16, .7);
  border: 1px solid rgba(236, 231, 218, .3);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--body);
  /* 16px minimum stops iOS Safari's focus auto-zoom */
  font-size: 16px;
}
.input-lg { min-width: 240px; max-width: 360px; padding: 16px 18px; background: rgba(14, 19, 16, .75); border-color: rgba(236, 231, 218, .35); }

.btn-form {
  background: var(--gold);
  color: var(--dark-warm);
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 24px;
  border-radius: 4px;
}
.btn-form:hover { background: var(--gold-light); }
.btn-form-lg { padding: 16px 28px; }

.body-text { margin: 22px 0 0; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.body-text.tight { margin-top: 16px; font-size: 15.5px; line-height: 1.75; }

.reveal { will-change: opacity, transform; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  /* fill the viewport on laptops, but stop growing on very tall screens */
  min-height: min(92vh, 1180px);
  background: var(--bg);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 4vw 70px 6vw;
}

/* keeps the copy optically centered in its column on ultra-wide screens */
.hero-copy-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.hero-copy .kicker { letter-spacing: .3em; color: var(--gold-light); }

.hero-title {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(56px, 7.6vw, 120px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--ink);
}
.hero-title .gold { color: var(--gold); }

.hero-lede {
  margin: 26px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(236, 231, 218, .18);
}

.stat-num { font-family: var(--display); font-weight: 700; font-size: 34px; color: var(--ink); }
.stat-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); margin-top: 4px; }

/* keep all three stats on one row at laptop widths (the copy column is ~505-570px there) */
@media (max-width: 1600px) {
  .hero-stats { gap: 18px 28px; }
  .stat-label { font-size: 11px; letter-spacing: .12em; }
}

/* short desktop windows (1366x768, docked devtools): keep the stats above the fold */
@media (min-width: 901px) and (max-height: 800px) {
  .hero-copy { padding: 110px 4vw 44px 6vw; }
  .hero-title { font-size: clamp(52px, 6.8vw, 104px); }
  .hero-lede { margin-top: 20px; }
  .hero-stats { margin-top: 36px; padding-top: 20px; }
}

.hero-media { position: relative; min-height: 480px; overflow: hidden; }

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 16%;
  animation: heroSettle 1.8s cubic-bezier(.22, .61, .36, 1) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0E1310 0%, rgba(14, 19, 16, 0) min(24%, 340px)),
    linear-gradient(rgba(10, 14, 11, .55), rgba(10, 14, 11, 0) 26%),
    linear-gradient(0deg, #0E1310 0%, rgba(14, 19, 16, 0) 12%);
}

/* ---------- Workshops ---------- */

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  margin-top: 54px;
}

.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96px;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  color: var(--dark);
  transition: transform .3s ease;
}
.ticket:hover { transform: translateY(-5px); }

.ticket-body { padding: 26px 24px 24px; }

.ticket-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.ticket-name {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  line-height: .95;
  color: var(--dark);
}

.ticket-details {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(23, 28, 23, .35);
  display: grid;
  gap: 8px;
}

.ticket-row { display: flex; gap: 10px; font-size: 14px; font-weight: 600; color: #33392F; }
.ticket-key {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 3px;
  min-width: 52px;
}

.ticket-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px 20px;
  border-radius: 4px;
  white-space: nowrap;
}
.ticket-cta:hover { background: var(--gold); color: var(--dark-warm); }

.ticket-stub {
  position: relative;
  border-left: 2px dashed rgba(23, 28, 23, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-stub-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.ticket-notch {
  position: absolute;
  left: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
}
.ticket-notch-top { top: -9px; }
.ticket-notch-bottom { bottom: -9px; }

.notify {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  border: 1px solid rgba(199, 154, 75, .4);
  border-radius: 6px;
  padding: 26px 28px;
  background: var(--bg-alt);
}

.notify-copy { min-width: min(100%, 260px); }
.notify-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.notify-sub { font-size: 14px; color: var(--ink-dim); margin-top: 4px; }

.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: min(100%, 300px);
  max-width: 520px;
}

/* ---------- Programs ---------- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
  margin-top: 54px;
}

.program {
  position: relative;
  border: 1px solid rgba(199, 154, 75, .45);
  border-radius: 6px;
  padding: 30px 28px;
  background: linear-gradient(160deg, #161D16, #0F150E);
  transition: transform .3s ease;
}
.program:hover { transform: translateY(-5px); }

.program-top { display: flex; justify-content: space-between; align-items: center; }
.program-index { font-family: var(--display); font-weight: 600; font-size: 40px; color: rgba(236, 231, 218, .22); }
.program-badge {
  background: var(--gold);
  color: var(--dark-warm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

.program-name {
  margin: 40px 0 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 34px;
  line-height: .95;
  color: var(--ink);
}

.program-desc { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: var(--ink-dim); }
.program .btn { margin-top: 24px; }

.collab {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px dashed rgba(199, 154, 75, .5);
  border-radius: 6px;
  padding: 22px 28px;
}

.collab-copy { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.collab-tag { color: var(--gold); font-weight: 700; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.collab-text { font-size: 15px; color: var(--ink-soft); }
/* padding + matching negative margin = 40px touch target with zero layout shift */
.collab-link { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: inline-block; padding: 12px 0; margin: -12px 0; }

/* ---------- Divider ---------- */

.divider {
  position: relative;
  height: min(54vh, 680px);
  min-height: 380px;
  overflow: hidden;
}

.divider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.divider-scrim { position: absolute; inset: 0; background: rgba(10, 14, 11, .5); }

.divider-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.divider-rule { width: 1px; height: 44px; background: var(--gold); }

.divider-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(48px, 7.5vw, 104px);
  letter-spacing: .08em;
  color: var(--ink);
  text-align: center;
  text-shadow: 0 4px 30px rgba(10, 14, 11, .6);
}

/* ---------- Coaching / About ---------- */

.section .split, .container.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 56px;
  align-items: center;
}

.split-title { font-size: clamp(44px, 5vw, 68px); }

.split-img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.split-img-coaching { height: 600px; object-position: center 20%; }
.split-img-about { height: 560px; object-position: center 26%; }

.offer-list { margin-top: 26px; display: grid; border-top: 1px solid var(--line); }
.offer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  flex-wrap: wrap;
}
.offer-name { font-weight: 600; color: var(--ink); }
.offer-detail { color: var(--ink-dim); }

.contact-line { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.contact-alt { font-size: 14px; color: var(--ink-dim); }
.contact-phone { color: var(--ink); font-weight: 600; display: inline-block; padding: 12px 0; margin: -12px 0; }
.contact-phone:hover { color: var(--gold-light); }

.about-welcome {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 44px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.cred-heading { font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }

.cred-list { margin-top: 18px; display: grid; }
.cred-item {
  padding: 11px 0;
  border-bottom: 1px solid rgba(236, 231, 218, .12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}

.cred-notes { margin-top: 18px; display: grid; gap: 16px; }
.cred-note { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.cred-note strong { color: var(--ink); }

/* ---------- Signup ---------- */

.signup {
  position: relative;
  padding: 140px 6vw;
  overflow: hidden;
}

.signup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.signup-scrim { position: absolute; inset: 0; background: linear-gradient(rgba(10, 14, 11, .72), rgba(10, 14, 11, .82)); }

.signup-inner { position: relative; max-width: 660px; margin: 0 auto; text-align: center; }

.signup-title {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: .92;
  color: var(--ink);
}

.signup-sub { margin: 18px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

.signup-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */

.footer {
  padding: 90px 6vw 36px;
  background: var(--bg-footer);
  border-top: 1px solid rgba(236, 231, 218, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 44px;
}

.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-tagline { margin-top: 8px; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer-role { margin-top: 14px; font-size: 14px; line-height: 1.6; color: var(--ink-dim); }

.footer-links { margin-top: 16px; display: grid; gap: 14px; font-size: 14.5px; }
.footer-links a { color: var(--ink-soft); padding: 4px 0; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(236, 231, 218, .1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* ---------- Mobile ---------- */

/* the one-row desktop nav needs ~1065px with webfonts loaded, so the
   hamburger takes over below 1150px (covers 200% zoom and iPad landscape) */
@media (max-width: 1150px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: #0A0E0B;
    border-bottom: 1px solid rgba(236, 231, 218, .1);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .45);
    padding: 8px 6vw 18px;
    display: none;
    /* short viewports (landscape phones, 200% zoom): scroll inside the menu */
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 4px; font-size: 14px; border-bottom: 1px solid rgba(236, 231, 218, .08); }
  .nav-cta { margin-top: 14px; text-align: center; padding: 14px 18px; }
}

@media (max-width: 900px) {
  .nav { padding: 12px 5vw; }
  .nav-links { padding-left: 5vw; padding-right: 5vw; }

  .hero-copy { padding: 120px 6vw 54px; }
  .hero-stats { gap: 28px; }
  .hero-media { min-height: 380px; }

  .section { padding: 84px 6vw 70px; }
  .signup { padding: 110px 6vw; }

  .split-img-coaching, .split-img-about { height: 440px; }
  .section .split, .container.split { gap: 40px; }
  .cred-grid { margin-top: 56px; gap: 34px; }
  .footer { padding: 70px 6vw 30px; }
}

@media (max-width: 480px) {
  .ticket { grid-template-columns: 1fr 72px; }
  .hero-stats { gap: 22px; }
  .stat-num { font-size: 28px; }
}

/* ---------- Very large screens ---------- */

@media (min-width: 2200px) {
  :root { --content-max: 1400px; }
  /* display type keeps growing past the laptop-era clamp caps */
  .section-title { font-size: clamp(44px, 5.5vw, 88px); }
  .split-title { font-size: clamp(44px, 5vw, 78px); }
  .divider-title { font-size: clamp(48px, 7.5vw, 120px); }
  .signup-title { font-size: clamp(48px, 6.5vw, 96px); }
  .hero-title { font-size: clamp(56px, 7.6vw, 132px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
