/* ============================================
   OLGA SAFA - Personal Brand Hub
   OlgaSafa.com — the person. Trust. Story. Authority.
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #faf9f6;
    --bg-secondary: #f0ede8;
    --bg-dark: #1a1a2e;
    --bg-warm: #f7f3ee;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
    --accent: #c9506b;
    --accent-light: #e8a0b0;
    --accent-dark: #a33d55;
    --gold: #c4a265;
    --gold-light: #e8d5b0;
    --white: #ffffff;
    --border: #e5e2dd;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.violet, .accent {
    color: var(--accent);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

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

.nav-links a {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(201, 80, 107, 0.08);
}

.nav-links .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 20px;
    margin-left: 8px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: var(--accent-dark);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HOMEPAGE — Personal Brand Hub
   ============================================ */

/* --- Hero Section (Personal Brand) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.7) 0%,
        rgba(26, 26, 46, 0.4) 50%,
        rgba(26, 26, 46, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 140px 0 100px;
}

.hero-content .hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-content .hero-tagline {
    font-size: 1.1875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 80, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: #b8963a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #0f0f1f;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* --- Three Paths Section --- */
.paths-section {
    padding: 100px 0;
    text-align: center;
}

.paths-section .section-intro {
    max-width: 600px;
    margin: 0 auto 60px;
}

.paths-section .section-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 500;
}

.paths-section .section-intro p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.path-card {
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.path-card .path-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.path-card.gold-path .path-icon {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.path-card .path-icon.path-icon-img {
    background: none;
    width: 88px;
    height: 88px;
}

.path-card .path-icon.path-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.path-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.path-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.path-card .btn {
    width: 100%;
    justify-content: center;
}

/* --- Book Teaser Section --- */
.book-teaser {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--white);
    overflow: hidden;
}

.book-teaser-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.book-cover {
    position: relative;
}

.book-cover img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transition: transform var(--transition);
}

.book-cover:hover img {
    transform: rotate(-2deg) scale(1.02);
}

.book-teaser-text .book-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.book-teaser-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
    font-style: italic;
}

.book-teaser-text .book-subtitle {
    font-size: 1.125rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.book-teaser-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.book-teaser-text .book-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* --- Art Preview Section --- */
.art-preview {
    padding: 100px 0;
}

.art-preview .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.art-preview .section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
}

.art-preview .section-header p {
    color: var(--text-secondary);
    margin-top: 8px;
}

.art-preview .section-header a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.art-preview .section-header a:hover {
    color: var(--accent-dark);
}

.art-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.art-preview-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.art-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.art-preview-item:hover img {
    transform: scale(1.08);
}

.art-preview-item .art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.art-preview-item:hover .art-overlay {
    opacity: 1;
}

.art-preview-item .art-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

/* --- Section Title (shared) --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3,
.section-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-warm);
    text-align: center;
}

.testimonials-section .section-title::after {
    background: var(--gold);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 180px;
}

.testimonial-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

.testimonial-item .quote-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-item p {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonial-item .author {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* --- Newsletter Section --- */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.newsletter-section p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border-radius: 100px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.2);
}

.newsletter-form button {
    padding: 14px 32px;
    background: var(--white);
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   PAGE HEADER (all inner pages)
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.page-header .logo-icon {
    width: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.page-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    font-weight: 500;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   ABOUT / HER STORY PAGE — Editorial Layout
   ============================================ */

/* Hero portrait */
.about-portrait {
    padding: 60px 24px 40px;
    display: flex;
    justify-content: center;
}

.about-portrait-inner {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-portrait-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Editorial sections */
.about-editorial {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.about-narrow {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.editorial-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    text-align: center;
}

.editorial-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 36px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-narrow p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 22px;
}

.about-narrow p.dropcap::first-letter {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 500;
    float: left;
    line-height: 1;
    padding: 6px 14px 0 0;
    color: var(--accent);
}

.about-narrow strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Pullquote sections */
.about-pullquote-section {
    padding: 40px 24px 80px;
    background: var(--bg-warm);
    margin: 40px 0;
}

.editorial-quote {
    max-width: 760px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.editorial-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.editorial-quote p::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.25;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.editorial-quote cite {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.editorial-quote-sm p {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}

.editorial-quote-sm p::before {
    font-size: 3.5rem;
    top: -20px;
}

/* Wide inline images */
.about-image-wide {
    width: 100%;
    max-width: 900px;
    margin: 24px auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.about-image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legacy .about-section kept for safety */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-text h4 {
    font-size: 1.375rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
    display: inline-block;
}

.about-text h4:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-primary);
}

/* Pullquote */
.pullquote {
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid var(--accent);
    background: var(--bg-warm);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pullquote p {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-primary) !important;
    line-height: 1.6;
}

/* Cross-site CTA Banner */
.crosssite-cta {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-dark);
    color: var(--white);
}

.crosssite-cta h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.crosssite-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.crosssite-cta .btn {
    font-size: 1rem;
}

/* ============================================
   BOOK PAGE
   ============================================ */
.book-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 50%, #1a1a2e 100%);
    color: var(--white);
}

.book-hero-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: center;
}

.book-hero-cover img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.book-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 8px;
}

.book-hero-text .book-subtitle-hero {
    font-size: 1.25rem;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.book-hero-text .book-author {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.book-hero-text p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}

.book-hero-text .book-buy-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Book Content Sections */
.book-framework {
    padding: 100px 0;
    text-align: center;
}

.book-framework .framework-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

.book-framework .framework-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 500;
}

.book-framework .framework-intro p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.framework-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    transition: all var(--transition);
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.framework-card .card-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.framework-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.framework-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Book Testimonials */
.book-testimonials {
    padding: 100px 0;
    background: var(--bg-warm);
}

.book-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.book-review {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.book-review .stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.book-review p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.book-review .reviewer {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* Book Bottom CTA */
.book-bottom-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-dark);
    color: var(--white);
}

.book-bottom-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.book-bottom-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   ART & EXHIBITIONS (portfolio page)
   ============================================ */
.portfolio-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.portfolio-filter button {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Collection Descriptions */
.collection-descriptions {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    min-height: 60px;
}

.collection-desc {
    display: none;
    animation: fadeDesc 0.4s ease;
}

.collection-desc.active {
    display: block;
}

.collection-desc h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.collection-desc p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

@keyframes fadeDesc {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.portfolio-page-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-page-item:hover img {
    transform: scale(1.1);
}

.portfolio-page-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 80, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-page-item:hover .overlay {
    opacity: 1;
}

.portfolio-page-item .overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

.portfolio-page-item.hidden {
    display: none;
}

/* Exhibitions Section */
.exhibitions-section {
    padding: 80px 0;
}

.exhibitions-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 56px;
    text-align: center;
    font-weight: 500;
}

.exhibitions-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.exhibitions-timeline::before {
    display: none;
}

.exhibition-item {
    position: relative;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.exhibition-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.exhibition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
}

.exhibition-item:hover::before {
    transform: scaleX(1);
}

.exhibition-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.exhibition-item .ex-year {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--accent);
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.exhibition-item .ex-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.exhibition-item .ex-venue {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.exhibition-item .ex-venue::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent-light);
    margin-right: 6px;
}

/* ============================================
   BLOG / WRITING PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-content {
    padding: 32px;
}

.blog-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-card img {
    width: 100%;
    margin-top: 20px;
    border-radius: var(--radius-sm);
}

.blog-inline-images {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.blog-inline-images img {
    width: 48%;
    border-radius: var(--radius-sm);
}

/* Blog post CTA */
.blog-post-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Content columns (reused on blog, soul qi detail pages) */
.content-columns {
    padding: 80px 0;
}

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

.content-column h4 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
    display: inline-block;
}

.content-column p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-column img {
    border-radius: var(--radius-sm);
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   PRESS & SPEAKING PAGE
   ============================================ */
.press-section {
    padding: 80px 0;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.press-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.press-card .press-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.press-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.press-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Speaking Topics */
.speaking-topics {
    padding: 80px 0;
    background: var(--bg-warm);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.topic-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.topic-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.topic-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.topic-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT / NEWSLETTER PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-portrait {
    position: sticky;
    top: 120px;
}

.contact-portrait img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-portrait .portrait-caption {
    margin-top: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.contact-portrait .portrait-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-portrait .portrait-caption p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-info .contact-item i {
    color: var(--accent);
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.contact-info .contact-item a {
    color: var(--accent);
}
.contact-info .contact-item a:hover {
    color: var(--accent-dark);
}

.contact-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-newsletter > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-newsletter .newsletter-form-alt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-newsletter .newsletter-form-alt input,
.contact-newsletter .newsletter-form-alt textarea {
    padding: 14px 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease;
    color: var(--text-primary);
}

.contact-newsletter .newsletter-form-alt input:focus,
.contact-newsletter .newsletter-form-alt textarea:focus {
    border-color: var(--accent);
}

.contact-newsletter .newsletter-form-alt textarea {
    resize: vertical;
    min-height: 120px;
}

/* Soul Serenity banner */
.soul-serenity-banner {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #2d1f3d 0%, var(--bg-dark) 100%);
    color: var(--white);
}

.soul-serenity-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.soul-serenity-banner p {
    color: rgba(255,255,255,0.65);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES SECTIONS (kept for legacy/detail)
   ============================================ */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 24px;
    border-radius: var(--radius-sm);
}

.service-card h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-detail-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.services-detail-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-images {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.services-images img {
    width: 180px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.services-images img:hover {
    transform: scale(1.05);
}

/* CTA Section (generic) */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

.cta-section p {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    margin-bottom: 30px;
}

.cta-section .cta-btn,
.cta-section .btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--white);
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all var(--transition);
}

.cta-section .cta-btn:hover,
.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 50px;
}

.footer-widget h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-widget p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.footer-widget a {
    color: var(--accent-light);
    transition: color 0.3s ease;
}

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

.footer-widget img {
    border-radius: var(--radius-sm);
    max-width: 200px;
    opacity: 0.9;
}

.footer-widget .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-widget .footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-widget .footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-widget .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-widget .contact-item i {
    color: var(--accent-light);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-light);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

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

    .book-teaser-grid,
    .book-hero-grid {
        grid-template-columns: 250px 1fr;
        gap: 48px;
    }

    .art-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .portfolio-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        align-items: stretch;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-bg img {
        object-position: 10% center;
    }

    .hero-content {
        padding: 120px 0 60px;
    }

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

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .book-teaser-grid,
    .book-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .book-cover img,
    .book-hero-cover img {
        max-width: 250px;
        margin: 0 auto;
    }

    .book-teaser-text .book-actions,
    .book-hero-text .book-buy-actions {
        justify-content: center;
    }

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

    .art-preview .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-portrait {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .welcome-section,
    .paths-section {
        padding: 60px 0;
    }

    .services-section,
    .portfolio-section,
    .content-columns,
    .about-section,
    .services-detail,
    .press-section,
    .contact-section {
        padding: 60px 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .portfolio-filter {
        gap: 6px;
    }

    .portfolio-filter button {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .exhibitions-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .art-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .blog-inline-images {
        flex-direction: column;
    }

    .blog-inline-images img {
        width: 100%;
    }

    .services-images img {
        width: 140px;
    }
}

/* ============================================
   CREDENTIALS CARDS (Education, Certs, Workshops)
   ============================================ */
.credentials-section {
    padding: 80px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credentials-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.credential-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.credential-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 80, 107, 0.2);
}

.credential-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.credential-card:hover .credential-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1) rotate(-5deg);
}

.credential-text {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.credential-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: color 0.4s ease;
    border: none;
    padding: 0;
    display: block;
    margin-top: 0;
}

.credential-card:hover .credential-text h4 {
    color: var(--white);
}

.credential-text p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.credential-card:hover .credential-text p {
    color: rgba(255,255,255,0.75);
}

.credential-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    transition: color 0.4s ease;
}

.credential-card:hover .credential-date {
    color: var(--gold-light);
}

/* Stagger the credential card animations */
.credentials-grid .credential-card:nth-child(1) { transition-delay: 0.05s; }
.credentials-grid .credential-card:nth-child(2) { transition-delay: 0.1s; }
.credentials-grid .credential-card:nth-child(3) { transition-delay: 0.15s; }
.credentials-grid .credential-card:nth-child(4) { transition-delay: 0.2s; }
.credentials-grid .credential-card:nth-child(5) { transition-delay: 0.25s; }
.credentials-grid .credential-card:nth-child(6) { transition-delay: 0.3s; }
.credentials-grid .credential-card:nth-child(7) { transition-delay: 0.35s; }
.credentials-grid .credential-card:nth-child(8) { transition-delay: 0.4s; }
.credentials-grid .credential-card:nth-child(9) { transition-delay: 0.45s; }
.credentials-grid .credential-card:nth-child(10) { transition-delay: 0.5s; }

@media (max-width: 1024px) {
    .credentials-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .credentials-grid,
    .credentials-grid-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .credentials-section {
        padding: 60px 0;
    }
}

/* Stagger animations */
.paths-grid .path-card:nth-child(1) { transition-delay: 0.1s; }
.paths-grid .path-card:nth-child(2) { transition-delay: 0.2s; }
.paths-grid .path-card:nth-child(3) { transition-delay: 0.3s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   ART SERVICES PAGE
   ============================================ */
.art-services-intro {
    padding: 100px 0 60px;
    text-align: center;
}

.art-services-intro .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.art-services-intro h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.art-services-intro p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.art-services-intro p em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.art-services-section {
    padding: 40px 0 100px;
}

.art-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.art-service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.art-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.art-service-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.art-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.art-service-body {
    padding: 36px 36px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.art-service-card h3 {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.art-service-card .service-intro {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.art-service-card .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.art-service-card .service-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.art-service-card .service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 10px;
    height: 1px;
    background: var(--accent);
}

@media (max-width: 768px) {
    .art-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .art-service-body {
        padding: 28px 24px 32px;
    }
    .art-services-intro {
        padding: 60px 0 40px;
    }
    .art-services-section {
        padding: 20px 0 60px;
    }
}

/* Art Services Gallery Strip */
.art-services-gallery {
    padding: 40px 0 60px;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 960 / 466;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .art-services-gallery {
        padding: 20px 0 40px;
    }
}
