:root {
    --fondo-principal: #F7F4ED;
    --texto-oscuro: #1A1A1A;
    --color-acento: #0E2F22;
    --color-enlace: #7A5B3E;
    --muted: #6b6b6b;
    --gold-1: #d4af37;
    --gold-2: #b68b2a;
    --gold-3: #f1d06b;
    --radius: 14px
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--fondo-principal);
    color: var(--texto-oscuro);
    font-family: "EB Garamond", Garamond, Palatino, serif;
    line-height: 1.6
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 4px 0
}

.brand {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px
}

.brand__logo {
    height: 100px;
    width: auto;
    display: block
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 16px
}

.nav__link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: all .3s ease
}

.nav__link:hover {
    color: var(--color-acento);
    text-decoration: underline;
    text-decoration-color: var(--gold-1)
}

.nav__link.is-active {
    text-decoration: underline
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 20px
}

.main {
    padding: 40px 0
}

.hero {
    padding: 40px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06)
}

.hero__title {
    margin: 0 0 8px;
    font-size: 2.4rem;
    font-family: "Cinzel", serif;
    letter-spacing: .5px;
    color: var(--texto-oscuro)
}

.hero__subtitle {
    margin: 0;
    color: var(--muted)
}

.section {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

.bio h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: #1a1a1a;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
    border-bottom: none;
}

.bio h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #D4AF37, #B68B2A);
}

.page-header {
    border-bottom: 2px solid var(--gold-1);
    padding-bottom: 20px;
    margin-top: 40px;
    position: relative
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold-2)
}

.page-header h1 {
    margin: 0;
    font-size: 2rem;
    font-family: "Cinzel", serif;
    position: relative;
    display: inline-block
}

.page-header p {
    margin: 8px 0 0;
    color: var(--muted)
}

.footer {
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    color: var(--muted)
}

@media (max-width:880px) {

    .section,
    .grid {
        grid-template-columns: 1fr
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
        padding: 12px;
        border-radius: 12px
    }

    .nav.open {
        display: flex;
        flex-direction: column
    }

    .menu-toggle {
        display: block
    }
}

.header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%) skewX(-12deg);
    opacity: .0
}

.header.is-shining::after {
    animation: shineSweep 1.2s ease
}

@keyframes shineSweep {
    0% {
        transform: translateX(-120%) skewX(-12deg);
        opacity: .0
    }

    35% {
        opacity: .6
    }

    50% {
        opacity: .8
    }

    100% {
        transform: translateX(120%) skewX(-12deg);
        opacity: .0
    }
}

button,
input,
textarea,
select {
    font: inherit
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #ffffff;
    color: var(--texto-oscuro)
}

label {
    display: block;
    margin: 8px 0 6px;
    font-weight: 600
}

.form {
    max-width: 720px
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .16)
}

.status {
    margin-top: 12px;
    color: var(--muted)
}

blockquote {
    margin: 24px 0;
    padding: 8px 16px;
    border-left: 4px solid var(--color-acento);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--texto-oscuro)
}

.quotes {
    margin-top: 32px
}

.quotes__slider {
    position: relative;
    overflow: hidden
}

.quote {
    display: none;
    font-size: 1.4rem;
    font-style: italic
}

.quote.is-active {
    display: block
}

.quotes__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px
}

.quotes__prev,
.quotes__next {
    border: 0;
    background: #fff;
    color: var(--texto-oscuro);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all .3s ease
}

.quotes__prev:hover,
.quotes__next:hover {
    color: var(--color-acento)
}

.quotes__dots {
    display: flex;
    gap: 8px
}

.quotes__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .2);
    cursor: pointer
}

.quotes__dots button.active {
    background: var(--color-acento)
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: var(--texto-oscuro);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto
}

body.menu-open {
    overflow: hidden
}

/* Books Section - Modern Design */
.books {
    display: grid;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease-out
}

.book {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(182, 139, 42, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none
}

.book:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3)
}

.book:hover::before {
    opacity: 1
}

.book__cover {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease
}

.book__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease
}

.book:hover .book__cover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2)
}

.book:hover .book__cover::after {
    opacity: 1
}

.book__cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px
}

.book__info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.book__title {
    font-family: "Cinzel", serif;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    position: relative
}

.book__title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-1), transparent);
    opacity: 0.7
}

.book__title a {
    color: var(--color-acento);
    text-decoration: none;
    transition: color 0.3s ease
}

.book__title a:hover {
    color: var(--gold-2)
}

.book__desc {
    color: var(--texto-oscuro);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 8px 0 0;
    opacity: 0.9
}

@media (max-width:880px) {
    .book {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }

    .book__cover {
        max-width: 300px;
        margin: 0 auto
    }
}

@media (max-width:600px) {
    .book__cover {
        max-width: 240px
    }
}

/* Bio Styles - Modern Design */
.bio-card {
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 48px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-top: 32px;
    animation: fadeInUp 0.6s ease-out
}

.bio {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 0
}

.bio h2 {
    font-family: "Cinzel", serif;
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-acento);
    position: relative;
    padding-left: 16px
}

.bio h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-1), transparent)
}

.bio h2:first-of-type {
    border-top: 0;
    padding-top: 0
}

.bio h2:first-of-type::before {
    display: none
}

.bio h3 {
    margin: 16px 0 6px;
    color: var(--color-acento);
    font-size: 1.1rem
}

.bio p {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 24px;
    text-align: justify;
}

/* Drop Cap for the first paragraph */
.bio p:first-of-type::first-letter {
    float: left;
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 0.85;
    padding-right: 12px;
    padding-top: 8px;
    color: #D4AF37;
    font-weight: 700;
}

.bio ul {
    margin: 8px 0 16px;
    padding-left: 22px;
    list-style: disc
}

.bio li {
    margin: 6px 0;
    line-height: 1.6
}

.bio a {
    color: var(--color-enlace);
    text-decoration: none;
    border-bottom: 1px dashed rgba(122, 91, 62, .4);
    transition: all .2s ease
}

.bio a:hover {
    color: var(--color-acento);
    border-bottom-color: var(--color-acento)
}

/* Bio Hero Section - Modern Design */
.bio-hero {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8DCC8
}

.bio-hero__image {
    width: 600px;
    height: 600px;
    position: relative;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden
}

.bio-hero__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(14, 47, 34, 0.85), rgba(14, 47, 34, 0.3) 70%, transparent)
}

.bio-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.bio-hero__quote-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 750px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(182, 139, 42, 0.98));
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-radius: 8px
}

/* Intro image before biography */
/* Intro image before biography */
.bio-intro-container {
    text-align: center;
    margin: 32px 0 48px;
    position: relative;
}

.bio-intro-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid #D4AF37;
    padding: 4px;
    background-color: #fff;
    box-shadow:
        0 0 0 2px #B68B2A,
        0 10px 25px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.3s ease;
}

.bio-intro-image:hover {
    transform: translateY(-4px);
}


.bio-hero__quote {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px
}

.quote-mark {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    line-height: 1;
    font-family: "Cinzel", serif;
    color: rgba(26, 26, 26, 0.3);
    font-weight: 700
}

.bio-hero__quote p {
    margin: 0;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: #1a1a1a;
    font-family: "EB Garamond", serif;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:880px) {
    .bio-hero {
        height: 500px
    }

    .bio-hero__image {
        width: 500px;
        height: 500px
    }

    .bio-hero__quote-box {
        width: 90%;
        max-width: 500px;
        padding: 24px 28px;
        bottom: 30px
    }

    .quote-mark {
        font-size: 3.5rem;
        top: -5px
    }

    .bio-hero__quote p {
        font-size: 1.3rem
    }
}

@media (max-width:600px) {
    .bio-hero {
        height: 400px
    }

    .bio-hero__image {
        width: 400px;
        height: 400px
    }

    .bio-hero__quote-box {
        width: 92%;
        padding: 20px 24px;
        bottom: 20px
    }

    .bio-hero__quote p {
        font-size: 1.1rem
    }

    .quote-mark {
        font-size: 3rem
    }
}

/* Poems Section - Elegant Design */
.poems {
    display: grid;
    gap: 48px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.poem-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden
}

.poem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-1), var(--gold-2));
    opacity: 0.6
}

.poem-card__title {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    color: var(--color-acento);
    margin: 0 0 32px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative
}

.poem-card__title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-1), transparent)
}

.poem-card__content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--texto-oscuro);
    text-align: center
}

.poem-card__content p {
    margin: 0 0 24px;
    font-style: italic
}

.poem-card__content p:last-child {
    margin-bottom: 0
}

.poem-card__author {
    font-size: 1.1rem;
    color: var(--gold-2);
    font-style: italic;
    text-align: right;
    margin: 32px 0 0;
    font-weight: 600;
    letter-spacing: 0.3px
}

@media (max-width:880px) {
    .poems {
        max-width: 100%
    }

    .poem-card {
        padding: 32px 24px
    }

    .poem-card__title {
        font-size: 1.5rem
    }

    .poem-card__content {
        font-size: 1.05rem
    }
}

/* Load More Button */
.poem-card--hidden {
    display: none
}

.load-more-container {
    text-align: center;
    margin: 48px 0 32px
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(182, 139, 42, 0.2));
    color: var(--color-acento);
    border: 2px solid var(--gold-1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08)
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    border-color: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12)
}

/* News Section Styles */
.news-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    text-align: center;
    margin-bottom: 48px;
}

.news-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--color-primario);
    margin-bottom: 16px;
}

.news-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    font-style: italic;
}

.news-article {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    color: var(--color-acento);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.article-intro,
.article-chapter,
.article-conclusion {
    margin-bottom: 40px;
}

.news-article h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--color-primario);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-1);
    padding-bottom: 8px;
    display: inline-block;
}

.news-article h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin: 24px 0 12px;
}

.news-article p {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.news-article ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.news-article li {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 24px 0;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
}

.news-table caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-primario);
    text-align: left;
}

.news-table th,
.news-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.news-table th {
    background-color: var(--color-primario);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.news-table tr:hover {
    background-color: #fcfcfc;
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ref-card {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-1);
}

.ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-acento);
}

.ref-source {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--color-primario);
    margin-bottom: 8px;
    font-weight: 700;
}

.ref-title {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .news-article {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .news-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MAGAZINE LAYOUT STYLES - Modern News Design
   ======================================== */

/* Magazine Layout Container */
.magazine-layout {
    background: var(--fondo-principal);
    padding-bottom: 60px;
}

/* Hero Magazine Section */
.hero-magazine {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    margin-bottom: 60px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-magazine__image {
    position: relative;
    overflow: hidden;
}

.hero-magazine__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-magazine:hover .hero-magazine__image img {
    transform: scale(1.05);
}

.hero-magazine__content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.hero-magazine__category {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-left: 3px solid var(--gold-1);
    width: fit-content;
}

.hero-magazine__title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0 0 24px;
    font-weight: 700;
}

.hero-magazine__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 32px;
}

.hero-magazine__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-acento);
    text-decoration: none;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero-magazine__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.05);
}

/* Featured Biography Section */
.featured-bio {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-bio__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-bio__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 6px solid #D4AF37;
    background: #fff;
    padding: 8px;
    transition: all 0.4s ease;
}

.featured-bio__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.featured-bio__image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    border-color: #B68B2A;
}

.featured-bio__image:hover::after {
    opacity: 1;
}

.featured-bio__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.featured-bio__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-bio__label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-left: 3px solid var(--gold-1);
    width: fit-content;
}

.featured-bio__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0;
    font-weight: 700;
}

.featured-bio__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    text-align: justify;
}

.featured-bio__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-acento), #0a1f16);
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(14, 47, 34, 0.3);
    margin-top: 8px;
}

.featured-bio__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 47, 34, 0.4);
    background: linear-gradient(135deg, #0a1f16, var(--color-acento));
    gap: 12px;
}

@media (max-width: 1024px) {
    .featured-bio__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .featured-bio__image {
        max-width: 350px;
        margin: 0 auto;
    }

    .featured-bio__label,
    .featured-bio__link {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-bio__excerpt {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-bio {
        padding: 60px 0;
    }

    .featured-bio__title {
        font-size: 2rem;
    }

    .featured-bio__excerpt {
        font-size: 1.05rem;
    }

    .featured-bio__image {
        max-width: 280px;
    }
}

/* Featured Quotes Section */
.featured-quotes {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.quote-card__image {
    height: 200px;
    overflow: hidden;
}

.quote-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quote-card:hover .quote-card__image img {
    transform: scale(1.1);
}

.quote-card__content {
    padding: 28px 24px;
}

.quote-card__text {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--texto-oscuro);
    margin: 0 0 16px;
    border-left: none;
    padding-left: 0;
}

.quote-card__author {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gold-2);
    font-weight: 600;
}

/* Content Grid Section */
.content-grid {
    padding: 60px 0;
}

.content-grid .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.content-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.content-card--large {
    grid-column: span 2;
}

.content-card--accent {
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    border-left: 4px solid var(--gold-1);
}

.content-card--highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(182, 139, 42, 0.03));
}

.content-card__image {
    height: 220px;
    overflow: hidden;
}

.content-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-card:hover .content-card__image img {
    transform: scale(1.08);
}

.content-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card__category {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 12px;
}

.content-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--color-acento);
    margin: 0 0 16px;
    font-weight: 600;
}

.content-card__excerpt {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 20px;
    flex: 1;
}

.content-card__link {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-acento);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.content-card__link:hover {
    color: var(--gold-2);
    gap: 10px;
}

.content-card__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.content-card__list li {
    margin: 12px 0;
}

.content-card__list a {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    color: var(--color-enlace);
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 91, 62, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.content-card__list a:hover {
    color: var(--color-acento);
    border-bottom-color: var(--color-acento);
}

/* Full Article Section */
.full-article {
    padding: 80px 0;
    background: #fff;
    margin-top: 60px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.article-category {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.15));
    border-radius: 4px;
}

.article-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-acento);
    margin: 0 0 20px;
    font-weight: 700;
}

.article-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-style: italic;
    margin: 0;
}

.article-body {
    font-family: 'EB Garamond', serif;
}

.article-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--color-acento);
    margin: 60px 0 24px;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--color-acento);
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-body p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    text-align: justify;
}

.article-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(182, 139, 42, 0.05));
    border-left: 4px solid var(--gold-1);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 6px;
}

.article-callout p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-callout strong {
    color: var(--color-acento);
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'EB Garamond', serif;
    background: #fff;
}

.article-table caption {
    caption-side: top;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px;
    text-align: left;
    color: var(--color-acento);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(182, 139, 42, 0.05));
}

.article-table th,
.article-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-table thead th {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #1a1a1a;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.article-table tbody tr {
    transition: background 0.2s ease;
}

.article-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.article-table tbody td {
    font-size: 1.05rem;
}

.article-references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.article-references h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--color-acento);
    margin: 0 0 32px;
}

.references-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ref-link {
    display: block;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ref-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--color-acento);
}

.ref-source {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 8px;
}

.ref-title {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-magazine {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-magazine__image {
        height: 400px;
    }

    .hero-magazine__content {
        padding: 40px;
    }

    .hero-magazine__title {
        font-size: 2.2rem;
    }

    .quote-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .content-card--large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-magazine__content {
        padding: 32px 24px;
    }

    .hero-magazine__title {
        font-size: 1.8rem;
    }

    .hero-magazine__excerpt {
        font-size: 1.1rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .full-article {
        padding: 40px 0;
    }

    .references-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT FORM STYLES
   ======================================== */

.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Image Column */
.contact-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.contact-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 28px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--color-acento);
    margin: 0 0 16px;
}

.contact-info p {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 8px 0;
}

.contact-info strong {
    color: var(--color-acento);
    font-weight: 600;
}

/* Contact Form Column */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper label {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-acento);
    margin: 16px 0 8px;
    display: block;
}

.contact-form-wrapper label:first-of-type {
    margin-top: 0;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: var(--texto-oscuro);
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold-1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 140px;
}

/* Privacy Checkbox */
.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(182, 139, 42, 0.03));
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold-1);
}

.privacy-checkbox label {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.privacy-checkbox a {
    color: var(--color-acento);
    text-decoration: none;
    border-bottom: 1px solid var(--color-acento);
    transition: all 0.2s ease;
    font-weight: 600;
}

.privacy-checkbox a:hover {
    color: var(--gold-2);
    border-bottom-color: var(--gold-2);
}

/* Form Actions */
.contact-form-wrapper .actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.contact-form-wrapper .status {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    padding: 12px;
    border-radius: 6px;
}

.contact-form-wrapper .status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.contact-form-wrapper .status.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

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

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-image img {
        height: 280px;
    }

    .privacy-checkbox {
        padding: 16px;
    }
}