/* ============================================================
   JCC FREEDOM COMPANY, LLC — Site Stylesheet
   Dark theme: deep warm-black + flag-red accents
   ============================================================ */

:root {
  --bg: #160C0C;
  --bg-soft: #1F1212;
  --text: #F7EDEB;
  --text-dim: #D9C4C0;
  --flag-red: #D62828;
  --pale-red: #F0A8A0;
  --deep-red: #5C1712;
  --deep-red-soft: #47120E;
  --line: #3A1B19;
  --dark-ink: #160C0C;
  --white: #F7EDEB;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  background-color: #160C0C;
  color: #F7EDEB;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F7EDEB;
}

/* ============================================================
   BURGER-FIRST NAVIGATION
   ============================================================ */

.burger-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background-color: #160C0C;
  border-bottom: 1px solid #2A1412;
}

.brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #D62828;
  text-transform: uppercase;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid #D62828;
  border-radius: 4px;
  cursor: pointer;
}

.burger .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #D62828;
  border-radius: 2px;
}

/* Full-screen overlay menu */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #D62828;
  color: #160C0C;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: 32px;
  background: transparent;
  border: 2px solid #160C0C;
  color: #160C0C;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  width: min(560px, 88vw);
}

.menu-nav a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #160C0C;
  padding: 22px 0;
  border-bottom: 1px solid #160C0C;
}

.menu-nav a:last-child {
  border-bottom: none;
}

.menu-nav a:hover {
  background-color: #160C0C;
  color: #F7EDEB;
}

/* ============================================================
   HERO — centered stack with star motif
   ============================================================ */

.star-hero {
  text-align: center;
  padding: 110px 24px 90px;
  background:
    radial-gradient(circle at 50% 0%, #2A1210 0%, #160C0C 62%);
}

.eyebrow {
  display: inline-block;
  background-color: #D62828;
  color: #F0A8A0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  color: #F7EDEB;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #D9C4C0;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 34px;
  border-radius: 6px;
  font-size: 15px;
  transition: transform 0.15s ease;
}

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

.btn-primary {
  background-color: #D62828;
  color: #F7EDEB;
  border: 2px solid #D62828;
}

.btn-outline {
  background-color: transparent;
  color: #F0A8A0;
  border: 2px solid #F0A8A0;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.star-item {
  text-align: center;
}

.star-shape {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-red {
  background-color: #D62828;
}

.star-pale {
  background-color: #F0A8A0;
}

.star-deep {
  background-color: #5C1712;
}

.star-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F7EDEB;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-kicker {
  color: #F0A8A0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  padding: 100px 24px;
  background-color: #160C0C;
}

.timeline-track {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #D62828;
}

.timeline-item {
  position: relative;
  padding-bottom: 68px;
  padding-left: 44px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #D62828;
  border: 4px solid #160C0C;
  box-shadow: 0 0 0 3px #D62828;
}

.timeline-year {
  font-size: 40px;
  font-weight: 900;
  color: #D62828;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #F7EDEB;
}

.timeline-text {
  max-width: 640px;
  color: #D9C4C0;
}

/* ============================================================
   NUMBERS ROW
   ============================================================ */

.numbers-row {
  background-color: #5C1712;
  color: #F7EDEB;
  padding: 70px 24px;
}

.numbers-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.numbers-lead {
  text-align: center;
  color: #F0A8A0;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid #F7EDEB;
}

.stat:last-child {
  border-right: none;
}

.stat .num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #F7EDEB;
  line-height: 1.05;
}

.stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F0A8A0;
}

/* ============================================================
   VALUE BLOCKS
   ============================================================ */

.value-blocks {
  padding: 100px 24px;
  background-color: #160C0C;
}

.value-blocks-inner {
  max-width: 860px;
  margin: 0 auto;
}

.value-block {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid #2A1412;
}

.value-block:last-child {
  border-bottom: none;
}

.value-marker {
  flex: 0 0 22px;
  height: 22px;
  background-color: #D62828;
  margin-top: 7px;
}

.value-body h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #F7EDEB;
}

.value-body p {
  color: #D9C4C0;
  max-width: 720px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background-color: #D62828;
  color: #160C0C;
  padding: 90px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #160C0C;
  margin-bottom: 18px;
}

.cta-band p {
  color: #160C0C;
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 18px;
}

.btn-dark {
  display: inline-block;
  background-color: #160C0C;
  color: #F7EDEB;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 15px;
  border: 2px solid #160C0C;
  transition: transform 0.15s ease;
}

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

/* ============================================================
   WIDE DOUBLE-COLUMN FOOTER
   ============================================================ */

.wide-footer {
  background-color: #100808;
  border-top: 1px solid #2A1412;
  padding: 70px 32px 0;
}

.footer-main {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1 1 60%;
  min-width: 280px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #D62828;
  text-transform: uppercase;
}

.footer-desc {
  margin-top: 18px;
  color: #D9C4C0;
  max-width: 560px;
}

.footer-contact {
  margin-top: 18px;
  color: #F0A8A0;
  font-weight: 600;
}

.footer-right {
  flex: 1 1 40%;
  display: flex;
  gap: 60px;
  min-width: 220px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col a {
  color: #F7EDEB;
  font-weight: 600;
}

.footer-col a:hover {
  color: #D62828;
}

.footer-legal {
  margin-top: 56px;
  border-top: 1px solid #2A1412;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #D9C4C0;
}

.footer-legal a {
  color: #F0A8A0;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #D62828;
}

/* ============================================================
   PAGE HERO (services / contact secondary pages)
   ============================================================ */

.page-hero {
  text-align: center;
  padding: 84px 24px 60px;
  background: radial-gradient(circle at 50% 0%, #2A1210 0%, #160C0C 60%);
  border-bottom: 1px solid #2A1412;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 22px;
}

.page-hero p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #D9C4C0;
  font-size: 18px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-grid {
  padding: 90px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 40px 0;
  border-bottom: 1px solid #2A1412;
}

.service-card:last-child {
  border-bottom: none;
}

.service-num {
  color: #D62828;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.service-card h2 {
  font-size: 28px;
  margin: 12px 0 16px;
}

.service-card p {
  color: #D9C4C0;
  max-width: 900px;
}

.process {
  background-color: #1F1212;
  padding: 90px 24px;
  border-top: 1px solid #2A1412;
  border-bottom: 1px solid #2A1412;
}

.process-inner {
  max-width: 860px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #2A1412;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step .step-num {
  flex: 0 0 54px;
  height: 54px;
  background-color: #D62828;
  color: #F7EDEB;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.process-step h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.process-step p {
  color: #D9C4C0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 360px;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.info-block {
  padding: 22px 0;
  border-bottom: 1px solid #2A1412;
}

.info-block .info-label {
  color: #F0A8A0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.info-block p {
  color: #F7EDEB;
}

.info-block a {
  color: #F7EDEB;
}

.info-block a:hover {
  color: #D62828;
}

.contact-form-wrap {
  flex: 1 1 400px;
}

.contact-form {
  background-color: #1F1212;
  border: 1px solid #2A1412;
  border-radius: 8px;
  padding: 36px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #F7EDEB;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #160C0C;
  border: 1px solid #3A1B19;
  border-radius: 6px;
  color: #F7EDEB;
  font-size: 16px;
  padding: 14px;
  margin-bottom: 20px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D62828;
}

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

.form-note {
  font-size: 13px;
  color: #D9C4C0;
  margin-top: 14px;
}

.faq-section {
  padding: 90px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #2A1412;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #F7EDEB;
  font-size: 19px;
  font-weight: 700;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon {
  color: #D62828;
  font-size: 24px;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: #D9C4C0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 800px) {
  .burger-nav {
    padding: 16px 20px;
  }

  .brand {
    font-size: 19px;
  }

  .menu-nav a {
    font-size: 32px;
    padding: 18px 0;
  }

  .stars-row {
    gap: 40px;
  }

  .stat {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #F7EDEB;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-right {
    gap: 40px;
  }
}
