/* ============================================================
   ORGANIZD — inner.css
   Styles for all inner pages (service hubs, city hubs, etc.)
   Extends style.css — do not duplicate tokens defined there.
   ============================================================ */

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  margin-top: 73px; /* nav height */
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 13px;
  color: var(--text-lt);
}

.breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--coral); }

.breadcrumb-sep { color: var(--text-lt); user-select: none; }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── INNER HERO ─────────────────────────────────────────────── */
.inner-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,168,130,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,168,130,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.inner-hero .container { position: relative; z-index: 1; }

.inner-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.inner-hero h1 em { font-style: italic; color: var(--gold); }

.inner-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.inner-hero-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inner-hero-trust .stars { color: var(--gold); }

.inner-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-secondary-hero {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-secondary-hero:hover { color: var(--white); }

/* ── PRICING CALLOUT ────────────────────────────────────────── */
.pricing-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 48px 0;
}
.pricing-callout-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
}
.pricing-callout-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.pricing-callout-note { font-size: 13px; color: var(--text-mid); }

/* ── SECTION INNER ──────────────────────────────────────────── */
.inner-section { padding: 80px 0; }
.inner-section--alt { background: var(--navy); }
.inner-section--alt .section-title { color: var(--white); }
.inner-section--alt .section-label { color: var(--gold); }
.inner-section--alt p { color: rgba(255,255,255,0.6); }
.inner-section--warm { background: rgba(196,168,130,0.08); }

/* ── SERVICE CARD GRID ──────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255,107,71,0.3);
}

.service-card-icon { font-size: 20px; color: var(--coral); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; flex: 1; }
.service-card-meta { font-size: 13px; color: var(--text-lt); font-weight: 500; }
.service-card-link { font-size: 13px; color: var(--coral); font-weight: 600; margin-top: 4px; }

/* ── ORGANIZER GRID (inner pages) ───────────────────────────── */
.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ── ORGANIZER LIST (city × service rich list) ──────────────── */
.org-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.org-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  transition: box-shadow 0.25s var(--ease);
}
.org-list-card:hover { box-shadow: var(--shadow); }

.org-list-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.org-list-info { display: flex; flex-direction: column; gap: 6px; }
.org-list-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--navy); }
.org-list-location { font-size: 13px; color: var(--text-lt); }
.org-list-rating { font-size: 13px; color: var(--gold); }
.org-list-rating span { color: var(--text-mid); }
.org-list-blurb { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.org-list-price { font-size: 13px; font-weight: 600; color: var(--navy); margin-top: 4px; }

.org-list-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ── PACKAGE CARDS ──────────────────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
}
.package-duration { font-size: 13px; color: var(--text-lt); font-weight: 500; }
.package-price { font-size: 22px; font-weight: 600; color: var(--coral); }
.package-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.package-popular {
  display: inline-block;
  background: rgba(255,107,71,0.1);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,107,71,0.03); }

.faq-icon {
  font-size: 20px;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Open by default for crawlers — JS toggles open class */
.faq-item { }

/* ── CITY CROSS-LINK STRIP ──────────────────────────────────── */
.city-strip, .service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.city-chip, .service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s var(--ease);
}
.city-chip:hover, .service-chip:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
}

/* ── QUIZ CTA BLOCK ─────────────────────────────────────────── */
.quiz-cta-block {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.quiz-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,168,130,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,168,130,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.quiz-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quiz-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.quiz-cta-inner p { font-size: 16px; color: rgba(255,255,255,0.55); }

.quiz-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.quiz-cta-proof {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── PROJECT CARD GRID ──────────────────────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.project-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.project-card-img img { width: 100%; height: 100%; object-fit: cover; }

.project-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.project-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--navy); }
.project-card-meta { font-size: 12px; color: var(--text-lt); }

/* ── 2-COL LAYOUT ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── NEARBY CITIES STRIP ────────────────────────────────────── */
.nearby-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(15,27,45,0.1);
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .inner-hero { padding: 48px 0 40px; }
  .inner-section { padding: 56px 0; }
  .quiz-cta-inner { flex-direction: column; align-items: flex-start; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .org-list-card { grid-template-columns: auto 1fr; }
  .org-list-actions { flex-direction: row; align-items: center; grid-column: 1 / -1; }
  .sticky-cta { display: block; }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
}

/* ── PREFERS REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
