/* ==========================================================================
   Updated Works - Shared Styles
   ========================================================================== */

/* Fonts are loaded via <link> in HTML head for better performance */

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ece8e1;
    color: #3d3428;
    min-height: 100vh;
    line-height: 1.6;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5vw;
    background: rgba(248, 246, 243, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 185, 154, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(61, 52, 40, 0.08);
    padding: 10px 5vw;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: #5a5347;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b85a1a;
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3d3428;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-signin {
    background: #b85a1a;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-signin:hover {
    background: #9a4c16;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 90, 26, 0.25);
}

/* Nav Search */
.nav-search {
    position: relative;
}

.nav-search input {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd8d0;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.nav-search input:focus {
    outline: none;
    border-color: #b85a1a;
    width: 260px;
}

.nav-search input::placeholder {
    color: #999;
}

.nav-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: none;
    overflow: hidden;
    min-width: 280px;
}

.nav-search-results.visible {
    display: block;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f6f3;
}

.search-result-title {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 14px;
}

.search-result-author {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

.search-no-results {
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-container--narrow {
    max-width: 800px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b85a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #9a4c16;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 90, 26, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #3d3428;
    border: 2px solid rgba(201, 185, 154, 0.4);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #b85a1a;
    color: #b85a1a;
    background: rgba(184, 90, 26, 0.05);
}

/* ==========================================================================
   Hero Section (Homepage)
   ========================================================================== */
/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    margin-top: 64px;
    background: linear-gradient(180deg, #3d3428 0%, #2a241c 100%);
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(184, 90, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(139, 115, 85, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-slides-container {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-slide-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 500px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 90, 26, 0.2);
    border: 1px solid rgba(184, 90, 26, 0.3);
    color: #d4956a;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #f8f6f3;
}

.hero-description {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(248, 246, 243, 0.7);
    margin-bottom: 28px;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 32px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(248, 246, 243, 0.5);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.hero-meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(248, 246, 243, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #b85a1a 0%, #a04f17 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(184, 90, 26, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #c46520 0%, #b85a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 90, 26, 0.4);
}

.hero-btn-primary svg {
    width: 18px;
    height: 18px;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 246, 243, 0.08);
    border: 1px solid rgba(248, 246, 243, 0.15);
    color: #f8f6f3;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn-secondary:hover {
    background: rgba(248, 246, 243, 0.12);
    border-color: rgba(248, 246, 243, 0.25);
}

.hero-btn-secondary svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Hero Book Display */
.hero-book {
    flex-shrink: 0;
    position: relative;
}

.hero-book-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.4s ease;
}

.hero-slide:hover .hero-book-wrapper {
    transform: perspective(1000px) rotateY(-4deg);
}

.hero-book img {
    height: 420px;
    width: auto;
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 24px 64px rgba(0, 0, 0, 0.3),
        -20px 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-book::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(8px);
}

/* Slider Navigation */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(248, 246, 243, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(248, 246, 243, 0.4);
}

.hero-dot.active {
    background: #b85a1a;
    box-shadow: 0 0 12px rgba(184, 90, 26, 0.5);
}

.hero-arrows {
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 246, 243, 0.08);
    border: 1px solid rgba(248, 246, 243, 0.15);
    color: rgba(248, 246, 243, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(248, 246, 243, 0.15);
    color: #f8f6f3;
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

/* Progress bar for auto-advance */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #b85a1a, #d4956a);
    width: 0%;
    transition: width 0.1s linear;
}

.hero-slider.paused .hero-progress {
    animation-play-state: paused;
}

/* ==========================================================================
   Page Header (Interior Pages)
   ========================================================================== */
.page-header {
    background: linear-gradient(180deg, #e8e4dd 0%, #ece8e1 100%);
    margin-top: 65px;
    padding: 72px 0 64px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b85a1a, transparent);
}

.page-header--left {
    text-align: left;
    padding: 110px 4vw 48px;
    background: linear-gradient(180deg, #e8e4dd 0%, #ece8e1 100%);
    max-width: none;
}

.page-header--left::after {
    display: none;
}

.page-header--left .page-title,
.page-header--left .page-description,
.page-header--left .search-container,
.page-header--left .search-results-count {
    max-width: calc(1200px - 8vw);
    margin-left: auto;
    margin-right: auto;
}

.page-header--left .page-title {
    margin-bottom: 12px;
}

.page-header--left .page-description {
    margin-bottom: 0;
}

.page-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #3d3428;
}

.page-subtitle,
.page-description {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #5a5347;
    max-width: 560px;
}

.page-header:not(.page-header--left) .page-subtitle,
.page-header:not(.page-header--left) .page-description {
    margin: 0 auto;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
    padding: 60px 0;
    background: #ece8e1;
}

.content-block {
    margin-bottom: 48px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Content Rows (Homepage)
   ========================================================================== */
.row {
    margin-bottom: 56px;
}

.row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.row-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #3d3428;
}

.view-all {
    color: #b85a1a;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.view-all:hover {
    color: #9a4c16;
}

.row-content {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.row-content::-webkit-scrollbar {
    height: 4px;
}

.row-content::-webkit-scrollbar-track {
    background: rgba(201, 185, 154, 0.2);
    border-radius: 2px;
}

.row-content::-webkit-scrollbar-thumb {
    background: #b85a1a;
    border-radius: 2px;
}

/* ==========================================================================
   Book Cards
   ========================================================================== */
.book-card {
    flex: 0 0 200px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(61, 52, 40, 0.06);
    text-decoration: none;
    color: inherit;
}

.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(61, 52, 40, 0.12);
}

.book-card.hidden {
    display: none;
}

.book-cover,
.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(145deg, #5a4d3f 0%, #4a4035 50%, #3d3428 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    position: relative;
}

.book-cover::before,
.book-cover-placeholder::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(184, 90, 26, 0.15);
    pointer-events: none;
}

.book-cover-image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.book-cover .author,
.book-cover-placeholder .author {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 10px;
    color: #b85a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.book-cover .title,
.book-cover-placeholder .title {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #f5f0e6;
}

.book-info {
    padding: 14px 16px;
    background: #fff;
}

.book-info h3 {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #3d3428;
}

.book-info p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #8b7355;
}

.book-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #b85a1a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Featured Row - Larger Cards */
.featured-row .book-card {
    flex: 0 0 280px;
}

/* ==========================================================================
   Book Grid (Books Page)
   ========================================================================== */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    padding: 0 4vw 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.book-grid .book-card {
    flex: none;
}

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

/* ==========================================================================
   Search & Filters
   ========================================================================== */
.search-section {
    padding: 0 4vw 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    border: 1px solid rgba(61, 52, 40, 0.15);
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(61, 52, 40, 0.04);
}

.search-input:focus {
    outline: none;
    border-color: #b85a1a;
    box-shadow: 0 2px 12px rgba(184, 90, 26, 0.12);
}

.search-input::placeholder {
    color: #9a9488;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9488;
}

.search-results-count {
    margin-top: 16px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: #7a7468;
    letter-spacing: 0.01em;
}

.filter-section {
    padding: 40px 4vw 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-label {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #7a7468;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    padding: 10px 22px;
    background: #fff;
    border: 1px solid rgba(61, 52, 40, 0.15);
    border-radius: 6px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #5a5347;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover {
    border-color: #b85a1a;
    color: #b85a1a;
    background: rgba(184, 90, 26, 0.04);
}

.filter-tag.active {
    background: #b85a1a;
    border-color: #b85a1a;
    color: #fff;
}

/* ==========================================================================
   No Results
   ========================================================================== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    display: none;
}

.no-results.visible {
    display: block;
}

.no-results h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 8px;
}

/* ==========================================================================
   About Page - Process Steps
   ========================================================================== */
.process-steps {
    margin-top: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #b85a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin-top: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

/* ==========================================================================
   Collection Pages
   ========================================================================== */

/* Breadcrumb in page header */
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: #7a7468;
    text-decoration: none;
    transition: color 0.2s;
}

.page-header .breadcrumb a:hover {
    color: #b85a1a;
}

.page-header .breadcrumb span {
    color: #9a9488;
}

.page-header .breadcrumb span:last-child {
    color: #5a5347;
    font-weight: 500;
}

/* Collection Info Stats */
.collection-info {
    padding: 0 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Section for Collection Pages */
.search-section {
    padding: 0 24px 40px;
    max-width: 600px;
    margin: 0 auto;
}

/* Book Grid for Collection Pages */
.collection-info + .search-section + .book-grid,
.search-section + .book-grid {
    padding-top: 0;
}

/* ==========================================================================
   Collection Page - Other Collections
   ========================================================================== */
.other-collections {
    background: #f8f6f3;
    padding: 56px 48px;
    margin: 56px 4vw 0;
    max-width: calc(1200px - 8vw);
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    border: 1px solid rgba(61, 52, 40, 0.08);
}

.other-collections-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.other-collections h2 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: #3d3428;
    letter-spacing: -0.01em;
}

.collection-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.collection-link {
    padding: 11px 24px;
    background: #fff;
    border: 1px solid rgba(61, 52, 40, 0.12);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    color: #5a5347;
    font-weight: 500;
    transition: all 0.2s;
}

.collection-link:hover {
    background: #b85a1a;
    border-color: #b85a1a;
    color: #fff;
}

.collection-link.current {
    background: #3d3428;
    border-color: #3d3428;
    color: #fff;
}

/* ==========================================================================
   Newsletter Hero
   ========================================================================== */
.newsletter-hero {
    background: linear-gradient(180deg, #3d3428 0%, #2c2821 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 90, 26, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(184, 90, 26, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(184, 90, 26, 0.15);
    border: 1px solid rgba(184, 90, 26, 0.25);
    border-radius: 50%;
    margin-bottom: 28px;
    color: #b85a1a;
}

.newsletter-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: #f5f0e6;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.newsletter-description {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 240, 230, 0.75);
    margin-bottom: 32px;
}

.newsletter-form {
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #3d3428;
    transition: all 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #b85a1a;
    box-shadow: 0 0 0 3px rgba(184, 90, 26, 0.2);
}

.newsletter-input::placeholder {
    color: #8b7355;
}

.newsletter-button {
    padding: 14px 28px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #b85a1a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #9a4c16;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 90, 26, 0.35);
}

.newsletter-privacy {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: rgba(245, 240, 230, 0.5);
}

@media (max-width: 600px) {
    .newsletter-hero {
        padding: 60px 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 64px 4vw 48px;
    background: #3d3428;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b85a1a 20%, #b85a1a 80%, transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 38px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.footer-links {
    display: flex;
    gap: 72px;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b85a1a;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.footer-column a:hover {
    color: #b85a1a;
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Book Detail Page
   ========================================================================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #7a7468;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #b85a1a;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: #9a9488;
}

.breadcrumb li:last-child {
    color: #5a5347;
    font-weight: 500;
}

/* Book Hero Section */
.book-hero {
    display: flex;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 56px;
}

.book-cover-container {
    flex-shrink: 0;
}

.book-cover-img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(61, 52, 40, 0.2);
}

/* Book Cover Placeholder for Detail Pages */
.book-cover-placeholder-hero {
    width: 320px;
    aspect-ratio: 2/3;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: linear-gradient(145deg, #8b7355 0%, #6b5a47 50%, #5a4a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.book-cover-placeholder-hero::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    pointer-events: none;
}

.book-cover-placeholder-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.book-cover-placeholder-hero .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    z-index: 1;
    max-width: 100%;
}

.book-cover-placeholder-hero .placeholder-author {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.book-cover-placeholder-hero .placeholder-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.book-cover-placeholder-hero .placeholder-badge {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
}

.book-details {
    flex: 1;
    padding-top: 12px;
}

.book-details .book-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.book-details .book-badge:hover {
    background: #9a4c16;
}

.book-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    color: #3d3428;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.book-author {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    color: #5a5347;
    margin-bottom: 20px;
}

.book-author a {
    color: #b85a1a;
    text-decoration: none;
    font-weight: 500;
}

.book-author a:hover {
    text-decoration: underline;
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(61, 52, 40, 0.1);
}

.book-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: #7a7468;
}

.book-meta-item svg {
    color: #9a9488;
}

.book-description {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #5a5347;
    margin-bottom: 28px;
}

.book-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Sections */
.section {
    margin-bottom: 56px;
}

.section-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* About Content - Two Column */
.about-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
}

.about-text p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5a5347;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-sidebar {
    background: #f8f6f3;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid rgba(61, 52, 40, 0.08);
    height: fit-content;
}

.sidebar-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.theme-list {
    list-style: none;
}

.theme-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    color: #5a5347;
    margin-bottom: 12px;
    line-height: 1.5;
}

.theme-list li:last-child {
    margin-bottom: 0;
}

.theme-list svg {
    flex-shrink: 0;
    color: #b85a1a;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 24px;
    background: #f8f6f3;
    padding: 32px;
    border-radius: 10px;
    border: 1px solid rgba(61, 52, 40, 0.08);
}

.author-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, #3d3428 0%, #2c2821 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #f8f6f3;
}

.author-details h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 4px;
}

.author-details h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.author-details h3 a:hover {
    color: #b85a1a;
}

a.author-avatar {
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
}

a.author-avatar:hover {
    transform: scale(1.05);
}

.author-dates {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 13px;
    color: #7a7468;
    margin-bottom: 14px;
}

.author-details p:last-child {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #5a5347;
    margin-bottom: 0;
}

/* Related Books */
.related-books {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.related-book-card {
    flex: 0 0 150px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

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

.related-book-cover {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(145deg, #5a4d3f 0%, #3d3428 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    margin-bottom: 12px;
}

.related-book-cover .author {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 9px;
    color: #b85a1a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.related-book-cover .title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #f8f6f3;
}

.related-book-info h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 4px;
    line-height: 1.35;
}

.related-book-info p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 12px;
    color: #7a7468;
}

/* Preview Section */
.preview-section {
    background: #f8f6f3;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(61, 52, 40, 0.08);
}

.preview-header {
    text-align: left;
    margin-bottom: 40px;
}

.preview-header .section-title {
    margin-bottom: 12px;
}

.preview-header--bookish {
    text-align: center;
    margin-bottom: 48px;
    padding: 36px 20px;
    border-top: 1px solid rgba(61, 52, 40, 0.1);
    border-bottom: 1px solid rgba(61, 52, 40, 0.1);
    background: linear-gradient(to bottom, #fff, #faf9f7);
}

.preview-header-ornament {
    color: #b85a1a;
    font-size: 12px;
    letter-spacing: 6px;
    margin: 0 0 14px 0;
}

.preview-header-ornament:last-of-type {
    margin: 14px 0 0 0;
}

.preview-header-label {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b85a1a;
    margin-bottom: 8px;
}

.preview-header-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 14px;
    font-style: normal;
    letter-spacing: -0.02em;
}

.preview-header--bookish .preview-intro {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    color: #5a5347;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.preview-intro {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    color: #5a5347;
}

/* Chapter Blocks */
.chapter-block {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(61, 52, 40, 0.1);
}

.chapter-block:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chapter-subtitle {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #b85a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.chapter-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

.chapter-text {
    max-width: 680px;
    margin: 0 auto;
}

.chapter-text p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #4a4540;
    margin-bottom: 20px;
}

.chapter-text p:last-child {
    margin-bottom: 0;
}

/* Preview Fade */
.chapter-block:last-of-type {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.chapter-block:last-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -48px;
    right: -48px;
    height: 180px;
    background: linear-gradient(to bottom,
        rgba(248, 246, 243, 0) 0%,
        rgba(248, 246, 243, 0.95) 60%,
        rgba(248, 246, 243, 1) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.preview-fade {
    position: relative;
    text-align: center;
    padding-top: 40px;
    z-index: 1;
}

.preview-cta {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    color: #5a5347;
    margin-bottom: 20px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .hero-slider {
        min-height: auto;
    }

    .hero-slide-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px 100px;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-book {
        order: 1;
    }

    .hero-book-wrapper {
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-slide:hover .hero-book-wrapper {
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-book img {
        height: 320px;
    }

    .hero-nav {
        bottom: 24px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #3d3428;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(201, 185, 154, 0.2);
        box-shadow: 0 8px 32px rgba(61, 52, 40, 0.12);
        padding: 24px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu.active {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(201, 185, 154, 0.15);
}

.mobile-nav-links a {
    display: block;
    padding: 16px 0;
    color: #3d3428;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: #b85a1a;
}

.mobile-cta {
    display: block;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-signin-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-book img {
        height: 260px;
    }

    .hero-arrows {
        display: none;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .content-section {
        padding: 40px 4vw;
    }

    .book-card {
        flex: 0 0 160px;
    }

    .featured-row .book-card {
        flex: 0 0 200px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .page-header {
        padding: 60px 24px 40px;
    }

    .page-header--left {
        padding-top: 100px;
    }

    .cta-section,
    .other-collections {
        padding: 32px 24px;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
    }

    .book-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    /* Book Detail Page - Mobile */
    .book-hero {
        flex-direction: column;
        gap: 32px;
        padding: 24px 20px 40px;
    }

    .book-cover-container {
        text-align: center;
    }

    .book-cover-img {
        width: 200px;
    }

    .book-cover-placeholder-hero {
        width: 200px;
    }

    .book-cover-placeholder-hero .placeholder-title {
        font-size: 18px;
    }

    .book-cover-placeholder-hero .placeholder-author {
        font-size: 11px;
    }

    .book-details {
        padding-top: 0;
    }

    .book-meta {
        gap: 16px;
    }

    .book-actions {
        flex-direction: column;
    }

    .book-actions .btn-primary,
    .book-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .preview-section {
        padding: 24px;
    }

    .breadcrumb-nav {
        padding: 85px 20px 16px;
    }

    .content-wrapper {
        padding: 0 20px 40px;
    }

    /* Collection pages mobile */
    .collection-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 22px;
    }
}

/* ==========================================================================
   AUTHOR PAGE STYLES V2 - Editorial Redesign
   ========================================================================== */

/* Author Breadcrumb Navigation */
.author-breadcrumb-nav {
    background: #f8f6f3;
    border-bottom: 1px solid #e8e4dd;
    padding-top: 65px;
}

.author-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.author-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.author-breadcrumb a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.2s;
}

.author-breadcrumb a:hover {
    color: #b85a1a;
}

.author-breadcrumb-sep {
    color: #c9b99a;
    display: flex;
    align-items: center;
}

.author-breadcrumb-current {
    color: #3d3428;
    font-style: italic;
}

/* Author Hero V2 */
.author-hero-v2 {
    position: relative;
    background: linear-gradient(180deg, #2c2821 0%, #3d3428 50%, #4a4035 100%);
    padding: 100px 24px 60px;
    overflow: hidden;
}

.author-hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.author-hero-v2-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 90, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 90, 26, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(139, 115, 85, 0.04) 0%, transparent 50%);
    opacity: 1;
}

.author-hero-v2-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(236, 232, 225, 0.08) 0%, transparent 100%);
}

.author-hero-v2-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

/* Top Ornament */
.author-hero-v2-ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #b85a1a 50%, transparent 100%);
}

.ornament-diamond {
    color: #b85a1a;
    font-size: 10px;
    opacity: 0.8;
}

/* Monogram */
.author-hero-v2-monogram {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.author-hero-v2-monogram::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(184, 90, 26, 0.3);
    border-radius: 50%;
}

.author-hero-v2-monogram::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(184, 90, 26, 0.15);
    border-radius: 50%;
}

.monogram-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #b85a1a 0%, #9a4c16 50%, #8b6914 100%);
    border-radius: 50%;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.3),
        0 0 0 4px rgba(184, 90, 26, 0.2),
        inset 0 2px 4px rgba(255,255,255,0.1);
}

/* Hero Text */
.author-hero-v2-text {
    margin-bottom: 20px;
}

.author-hero-v2-label {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b85a1a;
    margin-bottom: 16px;
}

.author-hero-v2-name {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: #f5f0e6;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.author-hero-v2-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(245, 240, 230, 0.7);
}

.dates-ornament {
    color: #b85a1a;
    font-size: 8px;
    opacity: 0.6;
}

.dates-text {
    letter-spacing: 1px;
}

/* Bottom Ornament */
.author-hero-v2-ornament-bottom {
    display: flex;
    justify-content: center;
}

.ornament-flourish {
    color: #b85a1a;
    font-size: 28px;
    opacity: 0.5;
    transform: rotate(0deg);
}

/* Biography Section V2 */
.author-bio-section-v2 {
    background: #ece8e1;
    padding: 80px 24px;
}

.author-bio-v2-container {
    max-width: 780px;
    margin: 0 auto;
}

.author-bio-v2-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.bio-header-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c9b99a 100%);
}

.bio-header-line:last-child {
    background: linear-gradient(90deg, #c9b99a 0%, transparent 100%);
}

.bio-header-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8b7355;
    margin: 0;
}

/* Biography Content with Drop Cap */
.author-bio-v2-content {
    background: #fff;
    padding: 48px 56px;
    border-radius: 4px;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.04),
        0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(201, 185, 154, 0.2);
}

.author-bio-v2-dropcap {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #3d3428;
    margin-bottom: 20px;
}

.author-bio-v2-text {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #3d3428;
    margin-bottom: 0;
}

.author-bio-v2-footer {
    text-align: center;
    margin-top: 48px;
}

.bio-footer-ornament {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    color: #c9b99a;
    letter-spacing: 8px;
}

/* Books Section V2 */
.author-books-section-v2 {
    background: linear-gradient(180deg, #f8f6f3 0%, #ece8e1 100%);
    padding: 80px 24px 100px;
}

.author-books-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

.books-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ornament-wing-left,
.ornament-wing-right {
    color: #b85a1a;
    font-size: 12px;
    opacity: 0.6;
}

.ornament-text {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b7355;
}

.author-books-v2-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.author-books-v2-count {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    font-style: italic;
    color: #8b7355;
}

/* Books List V2 - Horizontal Layout with Descriptions */
.author-books-v2-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Book Row */
.author-book-row {
    display: flex;
    gap: 28px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(201, 185, 154, 0.15);
    transition: all 0.3s ease;
}

.author-book-row:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.08),
        0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(184, 90, 26, 0.3);
}

.author-book-row-cover {
    flex-shrink: 0;
    width: 120px;
    aspect-ratio: 2/3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.author-book-row-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-book-row-cover--placeholder {
    background: linear-gradient(145deg, #5a4d3f 0%, #4a4035 50%, #3d3428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}

.author-book-row-cover--placeholder .placeholder-title {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #f5f0e6;
}

.author-book-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.author-book-row-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #3d3428;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.author-book-row:hover .author-book-row-title {
    color: #b85a1a;
}

.author-book-row-description {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5347;
    margin: 0 0 14px 0;
}

.author-book-row-cta {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #b85a1a;
    transition: color 0.2s;
}

.author-book-row:hover .author-book-row-cta {
    color: #9a4c16;
}

/* Legacy Support - Keep old styles for backward compatibility */
.author-hero {
    display: none;
}

/* Responsive - Author Page V2 */
@media (max-width: 768px) {
    .author-hero-v2 {
        padding: 85px 20px 48px;
    }

    .author-hero-v2-monogram {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .monogram-letter {
        font-size: 36px;
    }

    .author-hero-v2-name {
        letter-spacing: 1px;
    }

    .author-hero-v2-dates {
        flex-direction: column;
        gap: 8px;
    }

    .dates-ornament {
        display: none;
    }

    .author-bio-section-v2 {
        padding: 60px 20px;
    }

    .author-bio-v2-content {
        padding: 32px 28px;
    }

    .author-bio-v2-dropcap,
    .author-bio-v2-text {
        font-size: 17px;
    }

    .author-bio-v2-dropcap::first-letter {
        font-size: 56px;
        padding-right: 8px;
    }

    .author-books-section-v2 {
        padding: 60px 20px 80px;
    }

    .author-book-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .author-book-row-cover {
        width: 100px;
        align-self: center;
    }

    .author-book-row-content {
        text-align: center;
    }

    .author-book-row-title {
        font-size: 18px;
    }

    .author-book-row-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .author-hero-v2-ornament-top {
        margin-bottom: 16px;
    }

    .ornament-line {
        width: 40px;
    }

    .author-hero-v2-monogram {
        width: 70px;
        height: 70px;
    }

    .monogram-letter {
        font-size: 32px;
    }

    .author-hero-v2-monogram::before,
    .author-hero-v2-monogram::after {
        display: none;
    }

    .bio-header-line {
        max-width: 50px;
    }

    .author-books-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================================================
   ABOUT PAGE - Refined Design
   ========================================================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(180deg, #2c2821 0%, #3d3428 50%, #4a4035 100%);
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 90, 26, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(184, 90, 26, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 90, 26, 0.15);
    border: 1px solid rgba(184, 90, 26, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #b85a1a;
}

.about-hero-label {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b85a1a;
    margin-bottom: 16px;
}

.about-hero-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #f5f0e6;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 18px;
    color: rgba(245, 240, 230, 0.75);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* About Mission Section */
.about-mission {
    background: #ece8e1;
    padding: 80px 24px;
}

.about-mission-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-section-label {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b85a1a;
    margin-bottom: 12px;
}

.about-section-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    color: #3d3428;
    letter-spacing: -0.5px;
}

.about-mission-content {
    background: #fff;
    padding: 48px 56px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(61, 52, 40, 0.06);
    border: 1px solid rgba(201, 185, 154, 0.2);
}

.about-mission-content p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #4a4540;
    margin-bottom: 20px;
}

.about-mission-content p:last-child {
    margin-bottom: 0;
}

/* About What We Update */
.about-focus {
    background: #f8f6f3;
    padding: 80px 24px;
}

.about-focus-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.about-focus-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(201, 185, 154, 0.15);
    transition: all 0.3s ease;
}

.about-focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 52, 40, 0.1);
    border-color: rgba(184, 90, 26, 0.2);
}

.about-focus-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(184, 90, 26, 0.1) 0%, rgba(184, 90, 26, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #b85a1a;
}

.about-focus-card h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 12px;
}

.about-focus-card p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5a5347;
    margin: 0;
}

/* About Process Section */
.about-process {
    background: #ece8e1;
    padding: 80px 24px;
}

.about-process-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-process-steps {
    margin-top: 48px;
}

.about-process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(201, 185, 154, 0.3);
}

.about-process-step:last-child {
    border-bottom: none;
}

.about-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #b85a1a 0%, #9a4c16 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(184, 90, 26, 0.25);
}

.about-step-content h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 10px;
}

.about-step-content p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #5a5347;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: linear-gradient(180deg, #f8f6f3 0%, #ece8e1 100%);
    padding: 80px 24px;
    text-align: center;
}

.about-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 16px;
}

.about-cta-text {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 17px;
    color: #5a5347;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* About Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 60px;
    }

    .about-mission,
    .about-focus,
    .about-process,
    .about-cta {
        padding: 60px 20px;
    }

    .about-mission-content {
        padding: 32px 24px;
    }

    .about-process-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-step-number {
        margin: 0 auto;
    }
}

/* ==========================================================================
   CONTACT PAGE - Refined Design
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(180deg, #2c2821 0%, #3d3428 50%, #4a4035 100%);
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(184, 90, 26, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(184, 90, 26, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

.contact-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 90, 26, 0.15);
    border: 1px solid rgba(184, 90, 26, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #b85a1a;
}

.contact-hero-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #f5f0e6;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-hero-subtitle {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 18px;
    color: rgba(245, 240, 230, 0.75);
    line-height: 1.7;
}

/* Contact Content */
.contact-content {
    background: #ece8e1;
    padding: 80px 24px;
}

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

/* Contact Form */
.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(61, 52, 40, 0.06);
    border: 1px solid rgba(201, 185, 154, 0.2);
}

.contact-form-title {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    color: #7a7468;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3d3428;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(61, 52, 40, 0.15);
    border-radius: 6px;
    background: #faf9f7;
    color: #3d3428;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b85a1a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 90, 26, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9488;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* Contact Info Sidebar */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid rgba(201, 185, 154, 0.15);
    transition: all 0.2s;
}

.contact-info-card:hover {
    border-color: rgba(184, 90, 26, 0.2);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(184, 90, 26, 0.1) 0%, rgba(184, 90, 26, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #b85a1a;
}

.contact-info-card h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3d3428;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #5a5347;
    margin: 0;
}

.contact-info-card a {
    color: #b85a1a;
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Promise */
.contact-promise {
    background: linear-gradient(135deg, #3d3428 0%, #2c2821 100%);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.contact-promise-icon {
    color: #b85a1a;
    margin-bottom: 12px;
}

.contact-promise h3 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f5f0e6;
    margin-bottom: 8px;
}

.contact-promise p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(245, 240, 230, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 60px;
    }

    .contact-content {
        padding: 60px 20px;
    }

    .contact-form-section {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
    }
}
