/** * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 * 
 * ProductFarmerHuntersV2.css
 * Cinematic Hunter-Gatherer Experience
 * Earth-rooted design with calm, spacious aesthetics
 */

/* ========================================
   EARTH-TONED COLOR PALETTE
   ======================================== */
.huntergatherer-page {
    --hg-earth: #7C6A52;
    --hg-earth-dark: #5C4A3D;
    --hg-earth-light: rgba(124, 106, 82, 0.1);
    --hg-forest: #4A5D48;
    --hg-forest-dark: #3A4D38;
    --hg-forest-light: rgba(74, 93, 72, 0.1);
    --hg-sky: #8BA4B4;
    --hg-sky-light: rgba(139, 164, 180, 0.15);
    --hg-stone: #9A9186;
    --hg-stone-light: rgba(154, 145, 134, 0.15);
    --hg-moss: #6B7D59;
    --hg-clay: #C4A77D;
    --hg-clay-light: rgba(196, 167, 125, 0.15);
    --hg-mist: #F5F3F0;
    --hg-bark: #5C4A3D;
    --hg-parchment: #FAF8F5;
    --hg-charcoal: #3D3D3D;
    
    /* Shadows */
    --hg-shadow-soft: 0 4px 24px rgba(92, 74, 61, 0.08);
    --hg-shadow-medium: 0 8px 32px rgba(92, 74, 61, 0.12);
    --hg-shadow-hover: 0 12px 40px rgba(92, 74, 61, 0.16);
    
    /* Gradients */
    --hg-gradient-earth: linear-gradient(135deg, var(--hg-earth) 0%, var(--hg-forest) 100%);
    --hg-gradient-mist: linear-gradient(180deg, var(--hg-mist) 0%, var(--hg-parchment) 100%);
    --hg-gradient-sky: linear-gradient(180deg, var(--hg-sky-light) 0%, transparent 100%);
    
    /* Typography */
    font-family: 'Source Serif Pro', Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--hg-charcoal);
}

/* ========================================
   ACCESSIBILITY - SKIP LINK
   ======================================== */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--hg-forest);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   PAGE NAVIGATION DOTS
   ======================================== */
.page-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

@media (min-width: 1200px) {
    .page-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.page-nav a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 106, 82, 0.25);
    border: 2px solid var(--hg-earth);
    transition: all 0.4s ease;
    position: relative;
}

.page-nav a:hover,
.page-nav a.active {
    background: var(--hg-earth);
    transform: scale(1.3);
}

.page-nav a::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hg-charcoal);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.page-nav a:hover::after {
    opacity: 1;
}

/* ========================================
   HERO SECTION - Cinematic Entry
   ======================================== */
.hg-hero {
    min-height: 100vh;
    background: url('/img/reports/ancestry/farmer-hunter/farmer-hunters-hero.webp') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

@media (max-width: 768px) {
    .hg-hero {
        min-height: auto;
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
}

.hg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(60, 52, 42, 0.75) 0%,
        rgba(74, 93, 72, 0.7) 50%,
        rgba(60, 52, 42, 0.85) 100%
    );
}

.hg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.hg-hero-prelude {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 0.3s forwards;
}

.hg-hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 0.6s forwards;
}

@media (max-width: 768px) {
    .hg-hero-title {
        font-size: 2.2rem;
    }
}

.hg-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 0.9s forwards;
}

@media (max-width: 768px) {
    .hg-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 36px;
    }
}

.hg-hero-time-depth {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 1.2s forwards;
}

.hg-time-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--hg-clay);
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-time-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hg-hero-cta {
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 1.5s forwards;
}

.hg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--hg-forest);
    color: white;
    padding: 18px 36px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(74, 93, 72, 0.4);
}

.hg-btn-primary:hover {
    background: var(--hg-forest-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(74, 93, 72, 0.5);
    color: white;
    text-decoration: none;
}

@media (max-width: 576px) {
    .hg-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

.hg-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 36px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-left: 1rem;
}

.hg-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .hg-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        margin-left: 0;
        margin-top: 1rem;
    }
}

.hg-hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 1.8s forwards;
}

.hg-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
}

.hg-hero-trust-item i {
    color: var(--hg-clay);
    font-size: 1rem;
}

.hg-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeInSlow 1.2s ease-out 2.1s forwards;
}

.hg-hero-scroll-indicator i {
    animation: gentleBounce 2.5s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   SECTION STYLING - Spacious & Calm
   ======================================== */
.hg-section {
    padding: 120px 0;
}

.hg-section-mist {
    background: var(--hg-gradient-mist);
}

.hg-section-earth {
    background: linear-gradient(180deg, var(--hg-earth-light) 0%, var(--hg-forest-light) 100%);
}

@media (max-width: 768px) {
    .hg-section {
        padding: 80px 0;
    }
}

.hg-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.hg-section-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .hg-section-title {
        font-size: 1.9rem;
    }
}

.hg-section-lead {
    font-size: 1.15rem;
    color: var(--hg-stone);
    line-height: 1.9;
}

/* ========================================
   SECTION 2: WHO THEY WERE - Pillars
   ======================================== */
.hg-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 72px;
}

@media (max-width: 992px) {
    .hg-pillars {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hg-pillar {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
    transition: all 0.4s ease;
}

.hg-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--hg-shadow-hover);
}

.hg-pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--hg-gradient-earth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.hg-pillar-icon i {
    font-size: 2rem;
    color: white;
}

.hg-pillar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-pillar p {
    color: var(--hg-stone);
    line-height: 1.8;
    margin: 0;
}

.hg-reflection {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hg-reflection blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--hg-earth);
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   SECTION 3: LIFE BEFORE - Grid Layout
   ======================================== */
.hg-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .hg-life-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hg-life-block {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
    transition: all 0.4s ease;
}

.hg-life-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--hg-shadow-medium);
}

.hg-life-icon {
    width: 60px;
    height: 60px;
    background: var(--hg-forest-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hg-life-icon i {
    font-size: 1.5rem;
    color: var(--hg-forest);
}

.hg-life-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-life-block p {
    color: var(--hg-stone);
    line-height: 1.8;
    margin: 0;
}

/* Timeline Bridge */
.hg-timeline-bridge {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.hg-timeline-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--hg-gradient-earth);
    border-radius: 2px;
}

.hg-timeline-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hg-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hg-marker-date {
    background: var(--hg-earth);
    color: white;
    padding: 10px 18px;
    border-radius: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.hg-marker-label {
    font-size: 0.9rem;
    color: var(--hg-stone);
    max-width: 120px;
}

@media (max-width: 768px) {
    .hg-timeline-bridge {
        display: none;
    }
}

/* ========================================
   SECTION 4: GENETIC LEGACY
   ======================================== */
.hg-legacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.hg-legacy-intro {
    text-align: center;
    margin-bottom: 56px;
}

.hg-legacy-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--hg-charcoal);
}

.hg-legacy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .hg-legacy-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hg-legacy-card {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
    transition: all 0.4s ease;
    text-align: center;
}

.hg-legacy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hg-shadow-medium);
}

.hg-legacy-card-icon {
    width: 64px;
    height: 64px;
    background: var(--hg-clay-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hg-legacy-card-icon i {
    font-size: 1.5rem;
    color: var(--hg-earth);
}

.hg-legacy-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-legacy-card p {
    color: var(--hg-stone);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.hg-legacy-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--hg-sky-light);
    padding: 24px 28px;
    border-radius: 12px;
    border-left: 4px solid var(--hg-sky);
}

.hg-legacy-note i {
    color: var(--hg-sky);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.hg-legacy-note p {
    margin: 0;
    color: var(--hg-charcoal);
    line-height: 1.7;
}

/* ========================================
   SECTION 5: WHAT REPORT REVEALS
   ======================================== */
.hg-reveals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 64px;
}

@media (max-width: 768px) {
    .hg-reveals-grid {
        grid-template-columns: 1fr;
    }
}

.hg-reveal-item {
    display: flex;
    flex-direction: column;
}

.hg-reveal-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hg-clay);
    line-height: 1;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-reveal-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-reveal-item p {
    color: var(--hg-stone);
    line-height: 1.8;
    margin: 0;
}

.hg-quote-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hg-quote-block blockquote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--hg-earth);
    line-height: 1.7;
    border: none;
    padding: 32px 40px;
    margin: 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
    position: relative;
}

.hg-quote-block blockquote::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 4rem;
    color: var(--hg-clay-light);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ========================================
   SECTION 6: FROM FORAGING TO FARMING
   ======================================== */
.hg-shared-narrative {
    max-width: 900px;
    margin: 0 auto;
}

.hg-shared-content {
    margin-bottom: 56px;
}

.hg-shared-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--hg-charcoal);
    margin-bottom: 24px;
}

.hg-shared-content p:last-child {
    margin-bottom: 0;
}

.hg-shared-visual {
    display: flex;
    justify-content: center;
}

.hg-ancestry-blend {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 56px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
}

@media (max-width: 768px) {
    .hg-ancestry-blend {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
}

.hg-blend-side,
.hg-blend-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hg-blend-side i,
.hg-blend-center i {
    font-size: 2.5rem;
}

.hg-blend-hunter i {
    color: var(--hg-forest);
}

.hg-blend-farmer i {
    color: var(--hg-clay);
}

.hg-blend-center i {
    color: var(--hg-earth);
}

.hg-blend-side span,
.hg-blend-center span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--hg-stone);
}

.hg-blend-center span {
    color: var(--hg-earth-dark);
}

/* ========================================
   SECTION 7: REPORT EXPERIENCE
   ======================================== */
.hg-experience-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .hg-experience-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hg-experience-features {
        grid-template-columns: 1fr;
    }
}

.hg-experience-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
    transition: all 0.4s ease;
}

.hg-experience-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--hg-shadow-medium);
}

.hg-experience-icon {
    width: 70px;
    height: 70px;
    background: var(--hg-gradient-earth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hg-experience-icon i {
    font-size: 1.7rem;
    color: white;
}

.hg-experience-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-experience-item p {
    color: var(--hg-stone);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Sample Preview */
.hg-sample-preview {
    margin-bottom: 80px;
}

.hg-sample-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    text-align: center;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-sample-subheading {
    text-align: center;
    color: var(--hg-stone);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.hg-samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 576px) {
    .hg-samples-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

.hg-sample-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--hg-shadow-soft);
    transition: all 0.4s ease;
    text-decoration: none;
}

.hg-sample-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hg-shadow-hover);
    text-decoration: none;
}

.hg-sample-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hg-sample-card:hover img {
    transform: scale(1.05);
}

.hg-sample-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.hg-sample-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
}

.hg-sample-info p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Map Section */
.hg-map-section {
    max-width: 1000px;
    margin: 0 auto;
}

.hg-map-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    text-align: center;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-map-legend {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hg-legend-items {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.hg-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: var(--hg-stone);
}

.hg-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.hg-legend-dot.hunter {
    background: var(--hg-earth);
}

.hg-legend-dot.farmer {
    background: var(--hg-forest);
}

.hg-legend-dot.islander {
    background: var(--hg-stone);
}

.hg-map-loading {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 16px;
}

.hg-map-loading .spinner-border {
    color: var(--hg-earth);
}

.hg-map-loading p {
    margin-top: 16px;
    color: var(--hg-stone);
}

#map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hg-shadow-medium);
}

.hg-map-error {
    text-align: center;
    padding: 40px;
    background: var(--hg-clay-light);
    border-radius: 16px;
}

.hg-map-error i {
    font-size: 2rem;
    color: var(--hg-clay);
    margin-bottom: 16px;
}

.hg-map-error p {
    color: var(--hg-stone);
    margin: 0;
}

/* ========================================
   SECTION 8: SCIENCE
   ======================================== */
.hg-science-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .hg-science-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hg-science-stat {
    text-align: center;
    padding: 36px 28px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--hg-shadow-soft);
}

.hg-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hg-forest);
    line-height: 1;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-science-stat p {
    color: var(--hg-stone);
    margin: 0;
    font-size: 0.9rem;
}

.hg-methodology {
    max-width: 900px;
    margin: 0 auto 48px;
}

.hg-methodology h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    text-align: center;
    margin-bottom: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 768px) {
    .hg-method-grid {
        grid-template-columns: 1fr;
    }
}

.hg-method-item {
    text-align: center;
    padding: 28px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--hg-shadow-soft);
}

.hg-method-item i {
    font-size: 2rem;
    color: var(--hg-earth);
    margin-bottom: 16px;
}

.hg-method-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-method-item p {
    color: var(--hg-stone);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.hg-science-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 32px;
    background: var(--hg-stone-light);
    border-radius: 12px;
}

.hg-science-note p {
    color: var(--hg-charcoal);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   SECTION 9: PRICING (Cinematic partial)
   Full-width breakout so dark section extends edge-to-edge on light page
   ======================================== */
.hg-pricing-section {
    --rpc-bg: var(--hg-charcoal);
    --rpc-overlay: rgba(61, 61, 61, 0.75);
    --rpc-text-primary: var(--hg-parchment);
    --rpc-text-secondary: rgba(250, 248, 245, 0.9);
    --rpc-text-muted: rgba(250, 248, 245, 0.6);
    --rpc-accent: var(--hg-forest);
    --rpc-accent-dim: var(--hg-forest-dark);
    --rpc-cta-bg: var(--hg-forest);
    --rpc-cta-text: #ffffff;
    --rpc-cta-hover: var(--hg-forest-dark);
    --rpc-border: rgba(250, 248, 245, 0.12);
    --rpc-font-display: 'Source Serif Pro', Georgia, 'Times New Roman', serif;
    --rpc-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Full viewport width breakout for cinematic edge-to-edge dark block */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Ensure background image and overlay render with earth/forest theme */
.hg-pricing-section .rpc-pricing-bg img {
    opacity: 0.28;
    filter: grayscale(30%) sepia(10%);
}

.hg-pricing-section .rpc-pricing-overlay {
    background:
        radial-gradient(ellipse at center, transparent 0%, var(--rpc-bg) 70%),
        linear-gradient(0deg, var(--rpc-bg) 0%, transparent 40%);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.hg-final-cta {
    background: var(--hg-gradient-earth);
    padding: 120px 0;
}

.hg-final-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hg-final-prelude {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.hg-final-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hg-final-title {
        font-size: 2.2rem;
    }
}

.hg-final-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hg-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--hg-earth-dark);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hg-final-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--hg-earth-dark);
    text-decoration: none;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.hg-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.hg-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--hg-shadow-soft);
    overflow: hidden;
    transition: all 0.4s ease;
}

.hg-faq-item:hover {
    box-shadow: var(--hg-shadow-medium);
}

.hg-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.hg-faq-question:hover {
    background: var(--hg-mist);
}

.hg-faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hg-earth-dark);
    margin: 0;
    padding-right: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hg-faq-question i {
    color: var(--hg-forest);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.hg-faq-item.active .hg-faq-question i {
    transform: rotate(180deg);
}

.hg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hg-faq-item.active .hg-faq-answer {
    max-height: 500px;
}

.hg-faq-answer-content {
    padding: 0 28px 28px;
    color: var(--hg-stone);
    line-height: 1.8;
}

.hg-faq-contact {
    text-align: center;
    margin-top: 48px;
}

.hg-faq-contact p {
    color: var(--hg-stone);
    margin-bottom: 12px;
}

.hg-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hg-forest);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hg-contact-link:hover {
    color: var(--hg-forest-dark);
    text-decoration: none;
}

/* ========================================
   STICKY CTA BAR
   ======================================== */
.hg-sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #2A2A2A !important;
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%) !important;
    color: white;
    padding: 16px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: bottom 0.5s ease;
    opacity: 1;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-sticky-cta.visible {
    bottom: 0;
}

.hg-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hg-sticky-text {
    display: flex;
    flex-direction: column;
}

.hg-sticky-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFFFFF !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hg-sticky-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hg-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4A5D48 !important;
    background: var(--hg-forest) !important;
    color: #FFFFFF !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hg-sticky-btn:hover {
    background: #5A6D58 !important;
    background: var(--hg-forest-dark) !important;
    color: #FFFFFF !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hg-sticky-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .hg-sticky-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS - Slow & Natural
   ======================================== */
@keyframes fadeInSlow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for lists */
.hg-pillars .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.hg-pillars .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.hg-life-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.hg-life-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.hg-legacy-cards .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.hg-legacy-cards .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.hg-reveals-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.hg-reveals-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.hg-reveals-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.hg-experience-features .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.hg-experience-features .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.hg-experience-features .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.hg-science-stats .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.hg-science-stats .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
    
    .hg-hero-prelude,
    .hg-hero-title,
    .hg-hero-subtitle,
    .hg-hero-time-depth,
    .hg-hero-cta,
    .hg-hero-trust,
    .hg-hero-scroll-indicator {
        opacity: 1;
        animation: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .hg-sticky-cta,
    .page-nav,
    .hg-hero-cta,
    .hg-hero-scroll-indicator,
    .hg-btn-primary,
    .hg-pricing-cta,
    .hg-final-btn,
    .hg-map-section {
        display: none !important;
    }
    
    .hg-hero {
        min-height: auto;
        padding: 60px 0;
        background: var(--hg-mist) !important;
        color: var(--hg-charcoal) !important;
    }
    
    .hg-hero-overlay {
        display: none;
    }
    
    .hg-hero-title,
    .hg-hero-subtitle,
    .hg-hero-prelude {
        color: var(--hg-charcoal) !important;
    }
    
    .hg-section {
        padding: 40px 0;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */
.fh2-related-products {
    padding: 60px 0;
    background: var(--hg-mist);
}

.fh2-related-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--hg-charcoal);
    margin-bottom: 40px;
    font-weight: 700;
}

.fh2-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 575px) {
    .fh2-related-grid {
        grid-template-columns: 1fr;
    }
}

.fh2-related-card {
    background: var(--hg-parchment);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--hg-shadow-medium);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--hg-stone-light);
}

.fh2-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hg-shadow-hover);
}

.fh2-related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--hg-stone-light);
}

.fh2-related-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fh2-related-content h4 {
    font-size: 1.2rem;
    color: var(--hg-charcoal);
    margin-bottom: 8px;
    font-weight: 600;
}

.fh2-related-content p {
    font-size: 0.95rem;
    color: var(--hg-bark);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.fh2-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hg-earth);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: auto;
}

.fh2-related-link:hover {
    color: var(--hg-forest);
    text-decoration: underline;
}

.fh2-related-link i {
    transition: transform 0.2s ease;
}

.fh2-related-link:hover i {
    transform: translateX(4px);
}
