:root {
    --bg: #0a0a08;
    --bg-soft: #13110e;
    --panel: #1b1814;
    --cream: #f3eadc;
    --muted: #beb2a2;
    --bronze: #9a6035;
    --bronze-light: #d39b62;
    --gold: #d3b36c;
    --border: rgba(243, 234, 220, 0.13);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 12px clamp(20px, 5vw, 80px);
    background: rgba(10,10,8,.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.brand strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.05rem;
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: .72rem;
}

.main-navigation {
    display: flex;
    gap: 30px;
    color: var(--muted);
    font-size: .92rem;
}

.main-navigation a:hover { color: var(--bronze-light); }

.menu-button {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid var(--border);
    background: transparent;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 7px;
    background: var(--cream);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    align-items: center;
    gap: clamp(45px, 8vw, 105px);
    min-height: calc(100vh - 82px);
    overflow: hidden;
    padding: 90px clamp(22px, 8vw, 125px);
    background:
        radial-gradient(circle at 75% 35%, rgba(154,96,53,.25), transparent 30%),
        radial-gradient(circle at 12% 20%, rgba(211,179,108,.08), transparent 24%),
        linear-gradient(135deg, #11100d, #070705);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
}

.hero-copy, .hero-art { position: relative; z-index: 2; }

.eyebrow {
    margin: 0 0 12px;
    color: var(--bronze-light);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3.6rem, 7.7vw, 7.4rem);
    letter-spacing: -.035em;
}

.hero-description {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 23px;
    border: 1px solid var(--bronze);
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button.primary { background: var(--bronze); color: white; }
.button.secondary { background: rgba(255,255,255,.025); }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 46px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-stats strong {
    display: block;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.65rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: .75rem;
}

.hero-art {
    min-height: 600px;
    display: grid;
    place-items: center;
}

.logo-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 70%);
    opacity: .90;
}

.featured-cover {
    width: min(410px, 85%);
    padding: 13px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: transform .25s ease;
}

.featured-cover:hover { transform: rotate(0) translateY(-8px); }

.feature-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px clamp(22px, 8vw, 125px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(154,96,53,.16), transparent 60%);
}

.feature-strip h2 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.feature-strip p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
}

.feature-strip > a {
    flex: 0 0 auto;
    color: var(--gold);
    font-weight: 700;
}

.catalog-section {
    padding: 105px clamp(20px, 7vw, 110px);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2,
.about-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
}

.section-heading > p:last-child { color: var(--muted); }

.book-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    max-width: 1450px;
    margin: 0 auto;
}

.book-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease;
}

.book-card:hover {
    transform: translateY(-9px);
    border-color: rgba(211,155,98,.6);
}

.cover-wrap { position: relative; }

.cover-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 9px;
    background: var(--bronze);
    color: white;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.book-copy { padding: 20px; }

.genre {
    margin: 0 0 8px;
    color: var(--bronze-light);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.book-copy h3 {
    margin-bottom: 14px;
    font-size: 1.22rem;
}

.book-copy span {
    color: var(--muted);
    font-size: .82rem;
}

.book-card[href] .book-copy span { color: var(--gold); }

.upcoming-section {
    background:
        linear-gradient(135deg, rgba(154,96,53,.12), transparent 45%),
        var(--bg-soft);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1250px;
    margin: 0 auto 26px;
}

.upcoming-feature {
    display: grid;
    grid-template-columns: minmax(180px, .7fr) 1.3fr;
    align-items: center;
    gap: 28px;
    min-height: 430px;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.upcoming-feature img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}

.upcoming-feature h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.upcoming-feature p:not(.eyebrow) { color: var(--muted); }

.upcoming-feature span {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 10px;
    border: 1px solid var(--bronze);
    color: var(--bronze-light);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.title-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1250px;
    margin: 0 auto;
}

.title-grid article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(154,96,53,.28), transparent 55%),
        #181612;
}

.title-grid span {
    color: var(--bronze-light);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.title-grid h3 {
    margin: 10px 0 0;
    font-size: 1.4rem;
}

.about-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: clamp(40px, 8vw, 100px);
    padding: 115px clamp(22px, 9vw, 145px);
    background:
        linear-gradient(90deg, rgba(154,96,53,.18), transparent 48%),
        #0d0c0a;
}

.about-logo img {
    width: min(380px, 80vw);
    margin: 0 auto;
}

.about-copy {
    max-width: 760px;
}

.about-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px clamp(20px, 6vw, 90px);
    border-top: 1px solid var(--border);
    background: #070705;
    color: var(--muted);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.footer-brand strong {
    display: block;
    color: var(--cream);
    font-family: Georgia, serif;
}

.footer-brand span {
    display: block;
    font-size: .75rem;
}

@media (max-width: 1150px) {
    .book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .title-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-art { min-height: 520px; }
    .feature-strip { flex-direction: column; align-items: flex-start; }
    .upcoming-grid { grid-template-columns: 1fr; }
    .about-section { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 740px) {
    .menu-button { display: block; }
    .main-navigation {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 22px;
        background: rgba(10,10,8,.98);
        border-bottom: 1px solid var(--border);
    }
    .main-navigation.is-open { display: flex; }
    .main-navigation a {
        padding: 13px;
        border-bottom: 1px solid var(--border);
    }
    .book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .upcoming-feature { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
    .brand span { display: none; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .book-grid { grid-template-columns: 1fr; }
    .book-card { width: min(350px, 100%); margin: 0 auto; }
    .title-grid { grid-template-columns: 1fr; }
}
.buy-now {
    background: #b57a2f;
    color: white !important;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .25s;
}

.buy-now:hover {
    background: #d29543;
    transform: translateY(-2px);
}
.contact-section{
    padding:90px 20px;
    background:#15181b;
    border-top:1px solid rgba(255,255,255,.08);
}

.contact-container{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.contact-info{
    margin-top:40px;
    display:grid;
    gap:30px;
}

.contact-info a{
    color:#ee5c18;
    text-decoration:none;
}

.contact-info a:hover{
    text-decoration:underline;
}