/* ==========================================================================
   Lee's Custom Tailoring — Master Tailor Fit Correction Page Additions
   Loaded after style.css. Contains ONLY rules specific to fit-correction.html;
   the approved Homepage, Wedding, and Difficult Fit pages are not affected.
   ========================================================================== */

/* -------------------- Wider hamburger-nav range for the 10-item nav --------------------
   The shared 900px breakpoint in style.css was tuned for a 9-item nav.
   This page's nav now has 10 items (includes "Knowledge"), so it needs a
   wider range before the horizontal nav has room. Scoped to this page
   only via fit-correction.css — style.css itself is not modified. */
@media (min-width: 901px) and (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-off-white);
    border-bottom: 1px solid var(--color-warm-gray-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .primary-nav.open { max-height: 400px; }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 10px 32px 26px; }
  .primary-nav li { border-bottom: 1px solid var(--color-warm-gray-light); }
  .primary-nav li:last-child { border-bottom: none; }
  .nav-link { display: block; padding: 14px 0; }
}

/* -------------------- Hero lead copy --------------------
   Same treatment as the Wedding/Difficult Fit hero lead paragraph,
   duplicated here so this page's CSS stays self-contained. */
.hero-lead {
  font-size: 1.15rem;
  color: var(--color-warm-gray-light);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* -------------------- Shared prominent statement --------------------
   Used for the three "core message" lines on this page. */
.correction-statement {
  margin-top: 50px;
  padding: 46px 20px;
  text-align: center;
  border-top: 1px solid var(--color-gold-soft);
  border-bottom: 1px solid var(--color-gold-soft);
}

.correction-statement p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-black);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
}

/* -------------------- Section 2: Not Ordinary Alterations -------------------- */
.not-alterations {
  padding: 110px 0 0;
  background-color: var(--color-white);
}

.not-alterations .about-inner {
  padding-bottom: 90px;
}

.not-alterations-text p {
  color: var(--color-charcoal-light);
}

.not-alterations .correction-statement {
  padding-bottom: 40px;
}

.alterations-policy-note {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 70px;
  border-top: 1px solid var(--color-gold-soft);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
  line-height: 1.6;
}

/* -------------------- Section 3: Common Fit Problems -------------------- */
.common-problems {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.fit-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  margin-top: 50px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.fit-problem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--color-warm-gray-light);
  background-color: var(--color-white);
}

.fit-problem-item span:last-child {
  color: var(--color-charcoal);
  font-size: 0.95rem;
}

/* -------------------- Section 4: What Master Tailor Jin Lee Evaluates -------------------- */
.what-evaluate {
  padding: 120px 0;
  background-color: var(--color-white);
}

.what-evaluate-intro {
  text-align: center;
  color: var(--color-charcoal-light);
}

.dot-list-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  max-width: 640px;
  margin: 40px auto 0;
}

.dot-list-2col li {
  position: relative;
  padding-left: 20px;
  color: var(--color-charcoal-light);
  font-size: 0.98rem;
}

.dot-list-2col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

/* -------------------- Section 5: Fit Correction Process -------------------- */
.correction-process {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.fit-process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  margin-top: 60px;
}

.fit-process-step {
  min-width: 0;
  text-align: center;
}

.fit-process-step h3 {
  font-size: 1.02rem;
  margin: 4px 0 8px;
}

.fit-process-step p {
  color: var(--color-charcoal-light);
  font-size: 0.88rem;
  max-width: 230px;
  margin: 0 auto;
}

.fit-process-note {
  margin-top: 60px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-charcoal);
}

/* -------------------- Section 6: When Correction Makes Sense -------------------- */
.makes-sense {
  padding: 120px 0;
  background-color: var(--color-white);
}

.who-list {
  list-style: none;
  max-width: 640px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.who-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-charcoal-light);
  font-size: 1rem;
  line-height: 1.5;
}

.who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

/* -------------------- Section 7: When Not to Correct -------------------- */
.not-correct {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.not-correct .dot-list-2col {
  margin-top: 44px;
}

/* -------------------- Section 8: Custom Garment vs Fit Correction -------------------- */
.garment-paths {
  padding: 120px 0;
  background-color: var(--color-white);
}

.garment-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 920px;
  margin: 56px auto 0;
}

.garment-path-card {
  background-color: var(--color-off-white);
  border: 1px solid var(--color-warm-gray-light);
  padding: 56px 44px;
  text-align: center;
}

.garment-path-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.garment-path-card p {
  color: var(--color-charcoal-light);
  font-size: 1rem;
}

/* -------------------- Section 10: Final CTA -------------------- */
.fit-final-cta {
  padding: 130px 0;
  background-color: var(--color-charcoal);
  color: var(--color-off-white);
  text-align: center;
}

.fit-final-cta h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  max-width: 780px;
  margin: 0 auto 38px;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .fit-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .garment-path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .not-alterations,
  .common-problems,
  .what-evaluate,
  .correction-process,
  .makes-sense,
  .not-correct,
  .garment-paths {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .not-alterations {
    padding-top: 80px;
  }

  .not-alterations .about-inner {
    padding-bottom: 60px;
  }

  .not-alterations .correction-statement {
    padding-bottom: 30px;
  }

  .alterations-policy-note {
    padding-bottom: 50px;
  }

  .fit-final-cta {
    padding: 90px 0;
  }

  .fit-problem-grid {
    margin-top: 34px;
  }

  .correction-statement {
    margin-top: 40px;
    padding-top: 34px;
  }

  .garment-path-grid {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .fit-problem-grid {
    grid-template-columns: 1fr;
  }

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

  .dot-list-2col {
    grid-template-columns: 1fr;
  }

  .fit-final-cta h2 {
    font-size: 1.6rem;
  }
}
