:root {
    --bg: #1B1B1B;
    --text: #F4EEDF;
    --text-muted: rgba(244, 238, 223, 0.68);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    width: 100%;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    font-family: "Anton", sans-serif;
    font-size: clamp(4rem, 14vw, 11rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 400;
}

.tagline {
    margin-top: 1.5rem;
    font-family: "Playwrite NO", cursive;
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    line-height: 1.2;
    color: var(--text-muted);
    font-weight: 300;
}

.site-footer {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
}


.site-footer p {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: rgba(110, 106, 96, 0.72);
    margin: 0;
}

.los-dorantes {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-size: 0.92em;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: -0.02em;
    color: inherit;
}

.book-card {
    display: block;
    width: fit-content;
    margin: clamp(8rem, 14vh, 12rem) auto 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-4px);
}

.book-frame {
    width: clamp(220px, 15vw, 280px);
    aspect-ratio: 5.5 / 8.5;
    border: 1.5px solid rgba(244, 238, 223, 0.12);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.75rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(2px);
    transition: border-color 0.3s ease;
}

.book-frame:hover {
    border-color: rgba(232, 129, 2, 0.28);
}



.book-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(232, 129, 2, 0.82);
    margin: 0;
    line-height: 1.15;
}

.book-title span {
    display: block;
}

.book-title span:first-child {
    margin-bottom: 0.15em;
}



.book-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    color: rgba(244, 238, 223, 0.42);
}

.author-link {
    color: rgba(8, 94, 55, 0.82);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.author-link:hover {
    opacity: 1;
}