/* =============================================================
   Rich Harris Trumpet — Main Stylesheet
   Design: Premium Orchestral | Navy · Gold · Ivory
   ============================================================= */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
    /* Brand Colors */
    --navy-deep:    #0B1120;
    --navy-mid:     #111827;
    --navy-light:   #1E2D45;
    --gold-bright:  #C9A84C;
    --gold-light:   #E2C47A;
    --gold-dark:    #9A7830;
    --ivory:        #F5F0E8;
    --ivory-dark:   #EDE6D6;
    --white:        #FFFFFF;
    --text-light:   #CBD5E1;
    --text-muted:   #94A3B8;
    --border-gold:  rgba(201, 168, 76, 0.3);
    --border-navy:  rgba(255,255,255,0.08);

    /* Typography */
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad:  100px;
    --container:    1180px;

    /* Transitions */
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --duration:     0.3s;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--navy-deep);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
    display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-deep);
    margin-bottom: 20px;
}
.section-headline.light { color: var(--white); }

.section-subhead {
    font-size: 1.1rem;
    color: #475569;
    max-width: 640px;
    line-height: 1.75;
}
.section-subhead.light { color: var(--text-light); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold {
    background: var(--gold-bright);
    color: var(--navy-deep);
    border-color: var(--gold-bright);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--navy-deep);
    border-color: var(--navy-light);
}
.btn-outline-dark:hover {
    background: var(--navy-deep);
    color: var(--white);
    border-color: var(--navy-deep);
    transform: translateY(-2px);
}

/* ─── HEADER / NAVIGATION ────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--duration) var(--ease), padding var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
    background: rgba(11, 17, 32, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}
.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.04em;
    transition: color var(--duration) var(--ease);
    position: relative;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: width var(--duration) var(--ease);
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }

.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: var(--white);
    transition: all var(--duration) var(--ease);
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(135deg, rgba(11,17,32,0.92) 0%, rgba(30,45,69,0.85) 50%, rgba(11,17,32,0.95) 100%),
        url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 32px 80px;
    overflow: hidden;
}

/* Decorative musical staff lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 48px,
        rgba(201, 168, 76, 0.04) 48px,
        rgba(201, 168, 76, 0.04) 50px
    );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-headline br + * { color: var(--gold-light); }

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-bright), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── AUTHORITY BAR ──────────────────────────────────────────── */
.authority-bar {
    background: var(--navy-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 40px 0;
}

.authority-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.authority-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 48px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    max-width: 140px;
    text-align: center;
}

.authority-divider {
    width: 1px;
    height: 60px;
    background: var(--border-gold);
    flex-shrink: 0;
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
    background: var(--ivory);
    padding: var(--section-pad) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--navy-light);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-frame.no-image {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}
.about-image-frame.no-image::after {
    content: 'Dr. Richard Harris\APhoto Coming Soon';
    white-space: pre;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold-bright);
    color: var(--navy-deep);
    padding: 10px 18px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-content .section-headline { color: var(--navy-deep); }
.about-body {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
}

.credential-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.5;
}

.credential-icon {
    color: var(--gold-bright);
    font-size: 0.6rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem-section {
    background: var(--navy-mid);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border-navy);
}

.problem-header {
    text-align: center;
    margin-bottom: 64px;
}
.problem-header .section-subhead {
    color: var(--text-light);
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.problem-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-navy);
    border-top: 3px solid var(--gold-bright);
    border-radius: 4px;
    padding: 36px 28px;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.problem-icon {
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin-bottom: 16px;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

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

.problem-cta-text {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ─── METHOD SECTION ─────────────────────────────────────────── */
.method-section {
    background: var(--ivory);
    padding: var(--section-pad) 0;
}

.method-header {
    text-align: center;
    margin-bottom: 72px;
}
.method-header .section-subhead {
    margin: 0 auto;
    color: #475569;
}

.method-pillars {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.pillar {
    flex: 1;
    padding: 56px 48px;
    position: relative;
}

.pillar-divider {
    width: 1px;
    background: var(--ivory-dark);
    flex-shrink: 0;
}

.pillar-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}
.pillar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-bright);
}

.pillar-body {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}

/* ─── OFFERS SECTION ─────────────────────────────────────────── */
.offers-section {
    background: var(--navy-deep);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border-navy);
}

.offers-header {
    text-align: center;
    margin-bottom: 64px;
}
.offers-header .section-subhead {
    margin: 0 auto;
    color: var(--text-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.offer-card {
    background: var(--navy-light);
    border: 1px solid var(--border-navy);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    position: relative;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.offer-card--featured {
    border-color: var(--gold-bright);
    background: var(--navy-mid);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(201,168,76,0.15);
}
.offer-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.offer-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-bright);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-bottom-left-radius: 4px;
}

.offer-card-top {
    padding: 36px 32px 24px;
    border-bottom: 1px solid var(--border-navy);
}

.offer-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-dark);
    opacity: 0.4;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.offer-subtitle {
    font-size: 0.85rem;
    color: var(--gold-bright);
    font-weight: 600;
}

.offer-card-body {
    padding: 28px 32px;
    flex: 1;
}

.offer-card-body p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offer-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}
.offer-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-bright);
    font-size: 0.8rem;
}

.offer-card-footer {
    padding: 24px 32px 32px;
}

/* ─── VIDEO SECTION ──────────────────────────────────────────── */
.video-section {
    background: var(--navy-mid);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border-navy);
}

.video-header {
    text-align: center;
    margin-bottom: 56px;
}
.video-header .section-subhead {
    margin: 0 auto;
}

.video-embed-wrap {
    max-width: 860px;
    margin: 0 auto 40px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    border: 1px solid var(--border-gold);
}
.video-embed-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.video-placeholder {
    background: var(--navy-light);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}
.video-placeholder:hover { background: rgba(30,45,69,0.9); }

.video-play-btn svg {
    width: 80px;
    height: 80px;
    transition: transform var(--duration) var(--ease);
}
.video-placeholder:hover .video-play-btn svg { transform: scale(1.1); }

.video-placeholder-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
}
.video-placeholder-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 360px;
}

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

/* ─── TESTIMONIALS SECTION ───────────────────────────────────── */
.testimonials-section {
    background: var(--ivory);
    padding: var(--section-pad) 0;
}

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

.testimonial-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0;
}
.testimonial-item--reverse {
    grid-template-columns: 1fr 100px;
}
.testimonial-item--reverse .testimonial-avatar {
    order: 2;
}
.testimonial-item--reverse .testimonial-content {
    order: 1;
    text-align: right;
}
.testimonial-item--reverse .testimonial-cite { justify-content: flex-end; }

.testimonial-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border: 3px solid var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-bright);
    flex-shrink: 0;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.4;
    margin-bottom: 20px;
    quotes: none;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold-bright); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold-bright); }

.testimonial-cite {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
    font-style: normal;
}
.testimonial-cite strong {
    color: var(--navy-deep);
    font-weight: 700;
}

.testimonial-divider {
    height: 1px;
    background: var(--ivory-dark);
    margin: 0;
}

/* ─── STUDIO / MEMBERSHIP SECTION ───────────────────────────── */
.studio-section {
    background: var(--navy-deep);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border-navy);
}

.studio-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.studio-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.studio-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--gold-bright);
    font-size: 0.6rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.studio-feature strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.studio-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Card */
.studio-pricing-card {
    background: var(--navy-light);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 48px 40px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.3);
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    line-height: 1;
}
.price-from {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.price-number {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-guarantee {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 24px;
}

.pricing-includes {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-navy);
    padding-top: 24px;
}
.pricing-includes li {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ─── FINAL CTA SECTION ──────────────────────────────────────── */
.final-cta-section {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
    border-top: 1px solid var(--border-gold);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-body {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

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

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    background: #060D1A;
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--duration) var(--ease);
}
.footer-nav a:hover { color: var(--gold-bright); }

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: #4B5563;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-frame { min-height: 360px; }

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

    .method-pillars { flex-direction: column; }
    .pillar-divider { width: 100%; height: 1px; }

    .studio-inner { grid-template-columns: 1fr; gap: 48px; }
    .studio-pricing-card { position: static; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }

    .header-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }

    .header-nav.open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(11,17,32,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    .header-nav.open .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .header-nav.open .nav-list a {
        font-size: 1.4rem;
        color: var(--white);
    }

    .hero { background-attachment: scroll; }
    .hero-ctas { flex-direction: column; align-items: center; }

    .authority-grid { gap: 0; }
    .authority-stat { padding: 16px 24px; }
    .authority-divider { display: none; }

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

    .offers-grid { grid-template-columns: 1fr; }
    .offer-card--featured { transform: none; }
    .offer-card--featured:hover { transform: translateY(-8px); }

    .testimonial-item,
    .testimonial-item--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonial-item--reverse .testimonial-avatar { order: 1; }
    .testimonial-item--reverse .testimonial-content { order: 2; text-align: left; }
    .testimonial-item--reverse .testimonial-cite { justify-content: flex-start; }

    .final-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero { padding: 100px 20px 60px; }
    .pillar { padding: 40px 28px; }
    .studio-pricing-card { padding: 36px 24px; }
}

/* ─── LEAD CAPTURE POPUP ────────────────────────────────────── */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 13, 26, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: var(--ivory);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 780px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s var(--ease);
}
.popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
    line-height: 1;
}
.popup-close:hover {
    background: var(--navy-deep);
    color: var(--white);
}

/* Left panel — PDF cover mockup */
.popup-left {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-light) 100%);
    padding: 48px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 3px solid var(--gold-bright);
}

.popup-pdf-cover {
    background: var(--navy-mid);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0 var(--gold-dark), 0 16px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
.popup-pdf-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 14px,
        rgba(201,168,76,0.06) 14px,
        rgba(201,168,76,0.06) 15px
    );
}

.pdf-cover-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 16px;
}

.pdf-cover-eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 10px;
}

.pdf-cover-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.pdf-cover-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.pdf-cover-rule {
    width: 40px;
    height: 1px;
    background: var(--gold-bright);
    margin: 0 auto 14px;
}

.pdf-cover-author {
    font-size: 0.65rem;
    color: var(--text-light);
    line-height: 1.5;
}
.pdf-cover-author span {
    color: var(--text-muted);
    font-size: 0.6rem;
}

/* Right panel — form */
.popup-right {
    padding: 48px 40px;
    background: var(--ivory);
}

.popup-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    display: block;
}

.popup-headline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 12px;
}

.popup-body {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popup-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup-field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy-deep);
    text-transform: uppercase;
}

.popup-field input {
    padding: 13px 16px;
    border: 1.5px solid #D1D5DB;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--navy-deep);
    background: var(--white);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    outline: none;
}
.popup-field input:focus {
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.popup-field input.error {
    border-color: #EF4444;
}

.popup-submit {
    margin-top: 4px;
    font-size: 1rem;
    padding: 16px;
}

.popup-privacy {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-align: center;
    margin-top: 4px;
}

.popup-error {
    font-size: 0.85rem;
    color: #EF4444;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 4px;
    padding: 10px 14px;
    margin-top: 4px;
}

/* Success state */
.popup-success {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--navy-deep);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.popup-success h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 12px;
}
.popup-success p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* Trigger button in hero/offer sections */
.popup-trigger { cursor: pointer; }

/* Responsive popup — mobile */
@media (max-width: 680px) {
    /* Overlay: full-screen, aligned to bottom so card slides up */
    .popup-overlay {
        padding: 0;
        align-items: flex-end;
    }
    /* Card: single column, slides up from bottom */
    .popup-card {
        grid-template-columns: 1fr;
        border-radius: 16px 16px 0 0;
        /* dvh fallback chain: use vh for old browsers, dvh for modern ones */
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Override the desktop scale/translate — use translateY only */
        transform: translateY(100%) !important;
        transition: transform 0.4s var(--ease) !important;
        width: 100%;
        max-width: 100%;
    }
    /* Active state: slide fully into view */
    .popup-overlay.active .popup-card {
        transform: translateY(0) !important;
    }
    /* Hide decorative left panel on mobile */
    .popup-left { display: none; }
    /* Form panel: comfortable padding with extra bottom for home-bar devices */
    .popup-right {
        padding: 36px 24px 52px;
    }
    /* Close button: larger tap target, high contrast on ivory background */
    .popup-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
        background: var(--navy-deep);
        color: var(--white);
        border-radius: 50%;
    }
    .popup-headline { font-size: 1.45rem; }
    .popup-body { font-size: 0.9rem; }
    /* Make inputs easier to tap on mobile */
    .popup-field input {
        font-size: 1rem;  /* prevents iOS auto-zoom on focus */
        padding: 15px 16px;
    }
    .popup-submit { padding: 18px; font-size: 1rem; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
