/* ============================================
   BLACKMOOR DISTILLERY - Heritage Page
   ============================================ */

/* ============================================
   Heritage Hero
   ============================================ */

.heritage-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background: var(--color-black);
    overflow: hidden;
}

.heritage-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.heritage-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(30%) sepia(20%);
}

.heritage-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.8) 100%);
}

.heritage-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl);
}

.heritage-hero__year {
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

/* ============================================
   Timeline Section
   ============================================ */

.timeline {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-charcoal);
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.timeline__items {
    position: relative;
    z-index: 1;
}

.timeline__item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    align-items: center;
}

.timeline__item:nth-child(even) .timeline__content {
    grid-column: 3;
    text-align: left;
}

.timeline__item:nth-child(even) .timeline__image {
    grid-column: 1;
    grid-row: 1;
}

.timeline__content {
    text-align: right;
}

.timeline__year {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.timeline__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.timeline__description {
    font-size: var(--text-base);
    color: var(--color-cream-dark);
}

.timeline__marker {
    display: flex;
    justify-content: center;
}

.timeline__marker-dot {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 50%;
    border: 4px solid var(--color-charcoal);
    box-shadow: 0 0 0 2px var(--color-gold);
}

.timeline__image {
    position: relative;
    overflow: hidden;
    line-height: 0;
    display: block;
    padding: var(--space-md);
}

.timeline__image img {
    display: block;
    width: 100%;
    height: auto;
    filter: sepia(30%);
    transition: filter var(--transition-base);
}

.timeline__image:hover img {
    filter: sepia(0%);
}

.timeline__image-frame {
    position: absolute;
    inset: var(--space-md);
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

/* ============================================
   Founder Quote Section
   ============================================ */

.founder-quote {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-black);
    text-align: center;
}

.founder-quote__ornament {
    font-family: var(--font-ornament);
    font-size: var(--text-5xl);
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.founder-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    border-left: none;
    text-align: center;
    font-size: var(--text-3xl);
}

.founder-quote blockquote::before {
    display: none;
}

.founder-quote__portrait {
    width: 120px;
    height: 120px;
    margin: var(--space-xl) auto 0;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    overflow: hidden;
}

.founder-quote__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ============================================
   Process Section
   ============================================ */

.process {
    padding: var(--space-5xl) 0;
    background: var(--color-charcoal);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.process__step {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.process__step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
}

.process__step:last-child::after {
    display: none;
}

.process__number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.process__icon {
    font-family: var(--font-ornament);
    font-size: var(--text-4xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.process__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.process__description {
    font-size: var(--text-sm);
    color: var(--color-cream-dark);
}

/* ============================================
   Awards Section
   ============================================ */

.awards {
    padding: var(--space-5xl) 0;
    background: var(--color-black);
}

.awards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.award-card {
    text-align: center;
    padding: var(--space-2xl);
    border: 1px solid var(--color-dark-grey);
    transition: all var(--transition-base);
}

.award-card:hover {
    border-color: var(--color-gold);
    background: var(--color-charcoal);
}

.award-card__icon {
    font-family: var(--font-ornament);
    font-size: var(--text-5xl);
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.award-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.award-card__year {
    font-size: var(--text-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.award-card__description {
    font-size: var(--text-sm);
    color: var(--color-cream-dark);
}

/* ============================================
   Estate Section
   ============================================ */

.estate-section {
    padding: 0;
    background: var(--color-black);
}

.estate-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.estate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.estate-image__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-4xl);
    text-align: center;
}

.estate-image__ornament {
    font-family: var(--font-ornament);
    font-size: var(--text-3xl);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.estate-image__overlay h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.estate-image__overlay p {
    font-size: var(--text-lg);
    color: var(--color-cream-dark);
    max-width: 600px;
}

/* ============================================
   Responsive
   ============================================ */

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

    .process__step::after {
        display: none;
    }

    .awards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline__line {
        left: 30px;
    }

    .timeline__item {
        grid-template-columns: 60px 1fr;
        gap: var(--space-lg);
    }

    .timeline__item .timeline__content,
    .timeline__item:nth-child(even) .timeline__content {
        grid-column: 2;
        text-align: left;
    }

    .timeline__item .timeline__image,
    .timeline__item:nth-child(even) .timeline__image {
        display: none;
    }

    .timeline__marker {
        grid-column: 1;
    }

    .heritage-hero__year {
        font-size: var(--text-5xl);
    }

    .process__grid {
        grid-template-columns: 1fr;
    }

    .awards__grid {
        grid-template-columns: 1fr;
    }

    .founder-quote blockquote {
        font-size: var(--text-xl);
    }
}
