/* ===== HOMEPAGE LONG-FORM SECTIONS ===== */
/* Price guide, launch zone, safety credentials, morning timeline and the
   long-form intro body. All previously written but unrendered. */

/* --- Shared prose column --- */
.longform-prose {
    max-width: 820px;
    margin: 32px auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.longform-prose p {
    margin-bottom: 20px;
}

.longform-prose p:last-child {
    margin-bottom: 0;
}

.longform-prose strong {
    color: var(--color-primary-darker);
    font-weight: 600;
}

/* --- Long-form intro --- */
.about-longform {
    background: var(--color-bg);
    padding: var(--section-padding);
}

/* --- Morning timeline --- */
.timeline-section {
    background: var(--color-bg-warm);
    padding: var(--section-padding);
}

.morning-timeline {
    position: relative;
    max-width: 820px;
    margin: 44px auto 0;
    padding-left: 8px;
}

/* The spine the markers sit on. */
.morning-timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, rgba(232, 115, 74, 0.5), rgba(143, 174, 139, 0.5));
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 30px;
}

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

.timeline-marker {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-darker));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 0 0 5px var(--color-bg-warm);
}

.timeline-body h3 {
    margin: 6px 0 8px;
    font-size: 1.15rem;
    color: var(--color-text);
}

.timeline-body p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* --- Price guide --- */
.price-guide-section {
    background: var(--color-bg);
    padding: var(--section-padding);
}

.price-guide-section .longform-prose h3 {
    margin: 8px 0 16px;
    font-size: 1.3rem;
    color: var(--color-text);
    text-align: center;
}

/* --- Launch zone --- */
.launch-zone-section {
    background: var(--color-bg-warm);
    padding: var(--section-padding);
}

.launch-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 36px auto 0;
}

.launch-fact {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-primary);
}

.launch-fact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary-darker);
    font-size: 0.95rem;
}

.launch-fact p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.launch-map {
    max-width: 1000px;
    margin: 36px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    line-height: 0;
}

.launch-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* --- Safety & credentials --- */
.safety-section {
    background: var(--color-green-bg);
    padding: var(--section-padding);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.safety-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.safety-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.safety-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--color-text);
}

.safety-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.safety-summary {
    max-width: 860px;
    margin: 34px auto 0;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* --- Rating summary line under the reviews header --- */
.rating-summary {
    margin-top: 10px;
    font-weight: 600;
    color: var(--color-primary-darker);
}

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

@media (max-width: 640px) {
    .safety-grid { grid-template-columns: 1fr; }
    .launch-facts { grid-template-columns: 1fr; }
    .longform-prose { font-size: 1rem; }
    .morning-timeline::before { left: 21px; }
    .timeline-marker { width: 34px; height: 34px; font-size: 0.85rem; }
    .timeline-step { gap: 16px; }
}
