```css
/* =========================================================
   Bookshelf Recommender
   Main Stylesheet
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS / CSS VARIABLES
   ========================================================= */

:root {
    --ink: #18211f;
    --muted: #68716e;
    --paper: #f7f4ee;
    --card: #fffdf9;

    --accent: #d96b3c;
    --line: #ded8ce;
    --soft: #ebe6dc;
}


/* =========================================================
   2. GLOBAL STYLES / RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--paper);
    color: var(--ink);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.55;
}


/* =========================================================
   3. GLOBAL LAYOUT
   ========================================================= */

.wrap {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;

    border-bottom: 1px solid var(--line);

    background: rgba(247, 244, 238, 0.92);

    backdrop-filter: blur(8px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 72px;
}


/* Brand */

.brand {
    color: var(--ink);

    font-size: 1.35rem;
    font-weight: 800;

    text-decoration: none;
}

.brand span {
    color: var(--accent);
}


/* Navigation Links */

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: var(--muted);

    font-size: 0.95rem;

    text-decoration: none;
}


/* =========================================================
   5. HERO SECTION
   ========================================================= */

.hero {
    padding: 72px 0 80px;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 56px;

    align-items: center;
}


/* Eyebrow / Section Label */

.eyebrow {
    margin: 0 0 10px;

    color: var(--accent);

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}


/* Main Heading */

h1 {
    margin: 0 0 24px;

    font-family: Georgia, serif;

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.05em;
}

h1 em {
    font-weight: 400;
}


/* Secondary Headings */

h2 {
    margin: 0 0 24px;

    font-family: Georgia, serif;

    font-size: clamp(2rem, 4vw, 3.1rem);

    line-height: 1.05;
}

h3 {
    margin: 0 0 6px;
}


/* Hero Description */

.lede {
    max-width: 640px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 1.14rem;
}


/* =========================================================
   6. UPLOAD CARD
   ========================================================= */

.upload-card {
    padding: 28px;

    background: var(--card);

    border: 1px solid var(--line);
    border-radius: 22px;

    box-shadow: 0 14px 40px rgba(42, 35, 26, 0.07);
}


/* Upload Icon */

.upload-icon {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    margin-bottom: 12px;

    background: var(--soft);

    border-radius: 50%;

    font-size: 1.5rem;
}


/* Upload Card Typography */

.upload-card h2 {
    margin-bottom: 4px;

    font-family: inherit;

    font-size: 1.25rem;
}

.upload-card p {
    margin-top: 0;

    color: var(--muted);
}


/* =========================================================
   7. BUTTONS
   ========================================================= */

.button {
    margin-right: 8px;

    padding: 12px 18px;

    border: 0;
    border-radius: 999px;

    font-weight: 750;

    cursor: pointer;
}


/* Primary Button */

.primary {
    color: #ffffff;
    background: var(--accent);
}


/* Secondary Button */

.secondary {
    color: var(--ink);
    background: var(--soft);
}


/* =========================================================
   8. IMAGE PREVIEW
   ========================================================= */

.preview-wrap {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid var(--line);
}

.preview-wrap img {
    width: 72px;
    height: 92px;

    object-fit: cover;

    border-radius: 8px;
}

.preview-wrap span {
    color: var(--muted);

    font-size: 0.9rem;
}


/* =========================================================
   9. HERO GRAPHIC
   ========================================================= */

.hero-art {
    padding: 10px;
}

.hero-art img {
    display: block;

    width: 100%;
    max-width: 540px;

    margin: 0 auto;
}


/* =========================================================
   10. GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 90px 0;

    border-top: 1px solid var(--line);
}


/* =========================================================
   11. HOW IT WORKS / PROCESS STEPS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.steps article {
    padding: 22px;

    background: var(--card);

    border: 1px solid var(--line);
    border-radius: 18px;
}

.steps span {
    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 800;
}

.steps h3 {
    margin-top: 28px;
}

.steps p {
    color: var(--muted);
}


/* =========================================================
   12. RECOMMENDATION RESULTS
   ========================================================= */

.results-section {
    background: #eee9df;
}


/* Results Header */

.results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 28px;
}


/* Prototype Badge */

.badge {
    padding: 7px 12px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 999px;

    font-size: 0.8rem;
}


/* Results Grid */

.results-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* Book Recommendation Card */

.book-card {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 18px;

    padding: 18px;

    background: var(--card);

    border: 1px solid var(--line);
    border-radius: 18px;
}


/* Book Cover */

.cover {
    height: 140px;

    border-radius: 8px;
}


/* Placeholder Book Cover */

.placeholder {
    display: grid;
    place-items: center;

    text-align: center;

    color: #ffffff;
    background: #343b37;

    font-family: Georgia, serif;

    font-size: 0.8rem;
    font-weight: 700;
}


/* Author */

.author {
    margin-top: 0;

    font-size: 0.9rem;
}


/* Recommendation Description */

.book-card p {
    color: var(--muted);
}

.book-card p:last-child {
    font-size: 0.92rem;
}


/* =========================================================
   13. TECHNOLOGY STACK
   ========================================================= */

.stack-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.stack-grid div {
    padding: 22px;

    background: var(--card);

    border: 1px solid var(--line);
    border-radius: 18px;
}

.stack-grid strong {
    font-size: 1.05rem;
}

.stack-grid p {
    margin-bottom: 0;

    color: var(--muted);
}


/* =========================================================
   14. FOOTER
   ========================================================= */

footer {
    padding: 34px 0;

    color: var(--muted);

    font-size: 0.9rem;
}


/* =========================================================
   15. TABLET RESPONSIVE STYLES
   ========================================================= */

@media (max-width: 850px) {

    /* Hero */

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

    .hero-art {
        order: -1;
    }


    /* Content Grids */

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


/* =========================================================
   16. MOBILE RESPONSIVE STYLES
   ========================================================= */

@media (max-width: 560px) {

    /* Navigation */

    nav {
        display: none;
    }


    /* Hero */

    .hero {
        padding-top: 42px;
    }


    /* Single Column Layout */

    .steps,
    .results-grid,
    .stack-grid {
        grid-template-columns: 1fr;
    }


    /* Book Cards */

    .book-card {
        grid-template-columns: 86px 1fr;
    }

    .cover {
        height: 125px;
    }


    /* Buttons */

    .button {
        margin-bottom: 8px;
    }
}
```
