/* ============================================
   HOME PAGE STYLES - Lovette Jallow
   Clean rebuild from WordPress/Bricks
   ============================================ */

/* Font Faces */
@font-face {
    font-family: "Playfair Display";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-65d0c3b53fd6) format("woff2"),
        var(--lj-font-aed59634dc34) format("woff");
}

@font-face {
    font-family: "Playfair Display";
    font-weight: 900;
    font-display: swap;
    src: var(--lj-font-a8e193d32df5) format("woff2"),
        var(--lj-font-1d0ad30173bd) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("truetype");
}

/* CS
S Variables */
:root {
    --color-primary: #D2B48C;
    --color-primary-dark: #995A3B;
    /* Using brown as a darker primary */
    --color-primary-light: #FCF1DD;
    /* Using cream as a lighter primary */
    --color-text: #17110A;
    --color-text-light: #17110A;
    /* Adjusting to match the palette */
    --color-text-muted: #17110A;
    /* Adjusting to match the palette */
    --color-bg: #FCF1DD;
    --color-bg-light: #FCF1DD;
    --color-bg-green: #BD9450;
    /* Adjusting to match the palette */
    --font-heading: "Playfair Display", serif;
    --font-body: "Inclusive Sans", sans-serif;
    --font-ui: "Playfair Display", serif;
    --container-max: 1200px;
    --spacing-section: 80px;
    --wp-admin-bar-height: 0px;
}

body.admin-bar {
    --wp-admin-bar-height: 32px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --wp-admin-bar-height: 46px;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: var(--wp-admin-bar-height);
    z-index: 999;
    background: #F8F5F0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 1px solid rgba(210, 180, 140, 0.15);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
    background: #FAF9F6;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(210, 180, 140, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    flex-shrink: 0;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.site-logo a {
    color: inherit;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.site-logo a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-dark);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.site-logo a:hover {
    color: var(--color-primary-dark);
}

.site-logo a:hover::after {
    width: 100%;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 16px;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-decoration: none;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    width: calc(100% - 32px);
    height: 2px;
    background: var(--color-primary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-menu>li>a:hover {
    color: var(--color-primary-dark);
    background: rgba(210, 180, 140, 0.08);
}

.nav-menu>li>a:hover::after {
    transform: scaleX(1);
}

.nav-menu>li>a[aria-current="page"] {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.nav-menu>li>a[aria-current="page"]:hover {
    background: transparent;
}

.nav-menu>li>a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

/* Dropdown toggle */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.25s ease;
    border-radius: 8px;
    letter-spacing: 0.01em;
    position: relative;
    line-height: 1.5;
}

.dropdown-toggle span {
    display: inline-block;
    position: relative;
    line-height: inherit;
}

.dropdown-toggle span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

.dropdown-toggle:hover span::after,
.has-dropdown:hover .dropdown-toggle span::after,
.has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle span::after {
    transform: scaleX(1);
}

/* Force underline + brown on hover/open inside header (override page-specific CSS) */
.site-header .has-dropdown:hover .dropdown-toggle,
.site-header .dropdown-toggle:hover {
    color: var(--color-primary-dark);
}

.site-header .has-dropdown:hover .dropdown-toggle span::after,
.site-header .dropdown-toggle:hover span::after {
    transform: scaleX(1);
}

.site-header .has-dropdown:hover .dropdown-toggle svg,
.site-header .dropdown-toggle:hover svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle:hover,
.dropdown-toggle[aria-expanded="true"],
.has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle {
    color: var(--color-primary-dark);
    background: rgba(210, 180, 140, 0.08);
}

/* Force brown when dropdown is open (wins over page-specific header overrides) */
.site-header .dropdown-toggle[aria-expanded="true"],
.site-header .has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle {
    color: var(--color-primary-dark);
}

.site-header .dropdown-toggle[aria-expanded="true"] span::after,
.site-header .has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle span::after {
    transform: scaleX(1);
}

.site-header .dropdown-toggle[aria-expanded="true"] svg,
.site-header .has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown arrow SVG */
.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.75;
    margin-left: 2px;
}

.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-toggle svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #F8F5F0;
    min-width: 200px;
    padding: 6px 0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 180, 140, 0.15);
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:has(.dropdown-toggle[aria-expanded="true"]) .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 2px 6px;
    border-radius: 6px;
}

.dropdown-menu a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    position: relative;
    transition: color 0.25s ease;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--color-primary-dark);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 1px;
    transform-origin: center;
}

.dropdown-menu a:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
    background: transparent;
}

/* Ensure hovered dropdown item is brown in header */
.site-header .dropdown-menu a:hover {
    color: var(--color-primary-dark);
}

.dropdown-menu a:hover::after {
    transform: scaleX(1);
}

/* Current page in dropdown: stay brown + underlined until user navigates away */
.dropdown-menu a[aria-current="page"] {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.dropdown-menu a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: var(--color-primary-dark);
    color: var(--color-bg);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(153, 90, 59, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.header-cta:hover {
    background: #8B4513;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(153, 90, 59, 0.25);
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(153, 90, 59, 0.2);
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(210, 180, 140, 0.12);
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--color-bg);
    padding: 100px 28px 32px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, visibility 0.3s ease;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 10000;
    border-left: 1px solid rgba(210, 180, 140, 0.15);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    left: 24px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: var(--color-primary-dark);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-menu li {
    position: relative;
}

.mobile-nav-menu a {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.mobile-nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2.5px;
    height: 0;
    background: var(--color-primary-dark);
    border-radius: 0 2px 2px 0;
    transition: all 0.25s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background: rgba(210, 180, 140, 0.1);
    color: var(--color-primary-dark);
    padding-left: 28px;
}

.mobile-nav-menu a:hover::before,
.mobile-nav-menu a:active::before {
    transform: translateY(-50%) scaleY(1);
    height: 60%;
}

.mobile-nav-menu a[aria-current="page"] {
    color: var(--color-primary-dark);
    font-weight: 600;
    padding-left: 28px;
}

.mobile-nav-menu a[aria-current="page"]:hover,
.mobile-nav-menu a[aria-current="page"]:active {
    background: transparent;
}

.mobile-nav-menu a[aria-current="page"]::before {
    transform: translateY(-50%) scaleY(1);
    height: 50%;
}

.mobile-overlay {
    display: none;
}

/* Full-page overlay on body — escapes header stacking context */
body.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    pointer-events: auto;
}

/* Lift header above the overlay so nav menu is not covered */
body.nav-open .site-header {
    z-index: 10001;
}

/* Keep the mobile nav above the header so the top of the panel stays visible */
body.nav-open .mobile-nav {
    z-index: 10002;
}

/* Blur the header bar itself (but not the nav, which sits at z-index 10000) */
body.nav-open .site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    pointer-events: none;
}

body.nav-open {
    overflow: hidden !important;
}

html:has(body.nav-open) {
    overflow: hidden !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background-image: var(--lj-img-c0a46306776e);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-image-mobile {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 1100px;
    padding: 0 100px;
    margin-right: auto;
    transform: translateY(-40%) translateX(70px);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 32px;
    margin-top: 80px;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 48px;
    white-space: normal;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(189, 148, 80, 0.15);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 148, 80, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    mix-blend-mode: difference;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn-secondary {
    display: inline-block;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: var(--font-body);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--color-bg);
    padding: 30px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 920px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    gap: 6px;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) .stat-number {
    margin-top: -0.3em;
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    min-height: 1.2em;
}

.stat-number .count {
    color: var(--color-text);
}

.stat-number .suffix {
    color: var(--color-primary);
    font-size: 0.5em;
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(16, 16, 16, 0.65);
}

/* =====
=======================================
   LOGO CAROUSEL SECTION
   ============================================ */
.logos-section {
    background: var(--color-primary);
    padding: 30px 0;
}

.logos-wrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}


.logos-carousel {
    display: flex;
    gap: 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
}

.logos-track {
    display: flex;
    gap: 48px;
    animation: scroll-logos 40s linear infinite;
    padding: 0 40px;
}

.logo-slide {
    flex-shrink: 0;
    width: 230px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION — TRUE WORDPRESS CLONE
   ============================================ */
.about-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, 520px) 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-image {
    position: relative;
    height: 645px;
    width: 520px;
    max-width: 520px;
}

.about-section .about-container .about-image img {
    width: 520px;
    max-width: 520px;
    height: 645px;
    max-height: 645px;
    min-height: 645px;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(23, 17, 10, 0.08);
    display: block;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3.44rem;
    font-weight: 900;
    line-height: 1.15;
    margin-top: -13px;
    margin-bottom: 14px;
    color: var(--color-text);
}

.about-content h2 em {
    font-style: italic;
    color: var(--color-text);
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-primary);
    margin-bottom: 30px;
    display: block;
}

.about-text {
    font-size: 1.156rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
}

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

.about-text strong {
    color: var(--color-text);
    font-weight: 700;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--spacing-section) 0;
    background: var(--color-primary);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 32px;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 3.375rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-bg);
    line-height: 1.2;
}

.services-header h2 em {
    font-style: italic;
    color: var(--color-bg);
}

.services-header p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-bg);
    opacity: 0.95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 32px 0;
    margin-top: -10px;
    align-items: stretch;
}

/* Glass Card Styling */
.service-card {
    background: linear-gradient(145deg, rgba(252, 241, 221, 0.95), rgba(252, 241, 221, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(23, 17, 10, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.05),
        0 16px 48px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Service Card Image */
.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 105, 58, 0.1), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px -2px rgba(0, 0, 0, 0.08),
        0 24px 64px -4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, rgba(252, 241, 221, 0.95), rgba(252, 241, 221, 0.8));
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    padding: 0;
    color: var(--color-text);
    flex-shrink: 0;
}

.service-card>p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 24px 0;
    padding: 0;
    min-height: 75px;
    flex-shrink: 0;
}

.service-card ul {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
}

.service-card li {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 10px 0;
    padding: 0 0 0 26px;
    position: relative;
    line-height: 1.5;
}

.service-card li:last-child {
    margin-bottom: 0;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.5;
}

.service-card .btn-primary {
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 0;
}

/*
 ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: var(--spacing-section) 0;
    background: #D2B48C;
}

.why-choose-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 32px;
    display: block;
}

.why-choose-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--color-bg);
    text-align: center;
}

.why-choose-header h2 em {
    font-style: italic;
    color: var(--color-bg);
}

.why-choose-header p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-bg);
    text-align: center;
    display: block;
    margin-top: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px 32px 0;
    margin-top: -10px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 32px;
    background: var(--color-primary-light);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(210, 180, 140, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 105, 58, 0.05), transparent);
    transition: 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #FCF1DD;
    box-shadow: 0 12px 48px rgba(210, 180, 140, 0.25);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(210, 180, 140, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #000000;
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-section {
    padding: 100px 0;
    background-color: #F8F5F0;
    overflow: hidden;
}

.awards-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 48px;
    text-align: center;
}

.awards-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 24px 0;
}

.awards-header p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.awards-slider-container {
    width: 100%;
    max-width: 1396px;
    margin: 0 auto;
    padding: 20px 0 30px;
}

.awards-slider {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: center;
    mask-position: center;
}

.awards-track {
    display: flex;
    gap: 24px;
    animation: scroll-awards 60s linear infinite;
    width: fit-content;
    padding: 10px 0 35px;
}

@keyframes scroll-awards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.award-card {
    flex: 0 0 260px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.award-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.award-info {
    padding: 0;
    position: relative;
    height: 110px;
    display: flex;
    flex-direction: column;
}

.award-title {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
    padding: 20px 20px 0 20px;
    flex: 1;
    overflow: hidden;
}

.award-year {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0 20px 15px 20px;
    height: 43px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0 80px;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--color-bg);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.testimonials-header h2 em {
    font-style: italic;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 0;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 10px 0;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonials-scroll:active,
.testimonials-scroll.active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: calc(33.333% - 22px);
    background: #FCF8F3;
    border-radius: 8px;
    padding: 48px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-shadow: 0 2px 12px rgba(23, 17, 10, 0.06);
    transition: all 0.3s ease;
    position: relative;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(23, 17, 10, 0.1);
}

.testimonial-text {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
    color: #2d2d2d;
    margin-bottom: 32px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-text em {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.testimonial-avatar::before {
    content: '"';
    position: absolute;
    font-size: 2rem;
    font-family: Georgia, serif;
    color: var(--color-bg);
    font-weight: bold;
    line-height: 1;
}

.testimonial-avatar img {
    display: none;
}

.testimonial-info h6 {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-info span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials-pagination .pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-bg);
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.testimonials-pagination .pagination-dot:not(.active) {
    opacity: 0.25;
}

.testimonials-pagination .pagination-dot:hover {
    transform: scale(1.2);
    opacity: 0.5;
}

.testimonials-pagination .pagination-dot.active {
    opacity: 1;
}

/* ============================================
   BOOKS SECTION
   ============================================ */
.books-section {
    padding: 80px 0;
    background: #F8F5F0;
}

.books-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.books-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text);
    line-height: 1.2;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: linear-gradient(180deg, #FCF1DD 0%, #FDF8F0 100%);
    border-radius: 20px;
    padding: 36px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    justify-content: flex-start;
    border: 1px solid rgba(210, 180, 140, 0.25);
    box-shadow: 0 4px 20px rgba(153, 90, 59, 0.08);
    position: relative;
    overflow: hidden;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D2B48C, #995A3B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(153, 90, 59, 0.15);
    border-color: rgba(210, 180, 140, 0.4);
}

.book-card:hover::before {
    opacity: 1;
}

.book-image {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}

.book-image a {
    display: block;
}

.book-image img {
    width: 400px;
    max-width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(153, 90, 59, 0.18);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.book-image img:hover {
    box-shadow: 0 16px 50px rgba(153, 90, 59, 0.22);
    transform: scale(1.02);
}

.book-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.book-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--color-text);
}

.book-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.75;
    color: #5a4a3a;
    margin-bottom: 16px;
    font-style: normal;
}

.book-meta {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #8a7a6a;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.book-price {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    color: #D2B48C;
    margin-bottom: 20px;
    font-style: italic;
}

.book-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.btn-book {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D2B48C 0%, #C4A67C 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.35);
    text-align: center;
}

.btn-book:hover {
    background: linear-gradient(135deg, #995A3B 0%, #7a4830 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 90, 59, 0.35);
}

.btn-book-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #995A3B;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid #995A3B;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-book-secondary:hover {
    background: #995A3B;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   BOOK PURCHASE OVERLAY MODAL
   ============================================ */
.book-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 17, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-overlay.active {
    display: flex;
    opacity: 1;
}

.book-overlay-content {
    background: #fff;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(23, 17, 10, 0.08);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 48px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.book-overlay.active .book-overlay-content {
    transform: scale(1);
}

.book-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.book-overlay-close:hover {
    background: rgba(23, 17, 10, 0.1);
    color: var(--color-text);
    transform: rotate(90deg);
}

.book-overlay-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 12px 0;
    text-align: center;
    padding-right: 40px;
}

.book-overlay-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 32px 0;
}

.book-format-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.book-format-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    background: var(--color-primary-light);
    border: 1px solid rgba(23, 17, 10, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.book-format-button:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(189, 148, 80, 0.12);
    transform: translateY(-2px);
}

.book-format-button:hover .format-icon {
    color: var(--color-primary-dark);
}

.format-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: color 0.2s ease;
}

.format-icon svg {
    width: 100%;
    height: 100%;
}

.format-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text);
    text-align: center;
    letter-spacing: 0.01em;
}

/* Email request option for Black Vogue */
.book-format-email {
    text-align: center;
}

.book-format-email .email-notice {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
    padding: 0 20px;
}

.book-format-email .email-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--color-primary-light);
    border: 1px solid rgba(23, 17, 10, 0.12);
    color: var(--color-text);
}

.book-format-email .email-button .format-icon {
    color: var(--color-text);
}

.book-format-email .email-button .format-label {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
}

.book-format-email .email-button:hover {
    background: #f0e2cc;
    border-color: rgba(23, 17, 10, 0.2);
    box-shadow: 0 4px 16px rgba(23, 17, 10, 0.08);
}

.book-format-email .email-button:hover .format-icon {
    color: var(--color-text);
}

@media (max-width: 768px) {
    .book-overlay-content {
        padding: 32px 24px;
        max-width: 90%;
    }

    .book-overlay-title {
        font-size: 22px;
        padding-right: 32px;
    }

    .book-format-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .book-format-button {
        padding: 20px;
        flex-direction: row;
        gap: 16px;
    }

    .format-icon {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
    }

    .book-format-email .email-button {
        flex-direction: column;
        gap: 12px;
    }

    .book-format-email .email-button .format-icon {
        margin-bottom: 0;
    }
}

/* ============================================
   PURCHASE REQUEST (EMAIL) OVERLAY
   ============================================ */
.purchase-request-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 17, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.purchase-request-overlay.active {
    display: flex;
    opacity: 1;
}

.purchase-request-overlay-content {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(23, 17, 10, 0.08);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.purchase-request-overlay.active .purchase-request-overlay-content {
    transform: scale(1);
}

.purchase-request-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.purchase-request-overlay-close:hover {
    background: rgba(23, 17, 10, 0.1);
    color: var(--color-text);
    transform: rotate(90deg);
}

.purchase-request-overlay-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 8px 0;
    text-align: center;
    padding-right: 40px;
}

.purchase-request-overlay-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 24px 0;
}

.purchase-request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.purchase-request-form-group {
    display: block;
}

.purchase-request-form-group input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid rgba(23, 17, 10, 0.2);
    border-radius: 12px;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.purchase-request-form-group input::placeholder {
    color: var(--color-text-muted);
}

.purchase-request-form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(210, 180, 140, 0.2);
}

.purchase-request-message {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
}

.purchase-request-message.success {
    background: rgba(107, 142, 35, 0.12);
    color: #2d4a0f;
}

.purchase-request-message.error {
    background: rgba(180, 60, 60, 0.1);
    color: #8b2828;
}

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

.purchase-request-submit {
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #D2B48C 0%, #C4A67C 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.35);
}

.purchase-request-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #995A3B 0%, #7a4830 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 90, 59, 0.35);
}

.purchase-request-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .purchase-request-overlay {
        padding: 16px;
        box-sizing: border-box;
    }

    .purchase-request-overlay-content {
        padding: 32px 24px;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
    }

    .purchase-request-overlay-title {
        font-size: 20px;
        padding-right: 36px;
    }
}

/* ============================================
   BOOKING OVERLAY MODAL
   ============================================ */
.booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 17, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-overlay-content {
    background: rgba(252, 241, 221, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.booking-overlay.active .booking-overlay-content {
    transform: scale(1);
}

.booking-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.booking-overlay-close:hover {
    background: rgba(23, 17, 10, 0.1);
    color: var(--color-text);
    transform: rotate(90deg);
}

.booking-overlay-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 8px 0;
    text-align: center;
    padding-right: 40px;
}

.booking-overlay-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.booking-form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    font-family: var(--font-body);
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(23, 17, 10, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(189, 148, 80, 0.1);
}

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

.booking-submit-btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.booking-submit-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(189, 148, 80, 0.25);
}

.booking-email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--color-primary);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.booking-email-link:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(189, 148, 80, 0.25);
    color: var(--color-bg);
}

.booking-email-link svg {
    width: 20px;
    height: 20px;
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.booking-divider span {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(23, 17, 10, 0.1);
}

@media (max-width: 768px) {
    .booking-overlay-content {
        padding: 32px 24px;
        max-width: 95%;
    }

    .booking-overlay-title {
        font-size: 22px;
        padding-right: 32px;
    }

    .booking-overlay-subtitle {
        font-size: 15px;
    }
}

/* ============================================
   BOOK MOCKUP STYLING
   ============================================ */

/* ============================================
   ACTION FOR HUMANITY SECTION
   ============================================ */
.humanity-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 51px;
    background-image: var(--lj-img-dbb5f8e0c989);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.humanity-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
}

.humanity-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.humanity-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin: 0 auto 24px;
    text-align: center;
    color: #ffffff;
}

.humanity-content h2 em {
    font-style: italic;
}

.humanity-content p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto 24px;
    text-align: center;
    color: #ffffff;
}

.humanity-content .btn-primary {
    background: var(--color-primary);
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.humanity-content a.btn-primary {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: calc(var(--spacing-section) * 1.5) 0;
    background: #FCF1DD;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.newsletter-content h6 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D2B48C;
    margin-bottom: 16px;
}

.newsletter-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #17110A;
}

.newsletter-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #17110A;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #FCF8F3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(23, 17, 10, 0.1);
}

.newsletter-form-image {
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    height: 180px;
}

.newsletter-form-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.5);
}

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

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 16px 20px;
    border: 1px solid rgba(23, 17, 10, 0.15);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
    background: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #D2B48C;
    background: #fff;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #17110A;
    cursor: pointer;
    line-height: 1.6;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #995A3B;
    cursor: pointer;
    flex-shrink: 0;
}

.newsletter-form button {
    padding: 16px 30px;
    background: #D2B48C;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 8px;
}

.newsletter-form button:hover {
    background: #995A3B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 148, 80, 0.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 140px 0 120px;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-image: var(--lj-img-781f82a2305f);
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 60%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 120px;
    padding: 0 32px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #000000;
    color: var(--color-bg);
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-brand h6 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-bg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

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

.footer-contact span {
    font-family: var(--font-body);
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 241, 221, 0.1);
    border-radius: 50%;
    color: var(--color-bg);
    transition: all 0.3s ease;
}

.social-links a i {
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-links a svg {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(23, 17, 10, 0.08);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffffff;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .testimonials-scroll {
        gap: 24px;
    }

    .award-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .books-container {
        padding: 0 32px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .book-card {
        min-height: auto;
    }

    .book-image img {
        width: 350px;
        max-width: 90%;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 991px) {
    :root {
        --spacing-section: 60px;
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 100%;
        transform: none;
        padding: 0 40px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .about-section .about-container .about-image img {
        width: 100%;
        max-width: 100%;
        height: 500px;
        min-height: auto;
    }

    .about-content h2 {
        font-size: 42px;
        margin-top: 0;
    }

    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 14px 24px;
        gap: 16px;
    }

    .site-logo {
        font-size: 23px;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 13px;
        margin-left: auto;
        margin-right: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-image: none !important;
        background-color: #000;
        display: flex;
        align-items: flex-end;
    }

    .hero-section::before {
        display: none !important;
    }

    .hero-image-mobile {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-image-mobile::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to top,
            rgba(23, 17, 10, 0.85) 0%,
            rgba(23, 17, 10, 0.6) 35%,
            rgba(23, 17, 10, 0.15) 60%,
            transparent 100%
        );
    }

    .hero-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% top;
        display: block;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        transform: none !important;
        max-width: 100%;
        z-index: 2;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: var(--color-primary);
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .hero-buttons .btn-secondary:hover {
        border-color: #fff;
        color: var(--color-text);
        background: #fff;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    .stats-section {
        padding: 16px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px 4px;
        max-width: 100%;
    }

    .stat-item {
        padding: 12px 4px;
        border-right: none;
        min-width: auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-number .suffix {
        font-weight: 900;
        font-family: var(--font-body);
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .logos-section {
        padding: 32px 0;
    }

    .logos-track {
        gap: 24px;
        padding: 0 16px;
    }

    .logo-slide {
        width: 100px;
        height: 55px;
    }

    .logo-slide img {
        max-width: 100px;
        max-height: 55px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 24px;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-section .about-container .about-image img {
        width: 100%;
        max-width: 100%;
        height: 400px;
        max-height: 400px;
        min-height: auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: clamp(28px, 7vw, 40px);
        margin-top: 0;
    }

    .about-subtitle {
        font-size: 12px;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 28px;
        text-align: center;
    }

    .about-content .btn-secondary {
        width: 100%;
        text-align: center;
        display: block;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .services-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .why-choose-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 24px;
    }

    .service-card {
        padding: 32px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card>p {
        min-height: auto;
    }

    .service-card-image {
        height: 180px;
    }

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

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        min-height: 480px;
        padding: 36px 24px 28px;
    }

    .testimonials-scroll {
        gap: 20px;
    }

    .testimonials-wrapper {
        padding: 0 24px;
    }

    .awards-section {
        padding: 60px 0;
    }

    .awards-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .testimonials-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .awards-wrapper {
        padding: 0 24px;
    }

    .awards-scroll {
        gap: 24px;
    }

    .award-card {
        flex: 0 0 220px;
        width: 220px;
    }

    .books-section {
        padding: 60px 0;
    }

    .books-container {
        padding: 0 24px;
    }

    .books-container h2 {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 40px;
    }

    .books-grid {
        gap: 40px;
    }

    .book-card {
        min-height: auto;
        padding: 24px;
    }

    .book-image img {
        width: 280px;
        max-width: 90%;
    }

    .book-subtitle {
        font-size: 1rem;
    }

    .book-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .book-meta {
        font-size: 14px;
    }

    .book-price {
        font-size: 15px;
    }

    .humanity-section {
        min-height: auto;
        padding: 48px 24px;
    }

    .humanity-content h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .humanity-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .humanity-content .btn-primary {
        width: 100%;
        text-align: center;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 48px 0;
    }

    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    .newsletter-content {
        text-align: center;
    }

    .newsletter-content h1 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .newsletter-content h6 {
        font-size: 11px;
    }

    .newsletter-content p {
        font-size: 15px;
    }

    .newsletter-form {
        padding: 28px 20px;
    }

    .newsletter-form-image {
        height: 150px;
    }

    /* CTA */
    .cta-section {
        min-height: auto;
        padding: 100px 0 60px;
        align-items: center;
    }

    .cta-content {
        margin-top: 0;
        padding: 0 28px;
    }

    .cta-content h2 {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
        opacity: 0.9;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 8px;
    }

    .cta-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        color: #ffffff;
    }

    /* Footer */
    .site-footer {
        padding: 36px 0 24px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding: 0 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-brand h6 {
        margin-bottom: 8px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-links li {
        margin-bottom: 4px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links ul {
        gap: 2px;
        align-items: center;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-contact span {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .social-links {
        margin-top: 12px;
        justify-content: center;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 16px 24px 0;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px 2px;
    }

    .stat-item {
        padding: 8px 2px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }

    .logos-section {
        padding: 16px 0;
    }

    .logos-track {
        gap: 24px;
        padding: 0 16px;
    }

    .logo-slide {
        width: 90px;
        height: 45px;
    }

    .logo-slide img {
        max-width: 90px;
        max-height: 45px;
    }

    /* About */
    .about-section {
        padding: 48px 0;
    }

    .about-container {
        padding: 0 16px;
        gap: 32px;
    }

    .about-section .about-container .about-image img {
        height: 320px;
        max-height: 320px;
    }

    .about-content h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Services */
    .services-section {
        padding: 48px 0;
    }

    .services-header {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .services-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .services-header p {
        font-size: 15px;
    }

    .services-grid {
        padding: 0 16px;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card-image {
        height: 160px;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-header {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .why-choose-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .feature-card {
        padding: 28px 20px;
    }

    .features-grid {
        padding: 0 16px;
        gap: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    /* Awards */
    .awards-section {
        padding: 48px 0;
    }

    .awards-header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .awards-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .awards-header p {
        font-size: 15px;
    }

    .award-card {
        flex: 0 0 200px;
    }

    .award-card img {
        height: 130px;
    }

    .award-info {
        padding: 12px;
        height: auto;
    }

    .award-title {
        font-size: 13px;
        padding: 12px 12px 0;
    }

    .award-year {
        padding: 0 12px 10px;
        height: auto;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0 56px;
    }

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonials-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .testimonials-wrapper {
        padding: 0 16px;
    }

    .testimonial-card {
        padding: 36px 24px 32px;
        min-height: 420px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }

    .testimonial-avatar::before {
        font-size: 24px;
    }

    .testimonial-info h6 {
        font-size: 14px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    /* Books */
    .books-section {
        padding: 48px 0;
    }

    .books-container {
        padding: 0 16px;
    }

    .books-container h2 {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 32px;
    }

    .books-grid {
        gap: 32px;
    }

    .book-image img {
        width: 250px;
        max-width: 85%;
    }

    .book-title {
        font-size: clamp(20px, 5vw, 22px);
    }

    .book-subtitle {
        font-size: 15px;
    }

    .btn-book {
        font-size: 15px;
        padding: 12px 28px;
    }

    /* Humanity */
    .humanity-section {
        padding: 40px 16px;
    }

    .humanity-content h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .humanity-content p {
        font-size: 14px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-container {
        padding: 0 16px;
        gap: 24px;
    }

    .newsletter-content h1 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .newsletter-form {
        padding: 24px 16px;
    }

    .newsletter-form-image {
        height: 130px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 14px 16px;
        font-size: 16px;
    }

    .newsletter-form button {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* CTA */
    .cta-section {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .cta-content {
        margin-top: 20px;
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 24px;
    }

    .footer-container {
        padding: 0 16px;
        gap: 28px;
    }

    .footer-bottom {
        padding: 16px 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .book-card {
        padding: 20px 16px;
    }

    .book-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .book-buttons {
        gap: 10px;
    }

    .btn-book,
    .btn-book-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (360px and below)
   ============================================ */
@media (max-width: 360px) {
    .header-container {
        padding: 12px 12px;
    }

    .site-logo {
        font-size: 19px;
    }

    .header-cta {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-container {
        padding: 0 16px calc(104px + env(safe-area-inset-bottom));
    }

    .hero-title {
        font-size: clamp(22px, 7vw, 30px);
    }

    .stats-grid {
        gap: 2px 0;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.45rem;
        letter-spacing: 0.03em;
    }

    .about-container {
        padding: 0 12px;
    }

    .services-grid {
        padding: 0 12px;
    }

    .features-grid {
        padding: 0 12px;
    }

    .testimonials-wrapper {
        padding: 0 12px;
    }

    .newsletter-container {
        padding: 0 12px;
    }

    .cta-content {
        padding: 0 12px;
    }

    .footer-container {
        padding: 0 12px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
}

/* ============================================
   MOBILE TOUCH TARGET & POLISH ENHANCEMENTS
   ============================================ */
@media (max-width: 768px) {

    /* Ensure minimum 44px touch targets for all interactive elements */
    .btn-primary,
    .btn-secondary,
    .btn-book,
    .btn-book-secondary,
    .header-cta,
    .booking-email-link,
    .newsletter-form button,
    .purchase-request-submit {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile nav links need good tap targets */
    .mobile-nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Mobile-only nav ordering: keep service links grouped under "Services" */
    .mobile-nav-menu li:has(> a[href$="speaking.html"]),
    .mobile-nav-menu li:has(> a[href$="consulting.html"]),
    .mobile-nav-menu li:has(> a[href$="events-courses.html"]) {
        order: 10;
    }

    /* Mobile-only section divider before service links */
    .mobile-nav-menu a[href$="speaking.html"] {
        margin-top: 22px;
    }

    .mobile-nav-menu a[href$="speaking.html"]::after {
        content: "Services";
        position: absolute;
        left: 0;
        top: -18px;
        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(153, 90, 59, 0.9);
        pointer-events: none;
    }

    /* Footer links need comfortable tap targets */
    .footer-links a {
        display: inline-block;
        padding: 4px 0;
        min-height: 44px;
        line-height: 36px;
    }

    .footer-links ul {
        gap: 4px;
    }

    /* Social links already 40px, bump to 44px */
    .social-links a {
        width: 44px;
        height: 44px;
    }

    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
    }

    /* Smooth font rendering on mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Better focus states for mobile accessibility */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--color-primary-dark);
        outline-offset: 2px;
    }

    /* Pagination dots need minimum tap size */
    .testimonials-pagination .pagination-dot {
        width: 14px;
        height: 14px;
        padding: 8px;
        box-sizing: content-box;
    }

    /* Footer bottom display fix */
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Prevent iOS zoom on input focus (font-size must be >= 16px) */
@media (max-width: 768px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

