/* ========================================
   Lessons With Mitch — Styles
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #F5F0E8;
  background: #0D0D0D;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-headline--center {
  text-align: center;
}

.accent {
  color: #D4582A;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  text-align: center;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background: #D4582A;
  color: #F5F0E8;
}

.btn--outline {
  background: transparent;
  color: #F5F0E8;
  border: 1px solid rgba(245, 240, 232, 0.5);
}

.btn--outline:hover {
  border-color: #F5F0E8;
}

.btn--full {
  width: 100%;
}

/* --- Section Base --- */
.section {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.section--dark-black {
  background: #0D0D0D;
  color: #F5F0E8;
}

.section--dark-navy {
  background: #1A1A2E;
  color: #F5F0E8;
}

.section--light-cream {
  background: #F5F0E8;
  color: #0D0D0D;
}

.section--light-tan {
  background: #E8E0D0;
  color: #0D0D0D;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HERO
   ======================================== */
.section--hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  background: #0D0D0D;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 13, 13, 0.65), rgba(13, 13, 13, 0.8));
}

.hero__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  z-index: 2;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__headline {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.25rem;
}

.hero__subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__mobile-image {
  display: none;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.25;
  z-index: 1;
}

/* ========================================
   SPLIT LAYOUTS
   ======================================== */
.split {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.split__image,
.split__text {
  flex: 1;
}

.split--70-30 .split__text {
  flex: 7;
}

.split--70-30 .split__image {
  flex: 3;
}

/* Image placeholder */
.image-placeholder {
  width: 100%;
  min-height: 320px;
  background: rgba(128, 128, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.5;
}

/* Real images */
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 480px;
}

/* --- Section text styling --- */
.split__text p {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.section--light-cream .split__text p,
.section--light-tan .split__text p {
  color: #0D0D0D;
}

/* ========================================
   SECTION 3: SKILL GRID
   ======================================== */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 1.5rem 0;
}

.skill-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4582A;
  margin-bottom: 0.75rem;
}

.skill-group ul li {
  font-size: 0.9375rem;
  opacity: 0.85;
  padding: 2px 0;
}

.section-footer-note {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.5;
  margin-top: 1.5rem;
}

/* ========================================
   SECTION 4: PULL QUOTE
   ======================================== */
.pull-quote {
  margin-top: 1.5rem;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid #D4582A;
  font-style: italic;
  font-size: 0.9375rem;
  opacity: 0.75;
}

/* ========================================
   SECTION 5: PERSONA CARDS
   ======================================== */
.section-intro {
  font-size: 1.0625rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.persona-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.persona-card {
  flex: 1;
  min-width: 160px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  padding: 20px;
}

.persona-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #D4582A;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.persona-card p {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* ========================================
   SECTION 6: PRICING
   ======================================== */
.section--pricing {
  text-align: center;
}

.pricing-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-subhead {
  font-size: 0.9375rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.pricing-card {
  background: #0D0D0D;
  color: #F5F0E8;
  padding: 2.5rem 2rem;
  text-align: center;
}

.pricing-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #D4582A;
  line-height: 1;
}

.pricing-card__unit {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-top: 4px;
}

.pricing-card__alt-price {
  font-size: 0.8125rem;
  opacity: 0.4;
  margin-top: 0.5rem;
}

.pricing-card__checklist {
  text-align: left;
  margin: 1.75rem auto;
  max-width: 300px;
}

.pricing-card__checklist li {
  padding: 4px 0;
  font-size: 0.9375rem;
  opacity: 0.8;
  position: relative;
  padding-left: 1.75rem;
}

.pricing-card__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D4582A;
  font-weight: bold;
}

.pricing-card__divider {
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  margin: 1.5rem 0;
}

.pricing-card__trial-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D4582A;
  margin-bottom: 0.375rem;
}

.pricing-card__trial-text {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.pricing-card .btn {
  margin-top: 0;
}

.pricing-location {
  font-size: 0.8125rem;
  opacity: 0.5;
  margin-top: 1.25rem;
}

/* ========================================
   SECTION 7: CONTACT FORM
   ======================================== */
.form-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.form-subhead {
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  opacity: 0.7;
}

.form-field .required {
  color: #D4582A;
}

.form-field .optional {
  opacity: 0.4;
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  color: #F5F0E8;
  padding: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #D4582A;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5F0E8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Validation error state */
.form-field--error input,
.form-field--error select,
.form-field--error textarea {
  border-color: #D4582A;
}

.form-field__error {
  font-size: 0.75rem;
  color: #D4582A;
  margin-top: 4px;
  display: none;
}

.form-field--error .form-field__error {
  display: block;
}

/* Conditional fields */
.conditional-fields {
  border: 1px solid rgba(245, 240, 232, 0.08);
  padding: 16px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conditional-fields[hidden] {
  display: none;
}

.conditional-fields__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4582A;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  opacity: 0.7;
}

.form-email-fallback {
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.4;
  margin-top: 1.5rem;
}

.form-email-fallback a {
  color: #D4582A;
  opacity: 1;
}

.contact-form .btn {
  margin-top: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  padding: 24px 40px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  opacity: 0.4;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a:hover {
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE — TABLET (768px)
   ======================================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 24px;
  }

  .split,
  .split--70-30 {
    flex-direction: column;
    gap: 32px;
  }

  .split--70-30 .split__text,
  .split--70-30 .split__image {
    flex: 1;
  }

  .split__text {
    text-align: center;
  }

  .skill-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .skill-group ul li {
    text-align: center;
  }

  .pull-quote {
    text-align: left;
  }

  .section-headline {
    text-align: center;
  }

  .persona-cards {
    flex-direction: column;
  }

  .section--hero {
    min-height: auto;
    padding: 0;
    justify-content: flex-start;
  }

  .hero__overlay {
    display: none;
  }

  .hero__nav {
    padding: 16px 24px;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    position: relative;
    background: #0D0D0D;
    z-index: 2;
  }

  .hero__content {
    max-width: 100%;
    padding: 48px 24px 32px;
    position: relative;
    z-index: 1;
  }

  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__subhead {
    font-size: 0.9375rem;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    padding: 16px 24px;
  }

  .hero__mobile-image {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero__mobile-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero__scroll-hint {
    display: none;
  }

  .image-placeholder {
    min-height: 220px;
  }

  .form-row {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ========================================
   RESPONSIVE — MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
  .section {
    padding: 48px 16px;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__nav {
    font-size: 0.625rem;
    padding: 10px 12px;
  }

  .section-headline {
    font-size: 1.75rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .pricing-card__price {
    font-size: 3rem;
  }
}

/* ========================================
   BOOKINGS PAGE — COMPACT HERO
   ======================================== */
.section--hero-compact {
  min-height: 75vh;
  justify-content: flex-start;
  padding-top: 120px;
}

.section--hero-compact .hero__overlay {
  background: url('assets/images/shows-hero.jpg') center bottom/cover no-repeat;
}

.section--hero-compact .hero__overlay::after {
  background: linear-gradient(rgba(13, 13, 13, 0.4), rgba(13, 13, 13, 0.6));
}

.hero__nav-back {
  font-size: 0.8125rem;
  opacity: 0.4;
  border: 1px solid rgba(245, 240, 232, 0.2);
  padding: 6px 14px;
  transition: opacity 0.2s;
}

.hero__nav-back:hover {
  opacity: 0.7;
}

/* ========================================
   BOOKINGS PAGE — SERVICE CARDS
   ======================================== */
.service-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-card {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  border: 1px solid rgba(13, 13, 13, 0.12);
  padding: 24px;
  text-align: center;
}

.section--light-tan .service-card {
  border-color: rgba(13, 13, 13, 0.12);
}

/* Bookings "What You Get" section with background image */
.section--shows-options {
  background: url('assets/images/shows-options.jpg') center/cover no-repeat;
  position: relative;
  color: #0D0D0D;
}

.section--shows-options::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 224, 208, 0.55);
}

.section--shows-options > div {
  position: relative;
  z-index: 1;
}

.section--shows-options .section-headline {
  color: #0D0D0D;
  text-shadow: 0 1px 3px rgba(232, 224, 208, 0.6);
}

.section--shows-options .service-card {
  background: rgba(245, 240, 232, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(245, 240, 232, 0.6);
}

.section--shows-options .service-card p {
  opacity: 0.85;
}

.service-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D4582A;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.8125rem;
  opacity: 0.7;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
  }
}

/* ========================================
   GRAIN TEXTURE OVERLAY
   ======================================== */
.section--dark-black::after,
.section--dark-navy::after,
.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- FAQ Section --- */
.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}

.faq-question {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: #0D0D0D;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #D4582A;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: #333;
  line-height: 1.7;
}

.faq-answer a {
  color: #D4582A;
  text-decoration: underline;
}
