/* === Eterna Femme — Start Here (symptom-first entry point) === */
/* Owns: /start-here styles. Does NOT own shared nav/footer — those live in main.css. */

/* === Hero === */
.start-here-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 140px clamp(20px, 5vw, 60px) var(--section-padding);
  position: relative;
  overflow: hidden;
  background: var(--color-bg, #FAF7F4);
}

.start-here-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(139, 94, 107, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.start-here-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.start-here-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.start-here-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: 1.8rem;
}

.start-here-subhead {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.start-here-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.start-here-glossary-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.start-here-glossary-note a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.start-here-glossary-note a:hover {
  border-bottom-color: var(--color-accent-light, var(--color-accent));
}

/* === Grid (symptom categories) === */
.start-here-grid-section {
  padding: var(--section-padding) clamp(20px, 5vw, 60px);
  background: var(--color-bg, #FAF7F4);
}

.start-here-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.start-here-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid rgba(139, 94, 107, 0.12);
  border-radius: 6px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.start-here-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(139, 94, 107, 0.18);
  border-color: rgba(139, 94, 107, 0.28);
}

.start-here-card-num {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.start-here-card-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 0.9rem;
}

.start-here-card-body {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.start-here-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: auto;
}

/* === Otherwise block (out-of-card fallback) === */
.start-here-otherwise {
  padding: var(--section-padding) clamp(20px, 5vw, 60px) calc(var(--section-padding) * 1.4);
  background: var(--color-bg, #FAF7F4);
  border-top: 1px solid rgba(139, 94, 107, 0.10);
}

.start-here-otherwise-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.start-here-otherwise-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text-primary);
  margin: 0.6rem 0 1.4rem;
}

.start-here-otherwise-inner p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 1.6rem;
}

.start-here-otherwise-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Common questions (FAQPage) === */
.start-here-faq-section {
  background: var(--color-surface);
  padding: var(--section-padding) clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(139, 94, 107, 0.10);
}

.start-here-faq-header {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  text-align: center;
}

.start-here-faq-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-text-primary);
  margin: 0 0 1.4rem;
}

.start-here-faq-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.start-here-faq-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  overflow: hidden;
}

.start-here-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.start-here-faq-item:last-child {
  border-bottom: none;
}

.start-here-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.4;
  transition: color 0.2s;
}

.start-here-faq-question:hover {
  color: var(--color-accent);
}

.start-here-faq-question[aria-expanded="true"] {
  color: var(--color-accent-dark);
}

.start-here-faq-chevron {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.start-here-faq-chevron::before,
.start-here-faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.start-here-faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.start-here-faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

.start-here-faq-question[aria-expanded="true"] .start-here-faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.start-here-faq-question[aria-expanded="true"] .start-here-faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.start-here-faq-answer {
  padding: 0 0 28px;
  max-width: 720px;
}

.start-here-faq-answer[hidden] {
  display: none;
}

.start-here-faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.start-here-faq-answer p:last-child {
  margin-bottom: 0;
}

.start-here-faq-answer a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.start-here-faq-answer a:hover {
  border-bottom-color: var(--color-accent-light);
}

@media (max-width: 640px) {
  .start-here-faq-question {
    padding: 22px 0;
    font-size: 0.97rem;
  }
  .start-here-faq-answer {
    padding-bottom: 22px;
  }
}
