:root {
    --primary: #263946;
    --primary-dark: #182831;
    --accent: #a35f3d;
    --accent-dark: #7c4328;
    --cream: #f6f2eb;
    --cream-dark: #ebe4da;
    --paper: #fffdf9;
    --text: #24282c;
    --muted: #697178;
    --line: #dcd6cd;
    --white: #ffffff;
    --success: #166534;
    --danger: #991b1b;
    --warning: #92400e;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(25, 35, 42, 0.12);
    --shadow-small: 0 14px 40px rgba(25, 35, 42, 0.09);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

/* ==========================================================
   HEADER
========================================================== */

.site-header,
.admin-header,
.book-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(220, 214, 205, 0.8);
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--primary-dark);
    font-weight: 800;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 24px rgba(38, 57, 70, 0.22);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.brand-title {
    display: grid;
    line-height: 1.15;
}

.brand-title strong {
    font-size: 0.98rem;
}

.brand-title small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-links a:not(.button):hover {
    color: var(--primary);
}

/* ==========================================================
   TYPOGRAPHY & GENERIC ELEMENTS
========================================================== */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--primary-dark);
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.1rem, 7vw, 6.2rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.section {
    padding: 94px 0;
}

.section-soft {
    background: var(--cream);
}

.section-dark {
    color: var(--white);
    background: var(--primary-dark);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .eyebrow {
    color: #e4b899;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.centered-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading .eyebrow::before {
    display: none;
}

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

/* ==========================================================
   BUTTONS
========================================================== */

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--white);
    background: var(--accent);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--accent-dark);
    box-shadow: 0 12px 28px rgba(124, 67, 40, 0.2);
}

.button-secondary {
    color: var(--primary-dark);
    background: transparent;
    border-color: var(--line);
}

.button-secondary:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.button-outline {
    color: var(--primary);
    background: transparent;
    border-color: rgba(38, 57, 70, 0.28);
}

.button-outline:hover {
    color: var(--white);
    background: var(--primary);
}

.button-danger {
    background: var(--danger);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 0.86rem;
}

/* ==========================================================
   MESSAGES
========================================================== */

.notice-container {
    position: relative;
    z-index: 5;
    padding-top: 18px;
}

.alert {
    margin: 0;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 700;
}

.alert-success {
    color: #166534;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.alert-error {
    color: #991b1b;
    border-color: #fecaca;
    background: #fef2f2;
}

/* ==========================================================
   HERO
========================================================== */

.book-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 104px;
    background: linear-gradient(120deg, rgba(246, 242, 235, 0.98), rgba(255, 253, 249, 0.96));
}

.book-hero::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(163, 95, 61, 0.12);
    border-radius: 50%;
}

.book-hero::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: -340px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 95, 61, 0.13), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 76px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 750;
}

.hero-facts span::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
}

.hero-book-stage {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.hero-book-photo {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    margin: 0;
    padding: 13px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-book-photo img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.hero-book-badge {
    position: absolute;
    z-index: 3;
    right: -12px;
    bottom: 45px;
    width: 165px;
    padding: 21px;
    border-radius: 18px;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 18px 42px rgba(24, 40, 49, 0.3);
}

.hero-book-badge span,
.hero-book-badge small {
    display: block;
}

.hero-book-badge span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-book-badge strong {
    display: block;
    margin-bottom: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.hero-book-badge small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
}

/* ==========================================================
   BOOK INTRODUCTION
========================================================== */

.intro-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 80px;
}

.intro-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(8rem, 18vw, 14rem);
    line-height: 0.78;
    color: var(--cream-dark);
    user-select: none;
}

.intro-content p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.intro-content strong {
    color: var(--primary-dark);
}

/* ==========================================================
   TOPICS
========================================================== */

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.topic-card {
    min-height: 205px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(25, 35, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-small);
}

.topic-number {
    display: block;
    margin-bottom: 35px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.topic-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* ==========================================================
   GALLERY
========================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 22px;
}

.gallery-main,
.gallery-small {
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
    background: #d9d7d1;
    box-shadow: var(--shadow-small);
}

.gallery-main {
    min-height: 620px;
}

.gallery-side {
    display: grid;
    gap: 22px;
}

.gallery-small {
    min-height: 299px;
}

.gallery-main img,
.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ==========================================================
   EMERGENCY
========================================================== */

.emergency-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.emergency-photo {
    overflow: hidden;
    margin: 0;
    padding: 12px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}

.emergency-photo img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 14px;
}

.emergency-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

.emergency-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.emergency-list span {
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.87rem;
    font-weight: 700;
}

/* ==========================================================
   BENEFITS
========================================================== */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.benefit-card {
    padding: 30px;
    border-top: 2px solid var(--accent);
    background: var(--white);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-weight: 850;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* ==========================================================
   PROCESS
========================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    position: relative;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
}

.process-step > span {
    display: block;
    margin-bottom: 30px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.process-step p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* ==========================================================
   ORDER FORM
========================================================== */

.access-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 60px;
}

.access-copy {
    position: sticky;
    top: 112px;
}

.access-copy > p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.price-card {
    margin-top: 28px;
    padding: 27px;
    border-radius: 18px;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-small);
}

.price-card span,
.price-card small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

.price-card strong {
    display: block;
    margin: 8px 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 500;
}

.included-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.included-list li {
    position: relative;
    padding-left: 27px;
    color: var(--muted);
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.info-note {
    margin-top: 25px;
    padding: 17px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.65);
    color: var(--muted);
    font-size: 0.89rem;
    line-height: 1.6;
}

.info-note strong {
    color: var(--primary-dark);
}

.panel,
.feature-card,
.stat-card {
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.field input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #cbc6bd;
    border-radius: 10px;
    color: var(--text);
    background: var(--paper);
    outline: none;
}

.field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(163, 95, 61, 0.12);
}

.checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.checkbox input {
    width: 17px;
    min-height: auto;
    margin-top: 4px;
    accent-color: var(--accent);
}

/* ==========================================================
   LOGIN
========================================================== */

.login-section {
    background: linear-gradient(135deg, #fffdf9, var(--cream));
}

.login-wrap {
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    align-items: center;
    gap: 60px;
    margin-inline: auto;
}

.login-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.login-checklist {
    display: grid;
    gap: 10px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.login-checklist li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    font-weight: 650;
}

.login-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
}

.login-panel {
    display: grid;
    gap: 18px;
    align-content: start;
    text-align: center;
}

.login-panel h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.login-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-inline: auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 1.4rem;
    font-weight: 900;
}

/* ==========================================================
   PASSKEY
========================================================== */

.passkey-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
    background: var(--cream);
}

.passkey-card {
    width: min(100%, 620px);
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.passkey-card h1 {
    margin-top: 0;
    margin-bottom: 16px;
}

.passkey-description {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.65;
}

.passkey-hint {
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.passkey-message {
    width: 100%;
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: left;
    font-weight: 650;
    line-height: 1.5;
}

.passkey-message[hidden] {
    display: none;
}

.passkey-message--error {
    color: #991b1b;
    border-color: #fecaca;
    background: #fef2f2;
}

.passkey-message--success {
    color: #166534;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.passkey-message--info {
    color: #1e40af;
    border-color: #bfdbfe;
    background: #eff6ff;
}

#passkey-register-button,
#passkey-login-button {
    width: 100%;
}

#passkey-register-button:disabled,
#passkey-login-button:disabled {
    cursor: wait;
    opacity: 0.7;
}

/* ==========================================================
   ADMIN
========================================================== */

.admin-login-body,
.book-body {
    min-height: 100vh;
    background: var(--cream);
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login-card {
    width: min(100%, 440px);
    display: grid;
    gap: 18px;
}

.admin-login-card h1 {
    margin-bottom: 0;
    font-size: 2.5rem;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 750;
}

.admin-main {
    padding-top: 34px;
    padding-bottom: 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card span {
    color: var(--muted);
    font-weight: 700;
}

.stat-card strong {
    font-size: 2rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    background: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-table td > span,
.admin-table td > small,
.admin-table td > a {
    display: block;
    margin-top: 4px;
}

.admin-table small {
    color: var(--muted);
}

.status {
    width: fit-content;
    display: inline-flex !important;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pending {
    color: #92400e;
    background: #fef3c7;
}

.status-approved {
    color: #166534;
    background: #dcfce7;
}

.status-rejected,
.status-revoked {
    color: #991b1b;
    background: #fee2e2;
}

.action-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-table-section.spaced {
    margin-top: 60px;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.68);
    background: #111c22;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.86rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
    color: var(--white);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .emergency-grid,
    .access-grid,
    .login-wrap {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-book-stage {
        min-height: auto;
    }

    .hero-book-photo {
        width: min(100%, 650px);
    }

    .intro-number {
        display: none;
    }

    .access-copy {
        position: static;
    }

    .topic-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-main {
        min-height: 500px;
    }

    .gallery-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-small {
        min-height: 330px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav {
        min-height: 68px;
    }

    .brand-title small {
        display: none;
    }

    .nav-links a:not(.button) {
        display: none;
    }

    .book-hero {
        padding: 60px 0 75px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero-book-photo img {
        height: 390px;
    }

    .hero-book-badge {
        right: 5px;
        bottom: 24px;
    }

    .section {
        padding: 70px 0;
    }

    .topic-grid,
    .benefit-grid,
    .process-grid,
    .form-grid,
    .emergency-list,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .gallery-side {
        grid-template-columns: 1fr;
    }

    .gallery-main,
    .gallery-small {
        min-height: 390px;
    }

    .emergency-photo img {
        height: 430px;
    }

    .panel,
    .feature-card,
    .stat-card {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .passkey-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .brand-title strong {
        max-width: 190px;
        font-size: 0.84rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-book-photo {
        padding: 8px;
        border-radius: 16px;
    }

    .hero-book-photo img {
        height: 325px;
        border-radius: 11px;
    }

    .hero-book-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin: -40px 16px 0;
    }
}