/* BowersEdge.com — Styles */

:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --bg-tertiary: #1a1a1a;
            --text-primary: #f5f5f5;
            --text-secondary: #a0a0a0;
            --text-muted: #666;
            --accent: #c9a962;
            --accent-hover: #dfc07a;
            --border: #2a2a2a;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.75rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-cta {
            background: var(--accent);
            color: var(--bg-primary);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.03em;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 14rem 4rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 98, 0.03) 100%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--accent);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--accent);
            color: var(--bg-primary);
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .hero-cta:hover {
            background: var(--accent-hover);
            transform: translateX(8px);
        }

        .hero-cta svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover svg {
            transform: translateX(4px);
        }

        /* Stats Bar */
        .stats-bar {
            padding: 4rem;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Section Styles */
        section {
            padding: 8rem 4rem;
        }

        .section-header {
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* About Section */
        #about {
            background: var(--bg-primary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-image {
            position: relative;
        }

        .about-image-placeholder {
            aspect-ratio: 4/5;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 2rem;
            left: 2rem;
            right: -2rem;
            bottom: -2rem;
            border: 1px solid var(--accent);
            z-index: -1;
        }

        .about-content h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.0625rem;
            line-height: 1.9;
        }

        .credentials {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .credentials h4 {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .credential-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .credential {
            background: var(--bg-tertiary);
            padding: 0.5rem 1rem;
            font-size: 0.8125rem;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        /* Services Section */
        #services {
            background: var(--bg-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-primary);
            padding: 3rem;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--accent);
            transition: height 0.4s ease;
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-topics {
            list-style: none;
        }

        .service-topics li {
            padding: 0.5rem 0;
            font-size: 0.875rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .service-topics li:last-child {
            border-bottom: none;
        }

        .service-topics li::before {
            content: '→';
            color: var(--accent);
        }

        /* Pricing Section */
        #pricing {
            background: var(--bg-primary);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-secondary);
            padding: 3rem;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card.featured {
            border-color: var(--accent);
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--accent);
            color: var(--bg-primary);
            padding: 0.5rem 1.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .pricing-card:hover {
            border-color: var(--accent);
        }

        .pricing-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .pricing-description {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .pricing-amount {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .pricing-period {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 1px solid var(--accent);
            color: var(--accent);
            background: transparent;
        }

        .pricing-cta:hover {
            background: var(--accent);
            color: var(--bg-primary);
        }

        .pricing-card.featured .pricing-cta {
            background: var(--accent);
            color: var(--bg-primary);
        }

        .pricing-card.featured .pricing-cta:hover {
            background: var(--accent-hover);
        }

        /* Speaking Section */
        #speaking {
            background: var(--bg-secondary);
            padding: 0;
        }

        .speaking-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .speaking-topics h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .topic-list {
            list-style: none;
        }

        .topic-list li {
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 1.0625rem;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: color 0.3s ease;
        }

        .topic-list li:hover {
            color: var(--text-primary);
        }

        .topic-list li::before {
            content: '◆';
            color: var(--accent);
            font-size: 0.5rem;
            margin-top: 0.5rem;
        }

        .speaking-cta-box {
            background: var(--bg-primary);
            padding: 3rem;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .speaking-cta-box h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .speaking-cta-box p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .speaking-cta-box a {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: gap 0.3s ease;
        }

        .speaking-cta-box a:hover {
            gap: 1.25rem;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: var(--bg-primary);
            padding: 8rem 4rem;
            text-align: center;
        }

        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .testimonial-quote::before {
            content: '"';
            display: block;
            font-size: 4rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-size: 0.875rem;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            padding: 8rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary {
            background: var(--accent);
            color: var(--bg-primary);
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .cta-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .cta-secondary {
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 4rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-brand h3 span {
            color: var(--accent);
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-contact {
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

        .footer-contact a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-column h4 {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9375rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 6rem 2rem 4rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            section {
                padding: 4rem 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

            .speaking-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content > * {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .hero-label { animation-delay: 0.1s; }
        .hero h1 { animation-delay: 0.2s; }
        .hero-subtitle { animation-delay: 0.3s; }
        .hero-cta { animation-delay: 0.4s; }

        /* =================================================================
           NEW SECTIONS — Images + emotional content expansion
           ================================================================= */

        /* Hero — split grid layout (overrides original flex/centered) */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 8rem 0 4rem 4rem;
            gap: 0;
        }

        .hero-content {
            max-width: none;
            padding-right: 4rem;
        }

        .hero-photo {
            position: relative;
            height: 100%;
            min-height: 100vh;
            overflow: hidden;
        }

        .hero-photo::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 100%;
            background: linear-gradient(to right, var(--bg-primary), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .hero-photo img {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        /* About — real photo replaces placeholder */
        .about-image img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        /* Insight Section */
        .insight-section {
            background: var(--bg-secondary);
            padding: 8rem 4rem;
            text-align: center;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .insight-inner {
            max-width: 760px;
            margin: 0 auto;
        }

        .insight-headline {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 500;
            line-height: 1.15;
            margin: 1.5rem 0 3rem;
            letter-spacing: -0.02em;
        }

        .insight-headline em {
            font-style: italic;
            color: var(--accent);
        }

        .insight-body {
            max-width: 600px;
            margin: 0 auto;
        }

        .insight-body p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .insight-emphasis {
            font-family: var(--font-display);
            font-size: 1.875rem;
            font-style: italic;
            color: var(--accent);
            margin-top: 1rem;
        }

        /* Connection Section */
        .connection-section {
            background: var(--bg-primary);
            padding: 0;
            overflow: hidden;
        }

        .connection-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .connection-photo {
            height: 720px;
            overflow: hidden;
        }

        .connection-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .connection-content {
            padding: 5rem 4rem 5rem 6rem;
        }

        .connection-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 500;
            margin: 1rem 0 2rem;
            line-height: 1.2;
        }

        .connection-pullquote {
            font-family: var(--font-display);
            font-size: 1.375rem;
            font-style: italic;
            color: var(--accent);
            border-left: 3px solid var(--accent);
            padding-left: 1.5rem;
            margin: 0 0 2rem;
            line-height: 1.65;
        }

        .connection-content p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 1.25rem;
        }

        .connection-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(201, 169, 98, 0.4);
            padding-bottom: 0.25rem;
            transition: gap 0.3s ease, border-color 0.3s ease;
        }

        .connection-cta:hover {
            gap: 1.25rem;
            border-bottom-color: var(--accent);
        }

        .connection-cta svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* Premium Section */
        .premium-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
        }

        .premium-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .premium-card {
            background: var(--bg-primary);
            padding: 3rem;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.4s ease;
        }

        .premium-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .premium-card-featured {
            border-color: var(--accent);
            background: linear-gradient(160deg, var(--bg-primary) 0%, rgba(201, 169, 98, 0.04) 100%);
        }

        .premium-badge {
            position: absolute;
            top: 0;
            right: 2rem;
            transform: translateY(-50%);
            background: var(--accent);
            color: var(--bg-primary);
            padding: 0.4rem 1.1rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .premium-icon {
            width: 44px;
            height: 44px;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .premium-icon svg {
            width: 100%;
            height: 100%;
        }

        .premium-card h3 {
            font-family: var(--font-display);
            font-size: 1.625rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .premium-description {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .premium-includes {
            list-style: none;
            margin-bottom: 2rem;
        }

        .premium-includes li {
            padding: 0.5rem 0;
            font-size: 0.875rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .premium-includes li:last-child {
            border-bottom: none;
        }

        .premium-includes li::before {
            content: '◆';
            color: var(--accent);
            font-size: 0.4rem;
            flex-shrink: 0;
        }

        .premium-price {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        .premium-cta {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding-bottom: 0.15rem;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .premium-cta:hover {
            border-bottom-color: var(--accent);
            letter-spacing: 0.08em;
        }

        .premium-note {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .premium-note p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .premium-note a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid rgba(201, 169, 98, 0.4);
            padding-bottom: 0.1em;
            transition: border-color 0.3s ease;
        }

        .premium-note a:hover {
            border-bottom-color: var(--accent);
        }

        /* Responsive — new sections */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 6rem 2rem 0;
                min-height: auto;
                gap: 0;
            }

            .hero-content {
                padding-right: 0;
                padding-bottom: 3rem;
            }

            .hero-photo {
                min-height: auto;
                height: 60vw;
                max-height: 560px;
            }

            .hero-photo img {
                min-height: auto;
            }

            .connection-grid {
                grid-template-columns: 1fr;
            }

            .connection-photo {
                height: 55vw;
                min-height: 280px;
            }

            .connection-content {
                padding: 4rem 2rem;
            }

            .premium-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-photo {
                height: 70vw;
                max-height: 400px;
            }

            .insight-section {
                padding: 5rem 2rem;
            }

            .insight-headline {
                font-size: 2.25rem;
            }

            .connection-photo {
                height: 75vw;
            }

            .premium-badge {
                right: 1rem;
            }
        }

/* ============================================
   LOGO IMAGE
   ============================================ */

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 160px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 120px;
    margin-bottom: 1.5rem;
}

/* ============================================
   INSIGHT SECTION — SPLIT GRID LAYOUT
   (overrides earlier centered layout)
   ============================================ */

.insight-section {
    padding: 0;
    text-align: left;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.insight-photo {
    overflow: hidden;
    position: relative;
}

.insight-photo img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.insight-inner {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-secondary);
}

@media (max-width: 1024px) {
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-photo img {
        min-height: auto;
        height: 55vw;
        max-height: 480px;
    }

    .insight-inner {
        padding: 5rem 3rem;
        text-align: center;
    }

    .insight-headline {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .insight-photo img {
        height: 70vw;
    }

    .insight-inner {
        padding: 4rem 2rem;
    }

    .insight-section {
        padding: 0;
    }
}

/* ============================================
   INTAKE / CONTACT FORM
   ============================================ */

.intake-section {
    background: var(--bg-primary);
    padding: 8rem 4rem;
    border-top: 1px solid var(--border);
}

.intake-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.intake-intro {
    position: sticky;
    top: 7rem;
}

.intake-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.intake-intro p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-section-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    display: block;
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.form-label .optional {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72rem;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.65;
}

.form-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.form-checks.single-col {
    grid-template-columns: 1fr;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    transition: border-color 0.2s ease;
    user-select: none;
}

.form-check:hover {
    border-color: var(--accent);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--border);
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.form-check input[type="radio"] {
    border-radius: 50%;
}

.form-check input[type="checkbox"]:checked,
.form-check input[type="radio"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.form-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--bg-primary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.form-check input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg-primary);
}

.check-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.form-submit-row {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.form-submit {
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.form-submit:hover {
    opacity: 0.86;
}

.form-submit svg {
    width: 1rem;
    height: 1rem;
}

.form-alt-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-alt-note a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.form-alt-note a:hover {
    border-bottom-color: var(--accent);
}

.form-success {
    display: none;
    padding: 4rem 3rem;
    border: 1px solid var(--accent);
    text-align: center;
}

.form-success.visible {
    display: block;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin: 1rem 0;
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .intake-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intake-intro {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-checks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .intake-section {
        padding: 5rem 2rem;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* ============================================
   SPEAKING SECTION — IMAGE HERO REDESIGN
   ============================================ */

.speaking-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    overflow: hidden;
}

.speaking-hero-photo {
    position: relative;
    overflow: hidden;
}

.speaking-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.speaking-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--bg-primary);
}

.speaking-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.speaking-hero-text {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

.speaking-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.speaking-hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.speaking-hero-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.speaking-hero-cta:hover svg {
    transform: translateX(4px);
}

/* Speaking lower grid — topics + audiences */
.speaking-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.speaking-audiences h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.0625rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: color 0.3s ease;
}

.audience-list li:hover {
    color: var(--text-primary);
}

.audience-list li::before {
    content: '◆';
    color: var(--accent);
    font-size: 0.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   LOGO BRAND STAMPS — TESTIMONIAL + INTAKE
   ============================================ */

.testimonial-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.testimonial-logo-img {
    height: 90px;
    width: auto;
    opacity: 0.8;
}

.intake-logo {
    margin: 1.5rem 0 2rem;
}

.intake-logo-img {
    height: 110px;
    width: auto;
}

/* ============================================
   SPEAKING + LOGO RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    /* Shrink logo so mobile nav stays manageable */
    .logo-img {
        height: 100px;
    }

    .footer-logo {
        height: 90px;
    }

    .speaking-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .speaking-hero-photo {
        height: 420px;
    }

    .speaking-hero-content {
        padding: 3.5rem 2.5rem;
    }

    .speaking-lower {
        grid-template-columns: 1fr;
        padding: 3.5rem 2.5rem;
        gap: 3rem;
    }

    .testimonial-logo-img {
        height: 72px;
    }

    .intake-logo-img {
        height: 90px;
    }
}

@media (max-width: 640px) {
    /* Further reduce logo on small phones */
    .logo-img {
        height: 72px;
    }

    .footer-logo {
        height: 72px;
    }

    .speaking-hero-photo {
        height: 300px;
    }

    .speaking-hero-content {
        padding: 2.5rem 1.5rem;
    }

    .speaking-lower {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-logo-img {
        height: 60px;
    }

    .intake-logo-img {
        height: 72px;
    }
}
