/* Página /nuestra-historia */
.hist-hero {
    position: relative;
    min-height: 60vh;
    background: #1d1815 center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}
.hist-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,16,12,.45) 0%, rgba(20,16,12,.85) 100%);
}
.hist-hero__inner {
    position: relative;
    text-align: center;
    max-width: 820px;
}
.hist-hero__kicker {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    color: var(--gold-soft, #c9a86b);
    margin: 0 0 1rem;
}
.hist-hero__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 1.2rem;
}
.hist-hero__lede {
    font-size: 1.1rem;
    opacity: .9;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.hist-block { padding: 4.5rem 0; }
.hist-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.hist-block--reverse .hist-block__grid {
    direction: rtl;
}
.hist-block--reverse .hist-block__grid > * { direction: ltr; }
.hist-block__media {
    position: relative;
    min-height: 420px;
    border-radius: 14px;
    background: #d8cfba center/cover no-repeat;
    box-shadow: 0 30px 60px rgba(40,30,15,.18);
    overflow: hidden;
}
.hist-block__media--alt { min-height: 460px; }
.hist-block__caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    background: rgba(20,16,12,.78);
    color: #fff;
    padding: .5rem .9rem;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hist-block__text h2 {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: .4rem 0 1rem;
}
.hist-block__body {
    color: #4a4036;
    line-height: 1.7;
    font-size: 1.02rem;
}
.hist-block__body p { margin: 0 0 1rem; }
.hist-block__body strong { color: #1d1815; }

.hist-stallions {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem 1.2rem;
}
.hist-stallions li {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #1d1815;
    font-weight: 500;
}
.hist-stallions span {
    color: var(--gold-soft, #b69159);
    font-size: 1.1rem;
}

.hist-timeline { padding: 5rem 0; color: #fff; }
.hist-timeline__list {
    list-style: none;
    counter-reset: hist;
    margin: 3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 2rem;
    position: relative;
}
.hist-timeline__list::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(255,255,255,.18);
}
.hist-timeline__list li {
    text-align: center;
    position: relative;
    padding-top: 0;
}
.hist-timeline__year {
    display: block;
    font-family: var(--font-display, Georgia, serif);
    color: var(--gold-soft, #c9a86b);
    font-size: 1.6rem;
    margin-bottom: .8rem;
}
.hist-timeline__dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-soft, #c9a86b);
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 6px rgba(201,168,107,.18);
    position: relative;
    z-index: 1;
}
.hist-timeline__text {
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
}

.hist-today { background: #faf7f1; }
.hist-today__inner {
    max-width: 780px;
    text-align: center;
}
.hist-today__inner h2 {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: .4rem 0 1rem;
}
.hist-today__inner .section__divider { margin-left: auto; margin-right: auto; }
.hist-today__media {
    margin: 1.6rem auto 0; padding: 0;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px -25px rgba(47,10,21,.35);
}
.hist-today__media img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.hist-today__body {
    margin-top: 1.5rem;
    color: #4a4036;
    line-height: 1.75;
    text-align: left;
    font-size: 1.02rem;
}
.hist-today__body p { margin: 0 0 1rem; }

.hist-gallery { padding: 4rem 0; background: #fff; }
.hist-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: .75rem;
}
.hist-gallery__grid figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.hist-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    background: #ece4d3;
}
.hist-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hist-gallery__item:hover img { transform: scale(1.05); }

.hist-cta {
    background: #1d1815;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.hist-cta__inner { max-width: 640px; margin: 0 auto; }
.hist-cta h2 {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: .6rem 0 1rem;
    color: #fff;
}
.hist-cta p {
    color: rgba(255,255,255,.78);
    margin: 0 0 1.8rem;
}

@media (max-width: 900px) {
    .hist-block__grid { grid-template-columns: 1fr; gap: 2rem; }
    .hist-block--reverse .hist-block__grid { direction: ltr; }
    .hist-block__media { min-height: 320px; }
    .hist-timeline__list {
        grid-template-columns: 1fr 1fr;
    }
    .hist-timeline__list::before { display: none; }
    .hist-gallery__grid { grid-template-columns: 1fr 1fr; }
    .hist-gallery__grid figure:first-child { grid-column: auto; grid-row: auto; }
}
@media (max-width: 540px) {
    .hist-timeline__list { grid-template-columns: 1fr; }
    .hist-stallions { grid-template-columns: 1fr; }
}
