/* ==========================================================================
   Lee's Custom Tailoring — Georgia Studio Page Additions
   Loaded after style.css. Contains ONLY rules specific to georgia.html;
   the approved Homepage, Wedding, Difficult Fit, and Fit Correction pages
   are not affected by this file.
   ========================================================================== */

/* -------------------- 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 georgia.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 other pages' 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;
}

/* -------------------- Section 2: Opening / Location Status -------------------- */
.opening-status {
  padding: 120px 0;
  background-color: var(--color-white);
}

.opening-status-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.opening-status-text p {
  color: var(--color-charcoal-light);
  margin-bottom: 18px;
}

.opening-status-text p:last-child {
  margin-bottom: 0;
}

.opening-status-location {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 24px;
  border: 1px solid var(--color-gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}

/* -------------------- Shared prominent statement -------------------- */
.georgia-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);
}

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

/* -------------------- Section 4: Why Work With a Master Tailor -------------------- */
.why-master-tailor {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.why-master-tailor-intro {
  text-align: center;
  color: var(--color-charcoal-light);
}

.dot-list {
  list-style: none;
  max-width: 640px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

/* -------------------- Section 5: Who the Georgia Studio Is For -------------------- */
.who-its-for {
  padding: 120px 0;
  background-color: var(--color-white);
}

/* -------------------- Section 6: Georgia Service Area -------------------- */
.service-area {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.service-area-note {
  text-align: center;
  color: var(--color-charcoal-light);
  font-style: italic;
  margin-top: 34px;
}

/* -------------------- Section 8: What to Expect -------------------- */
.what-to-expect {
  padding: 120px 0;
  background-color: var(--color-white);
}

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

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

.expect-step h3 {
  font-size: 1.05rem;
  margin: 4px 0 8px;
}

.expect-step p {
  color: var(--color-charcoal-light);
  font-size: 0.9rem;
  max-width: 240px;
  margin: 0 auto;
}

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

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

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

.georgia-final-cta p {
  color: var(--color-warm-gray-light);
  max-width: 560px;
  margin: 0 auto 38px;
}

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

@media (max-width: 768px) {
  .opening-status,
  .why-master-tailor,
  .who-its-for,
  .service-area,
  .what-to-expect {
    padding: 80px 0;
  }

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

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

  .expect-grid {
    margin-top: 40px;
  }
}

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

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