/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/InterTight-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/InterTight-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('assets/fonts/LibreBaskerville-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('assets/fonts/LibreBaskerville-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   BRAND TOKENS
   ============================================ */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-surface: #1a1a1a;
  --dark-card: #161616;
  --copper: #c48c3c;
  --copper-hover: #d49a48;
  --navy: #1c2a3a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-icon {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--copper);
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--copper);
  color: var(--black) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--copper-hover);
  color: var(--black) !important;
}
.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px !important;
  padding: 14px 36px !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.mobile-menu a:hover {
  color: var(--copper);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-logo {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 32px;
}
.hero-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-tagline em {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  color: var(--copper);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 44px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  background: var(--copper);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.hero-cta:hover {
  background: var(--copper-hover);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 120px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--copper);
}

/* ============================================
   TENSION
   ============================================ */
.tension {
  background: var(--dark);
  text-align: center;
}
.tension-inner {
  max-width: 760px;
}
.tension-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-text p:not(.section-label) {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-quote {
  color: var(--copper) !important;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px !important;
  margin-top: 24px;
  line-height: 1.6 !important;
}

/* ============================================
   PATHWAY
   ============================================ */
.pathway {
  background: var(--dark);
}
.pathway-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 60px;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pathway-step {
  padding: 40px 28px;
  background: var(--dark-card);
  border-left: 3px solid var(--copper);
}
.pathway-number {
  font-size: 13px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.pathway-step h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pathway-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  padding: 48px 36px;
  background: var(--navy);
  border-bottom: 3px solid var(--copper);
}
.service-card h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   PHOTO FEATURE (full-width with overlay text)
   ============================================ */
.photo-feature {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,58,0.7) 0%, rgba(28,42,58,0.85) 100%);
}
.photo-feature-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.photo-feature-text h2 {
  font-size: 44px;
  line-height: 1.25;
  text-transform: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}
.photo-feature-text h2 em {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--copper);
  font-weight: 400;
}

/* ============================================
   TEAM / COACHES
   ============================================ */
.team {
  background: var(--dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 60px;
}
.team-card {
  background: var(--dark-card);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.team-card:hover .team-photo img {
  filter: grayscale(0%);
}
.team-info {
  padding: 36px 32px;
}
.team-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.team-info h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.team-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ============================================
   PODCAST
   ============================================ */
.podcast {
  background: var(--dark);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
}
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-more {
  margin-top: 16px;
  text-align: center;
}
.youtube-more a {
  color: var(--copper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.youtube-more a:hover {
  color: var(--copper-hover);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--dark);
  text-align: center;
}
.newsletter-center {
  max-width: 680px;
  margin: 0 auto;
}
.newsletter-center h2 {
  margin-bottom: 16px;
}
.newsletter-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  text-align: left;
}
.newsletter-benefits li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.newsletter-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}
.newsletter-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Flodesk overrides ---- */
/* Force brand font */
#fd-form-69c80c983746affd2767adf7 * {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
/* Transparent wrappers */
#fd-form-69c80c983746affd2767adf7,
#fd-form-69c80c983746affd2767adf7 form,
#fd-form-69c80c983746affd2767adf7 [class*="form"],
#fd-form-69c80c983746affd2767adf7 [class*="container"],
#fd-form-69c80c983746affd2767adf7 [class*="wrapper"] {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Visible input fields */
#fd-form-69c80c983746affd2767adf7 input[type="text"],
#fd-form-69c80c983746affd2767adf7 input[type="email"],
#fd-form-69c80c983746affd2767adf7 input[type="tel"] {
  background: #2a2724 !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 6px !important;
  color: #f5f0e8 !important;
  padding: 14px 16px !important;
}
#fd-form-69c80c983746affd2767adf7 input::placeholder {
  color: #6b6259 !important;
}
#fd-form-69c80c983746affd2767adf7 input:focus {
  outline: none !important;
  border-color: #c48c3c !important;
  box-shadow: none !important;
}
/* Copper subscribe button */
#fd-form-69c80c983746affd2767adf7 button,
#fd-form-69c80c983746affd2767adf7 [type="submit"],
#fd-form-69c80c983746affd2767adf7 [class*="button"],
#fd-form-69c80c983746affd2767adf7 [class*="btn"] {
  background: #c48c3c !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
#fd-form-69c80c983746affd2767adf7 button:hover,
#fd-form-69c80c983746affd2767adf7 [type="submit"]:hover {
  background: #d49a48 !important;
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram {
  background: #6b3518;
  padding-bottom: 100px;
  border-top: 1px solid #8b4a25;
}
.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.instagram-header h2 {
  text-transform: none;
  font-size: 36px;
  margin-bottom: 0;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--copper);
  color: var(--copper);
}
.btn-outline:hover {
  background: var(--copper);
  color: var(--black);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.instagram-tile {
  display: block;
  overflow: hidden;
  position: relative;
}
.instagram-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.instagram-tile {
  display: block;
  overflow: hidden;
  position: relative;
}
.instagram-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.instagram-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}
.instagram-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-tile:hover .instagram-tile-overlay {
  opacity: 1;
}

/* ============================================
   CONNECT
   ============================================ */
.connect-section {
  background: var(--dark);
  text-align: center;
}
.connect-inner {
  max-width: 680px;
}
.connect-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.connect-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.connect-info p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.connect-info a {
  color: var(--copper);
  transition: color 0.3s ease;
}
.connect-info a:hover {
  color: var(--copper-hover);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--copper);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--copper-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  max-width: 200px;
  opacity: 0.4;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--copper);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header .section-label {
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: 52px;
  margin-bottom: 0;
  line-height: 1.15;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ============================================
   PAGE CTA (bottom of inner pages)
   ============================================ */
.page-cta {
  background: var(--dark-surface);
  text-align: center;
}
.page-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.page-cta-inner h2 {
  margin-bottom: 0;
}

/* ============================================
   HOME LINK CARDS (index.html page nav)
   ============================================ */
.home-links {
  background: var(--dark);
}
.home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.home-link-card {
  display: block;
  background: var(--dark-card);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.04);
}
.home-link-card:hover {
  background: var(--dark-surface);
}
.home-link-card .section-label {
  margin-bottom: 12px;
}
.home-link-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--white);
}
.home-link-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--copper);
  font-size: 20px;
  transition: transform 0.3s ease;
}
.home-link-card:hover .home-link-arrow {
  transform: translateX(6px);
}

/* Nav active state */
.nav-active {
  color: var(--copper) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  h2 { font-size: 30px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image img {
    height: 360px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-feature {
    height: 320px;
  }
  .photo-feature-text h2 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 0;
  }

  .hero-logo {
    max-width: 320px;
  }
  .hero-tagline {
    font-size: 18px;
  }

  .photo-feature-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 36px; }
  .home-links-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-bg { object-position: 20% 30%; }
}

@media (max-width: 600px) {
  h2 { font-size: 24px; }
  .hero-logo { max-width: 260px; }
  .hero-tagline { font-size: 16px; }
  .hero-sub { font-size: 14px; }
  .section { padding: 64px 0; }
  .photo-feature-text h2 { font-size: 22px; }
  .page-header h1 { font-size: 28px; }
  .home-links-grid { grid-template-columns: 1fr; }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .team-photo img {
    height: 300px;
  }
}
