/* ============================================================
   FightTown — main stylesheet
   Dark warm-black theme with a flame-orange accent system.
   ============================================================ */

:root {
  --bg: #150D08;
  --bg-raised: #1E1209;
  --text: #FBF0E6;
  --text-soft: #F0E3D3;
  --flame: #F25C05;
  --honey: #F7B267;
  --char: #5C2A10;
  --char-deep: #2A0C02;
  --hairline: #3A2413;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-family: var(--font-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--flame);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background-color: var(--char);
  color: #FBF0E6;
}

.btn-primary:hover {
  background-color: var(--char-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

.btn-outline:hover {
  background-color: var(--char);
  color: #FBF0E6;
}

.btn-dark {
  background-color: var(--bg);
  color: #FBF0E6;
}

.btn-dark:hover {
  background-color: var(--char-deep);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* ---------- Full-band hero (flame orange) ---------- */

.fullband-hero {
  background-color: var(--flame);
  color: var(--char-deep);
}

.fullband-hero .container {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-embed-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--char);
  line-height: 1;
}

.brand-wordmark:hover {
  text-decoration: none;
  color: var(--char-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: var(--char);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FBF0E6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--char);
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
}

.nav-link:hover {
  text-decoration: none;
  color: var(--char-deep);
  border-bottom-color: var(--char);
}

.nav-link.active {
  border-bottom-color: var(--char);
  color: var(--char-deep);
}

/* Hero content */

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 24px 96px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background-color: var(--honey);
  color: var(--char-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--char);
  max-width: 860px;
  margin: 0 auto 26px;
}

.hero-subcopy {
  font-size: 19px;
  line-height: 1.6;
  color: var(--char-deep);
  max-width: 720px;
  margin: 0 auto 36px;
}

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

/* ---------- Section heading (shared) ---------- */

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  color: var(--honey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-soft);
}

/* ---------- Collage section ---------- */

.collage {
  padding: 92px 0;
  background-color: var(--bg);
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 26px;
}

.collage-card {
  border-radius: 10px;
  padding: 34px;
}

.collage-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.collage-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.collage-card p {
  font-size: 16px;
  line-height: 1.6;
}

.collage-card--large {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  background-color: var(--flame);
  color: var(--char-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collage-card--large h3 {
  color: var(--char);
  font-size: 38px;
  max-width: 460px;
}

.collage-card--large p {
  color: var(--char-deep);
  font-size: 17px;
}

.collage-card--wide {
  grid-column: 4 / 7;
  grid-row: 1 / 2;
  background-color: var(--honey);
  color: var(--char-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collage-card--wide h3 {
  color: var(--char);
}

.collage-card--wide p {
  color: var(--char-deep);
}

.collage-card--small {
  grid-column: span 1;
  grid-row: auto;
  background-color: var(--char);
  color: var(--text);
}

.collage-card--small h4 {
  color: #FBF0E6;
}

.collage-card--small p {
  color: var(--honey);
  font-size: 15px;
}

/* ---------- Numbers row ---------- */

.numbers-row {
  background-color: var(--char);
  border-top: 4px solid var(--flame);
  border-bottom: 4px solid var(--flame);
  padding: 60px 24px;
}

.numbers-lead {
  max-width: 1120px;
  margin: 0 auto 34px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #FBF0E6;
}

.numbers-row-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.number-item {
  text-align: center;
  padding: 10px 28px;
  border-right: 1px solid var(--hairline);
}

.number-item:last-child {
  border-right: none;
}

.number-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: #FBF0E6;
  margin-bottom: 10px;
}

.number-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey);
}

/* ---------- Coaches / leadership ---------- */

.coaches {
  padding: 92px 0;
  background-color: var(--bg);
}

.coach-list {
  max-width: 900px;
  margin: 0 auto;
}

.coach-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hairline);
}

.coach-row:first-child {
  border-top: 1px solid var(--hairline);
}

.coach-body {
  flex: 1;
}

.coach-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 10px;
}

.coach-text {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 720px;
}

.coach-marker {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-color: var(--flame);
  border-radius: 2px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background-color: var(--flame);
  padding: 84px 24px;
  text-align: center;
}

.cta-band .container {
  max-width: 760px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.05;
  color: var(--char);
  margin-bottom: 18px;
}

.cta-subcopy {
  font-size: 18px;
  color: var(--char-deep);
  margin-bottom: 30px;
}

/* ---------- Footer (link row) ---------- */

.linkrow-footer {
  background-color: var(--bg);
  text-align: center;
  padding: 56px 24px 48px;
  border-top: 3px solid var(--flame);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 26px;
}

.footer-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--flame);
  text-decoration: none;
}

.footer-legal {
  font-size: 14px;
  color: var(--honey);
  line-height: 1.8;
}

.footer-legal a {
  color: var(--honey);
}

.footer-legal a:hover {
  color: var(--flame);
  text-decoration: none;
}

/* ---------- Scroll reveal ---------- */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-headline {
    font-size: 46px;
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collage-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .collage-card--wide {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .collage-card--small {
    grid-column: span 1;
    grid-row: auto;
  }

  .numbers-row-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .number-item:nth-child(2) {
    border-right: none;
  }

  .number-item {
    border-right: 1px solid var(--hairline);
  }
}

@media (max-width: 720px) {
  .hero-embed-nav {
    padding: 16px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--char);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    z-index: 20;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    color: #FBF0E6;
    padding: 12px 20px;
    border-bottom: none;
  }

  .nav-link:hover {
    color: var(--honey);
    border-bottom: none;
  }

  .nav-link.active {
    color: var(--flame);
    border-bottom: none;
  }

  .hero-content {
    padding: 48px 20px 72px;
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-subcopy {
    font-size: 17px;
  }

  .collage {
    padding: 64px 0;
  }

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

  .collage-card--large,
  .collage-card--wide,
  .collage-card--small {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .collage-card--large h3 {
    font-size: 32px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .coaches {
    padding: 64px 0;
  }

  .coach-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .coach-marker {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }

  .cta-band {
    padding: 60px 24px;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .footer-links {
    gap: 18px;
  }
}

/* ============================================================
   Secondary pages (services + contact)
   ============================================================ */

/* ---------- Page hero (orange band, embedded nav already handled) ---------- */

.page-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 76px;
  text-align: center;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  color: var(--char);
  max-width: 820px;
  margin: 0 auto 22px;
}

.page-subcopy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--char-deep);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Services list ---------- */

.services-list {
  padding: 92px 0;
  background-color: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background-color: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--flame);
  border-radius: 8px;
  padding: 32px;
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--honey);
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ---------- Process overview ---------- */

.process {
  padding: 92px 0;
  background-color: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process-step {
  background-color: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 26px;
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--flame);
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ---------- Contact section ---------- */

.contact-section {
  padding: 92px 0;
  background-color: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2,
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-form-intro {
  color: var(--text-soft);
  margin-bottom: 26px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  color: var(--honey);
  font-size: 14px;
  font-weight: 600;
}

.form-input,
.form-textarea {
  background-color: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--text);
  font-size: 16px;
  font-family: var(--font-body);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8A6A4A;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--flame);
}

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

.form-submit {
  align-self: flex-start;
}

.contact-info {
  background-color: var(--char);
  border-top: 4px solid var(--flame);
  border-radius: 8px;
  padding: 32px;
}

.contact-info h2 {
  color: #FBF0E6;
}

.info-block {
  margin-bottom: 24px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-label {
  display: block;
  color: var(--honey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-value {
  color: #FBF0E6;
  font-size: 16px;
  line-height: 1.6;
}

.info-value a {
  color: var(--flame);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  color: #FBF0E6;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.hours-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background-color: var(--flame);
  border-radius: 1px;
}

/* ---------- FAQ ---------- */

.faq-section {
  padding: 92px 0;
  background-color: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: var(--bg-raised);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--honey);
  border-bottom: 2px solid var(--honey);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-soft);
  font-size: 16px;
}

/* ---------- Secondary pages responsive ---------- */

@media (max-width: 960px) {
  .page-title {
    font-size: 42px;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
