/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #C4973B;
    --gold-light: #E8D5A3;
    --gold-dark: #A67C2E;
    --deep: #1A1A2E;
    --deep-mid: #16213E;
    --cream: #FAF6F0;
    --warm-white: #FFFDF9;
    --text: #2D2D3A;
    --text-light: #6B6B7B;
    --accent-rose: #8B4557;
    --success: #2E7D32;
    --error: #C62828;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: rgba(26, 26, 46, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold);
}

.nav-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep);
    background: var(--gold);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
    background: transparent;
    color: var(--deep);
    border: 1px solid rgba(26,26,46,0.2);
}

.btn-outline-dark:hover {
    border-color: var(--deep);
    background: rgba(26,26,46,0.03);
}

.btn-dark {
    background: var(--deep);
    color: white;
}

.btn-dark:hover {
    background: var(--deep-mid);
    transform: translateY(-1px);
}

.btn-rose {
    background: var(--accent-rose);
    color: white;
}

.btn-rose:hover {
    background: #A05068;
    transform: translateY(-1px);
}

.text-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 24px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--gold);
}

.card-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--gold);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(170deg, var(--deep) 0%, #16213E 40%, #0F3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 151, 59, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(139, 69, 87, 0.06) 0%, transparent 50%);
    animation: shimmer 20s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, 3%) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

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

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===== PAGE HERO (Interior pages) ===== */
.page-hero {
    padding: 160px 24px 80px;
    background: linear-gradient(170deg, var(--deep) 0%, #16213E 40%, #0F3460 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 151, 59, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(139, 69, 87, 0.06) 0%, transparent 50%);
}

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

.page-hero .section-label {
    color: var(--gold);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== STORY / BIO SECTION ===== */
.story {
    padding: 120px 24px;
    background: var(--cream);
}

.story-inner {
    max-width: 720px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
}

.story h2, .topics-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 40px;
    color: var(--deep);
}

.story p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 300;
}

.story p strong {
    color: var(--text);
    font-weight: 500;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 48px 0;
}

/* ===== TOPICS PREVIEW ===== */
.topics-preview {
    padding: 100px 24px;
    background: var(--warm-white);
}

.topics-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
    text-align: left;
}

.topic-card {
    padding: 40px 32px;
    background: var(--cream);
    border: 1px solid rgba(196, 151, 59, 0.12);
    border-radius: 2px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.topic-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.topic-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.topic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 12px;
}

.topic-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

.topics-cta {
    margin-top: 48px;
}

/* ===== OFFERINGS ===== */
.offerings {
    padding: 100px 24px;
    background: var(--warm-white);
}

.offerings-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.offerings-header {
    text-align: center;
    margin-bottom: 72px;
}

.offerings-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--deep);
    margin-bottom: 16px;
}

.offerings-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
}

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

.offering-card {
    padding: 48px 36px;
    border: 1px solid rgba(196, 151, 59, 0.15);
    border-radius: 2px;
    background: var(--cream);
    transition: border-color 0.3s ease;
}

.offering-card:hover {
    border-color: var(--gold);
}

.offering-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-light);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.offering-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 16px;
}

.offering-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== BOOK SECTION ===== */
.book-section {
    padding: 100px 24px;
    background: var(--deep);
    color: white;
    position: relative;
    overflow: hidden;
}

.book-section::after {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -40px;
    right: 5%;
    font-size: 30rem;
    color: rgba(196, 151, 59, 0.04);
    line-height: 1;
    pointer-events: none;
}

.book-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.book-section .section-label {
    color: var(--gold);
}

.book-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 32px;
}

.book-section h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.book-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 24px;
    background: var(--cream);
}

.testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--deep);
    margin-bottom: 48px;
}

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

.testimonial-card {
    padding: 40px;
    background: white;
    border-left: 3px solid var(--gold);
    border-radius: 0 2px 2px 0;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
    padding: 140px 24px;
    text-align: center;
    background: linear-gradient(to bottom, var(--cream), var(--warm-white));
}

.closing-inner {
    max-width: 680px;
    margin: 0 auto;
}

.closing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--deep);
    margin-bottom: 28px;
}

.closing p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.closing-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.closing-verse {
    margin-top: 48px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent-rose);
    opacity: 0.85;
}

/* ===== CONTENT SECTIONS (Interior pages) ===== */
.content-section {
    padding: 100px 24px;
}

.content-section.bg-cream { background: var(--cream); }
.content-section.bg-white { background: var(--warm-white); }
.content-section.bg-deep { background: var(--deep); color: white; }

.content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.content-inner-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.content-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--deep);
    margin-bottom: 20px;
    line-height: 1.25;
}

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

.content-section.bg-deep .content-inner h2 {
    color: white;
}

.content-inner p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section.bg-deep .content-inner p {
    color: rgba(255,255,255,0.65);
}

/* ===== SPEAKING TOPICS (Full page) ===== */
.topic-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
}

.topic-full {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 48px;
    background: var(--cream);
    border: 1px solid rgba(196, 151, 59, 0.12);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.topic-full:hover {
    border-color: var(--gold);
}

.topic-full-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold-light);
    font-weight: 900;
    line-height: 1;
}

.topic-full h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 12px;
}

.topic-full p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.topic-full .topic-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.topic-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(196, 151, 59, 0.1);
    color: var(--gold-dark);
    border-radius: 2px;
}

/* ===== PAST EVENTS ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.event-card {
    padding: 32px;
    background: white;
    border: 1px solid rgba(196, 151, 59, 0.1);
    border-radius: 2px;
}

.event-date {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.event-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
}

.event-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ===== BOOKING / CONTACT FORM ===== */
.form-section {
    padding: 100px 24px;
    background: var(--deep);
    color: white;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 151, 59, 0.06) 0%, transparent 50%);
}

.form-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.form-inner > p {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

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

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    background: rgba(255,255,255,0.05);
    color: white;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C4973B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--deep);
    color: white;
}

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

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

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 0.9rem;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #81C784;
}

.form-message.error {
    display: block;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #EF9A9A;
}

/* ===== BOOK PAGE ===== */
.book-excerpt {
    padding: 48px;
    background: rgba(196, 151, 59, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 2px 2px 0;
    margin: 40px 0;
}

.book-excerpt p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.9;
    font-weight: 400;
}

.book-excerpt .excerpt-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
    margin-bottom: 16px;
    display: block;
}

.book-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.book-detail {
    text-align: center;
    padding: 32px 20px;
}

.book-detail-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.book-detail-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep);
}

.purchase-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: center;
}

/* ===== CONTACT INFO ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-info-card {
    padding: 40px;
    background: var(--cream);
    border: 1px solid rgba(196, 151, 59, 0.12);
    border-radius: 2px;
    text-align: center;
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.contact-info-card a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 24px 40px;
    background: var(--deep);
    color: rgba(255,255,255,0.35);
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 8px;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-verse {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.25);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        backdrop-filter: blur(12px);
    }

    .nav-links.open {
        display: flex;
    }

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

    .hero { padding: 60px 20px; min-height: 90vh; }
    .hero-actions { flex-direction: column; align-items: center; }
    .story, .offerings, .book-section, .content-section { padding: 72px 20px; }
    .closing { padding: 96px 20px; }
    .offering-card { padding: 36px 28px; }
    .offerings-grid { gap: 24px; }

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

    .topic-full {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px;
    }

    .topic-full-num {
        font-size: 2rem;
    }

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

    .closing-actions { flex-direction: column; align-items: center; }

    .page-hero { padding: 140px 20px 60px; }

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

@media (max-width: 480px) {
    .hero-label { font-size: 0.65rem; letter-spacing: 3px; }
    .hero-sub { font-size: 1rem; }
    .story p, .book-section p, .closing p, .content-inner p { font-size: 1rem; }
    .topic-full { padding: 24px; }
    .event-card { padding: 24px; }
    .book-excerpt { padding: 32px; }
}

/* ===== HERO WITH IMAGE ===== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-split .hero-content {
    text-align: left;
    max-width: none;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(196, 151, 59, 0.15);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(196, 151, 59, 0.12) 0%, transparent 70%);
    border-radius: 8px;
    z-index: -1;
}

/* ===== BIO SECTION WITH PHOTO ===== */
.story-with-photo {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.bio-photo-container {
    position: sticky;
    top: 100px;
}

.bio-photo {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.bio-photo-accent {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 20px;
}

/* ===== PHOTO GALLERY ===== */
.gallery {
    padding: 100px 24px;
    background: var(--warm-white);
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.gallery-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--deep);
    margin-bottom: 48px;
}

.gallery-inner h2 em {
    color: var(--gold);
    font-style: italic;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* ===== SONG SECTION ===== */
.song-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--deep) 0%, #1a1a3e 50%, #2a1a3e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.song-section::before {
    content: '\266B';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(196, 151, 59, 0.04);
    line-height: 1;
    pointer-events: none;
}

.song-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.song-section .section-label {
    color: var(--gold);
}

.song-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.song-section h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.song-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.song-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(196, 151, 59, 0.12);
    border: 1px solid rgba(196, 151, 59, 0.25);
    border-radius: 4px;
    margin-top: 24px;
}

.song-badge-icon {
    font-size: 1.4rem;
    color: var(--gold);
}

.song-badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* ===== SPEAKER IMAGE (speaking page) ===== */
.speaker-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.speaker-hero-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    object-fit: cover;
    aspect-ratio: 3/4;
    margin: 0 auto;
}

.speaker-inline-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    margin: 32px auto;
    display: block;
}

/* ===== BOOK PAGE IMAGE ===== */
.book-overview-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.book-author-photo {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.15);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* ===== BIO FULL TEXT ===== */
.bio-text-full {
    max-height: 400px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s ease;
}

.bio-text-full.expanded {
    max-height: 3000px;
}

.bio-text-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bio-text-full.expanded::after {
    opacity: 0;
}

.bio-read-more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gold-dark);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.3s ease;
}

.bio-read-more:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-split .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image-container {
        order: 1;
    }

    .hero-image {
        max-width: 320px;
    }

    .story-with-photo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-photo-container {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bio-photo {
        max-width: 280px;
    }

    .speaker-hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .speaker-hero-image {
        max-width: 300px;
    }

    .book-overview-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .book-author-photo {
        max-width: 280px;
        margin: 0 auto;
    }

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

    .gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 260px;
    }

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

    .bio-photo {
        max-width: 220px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
