/*
Theme Name: Curious Business
Theme URI: https://curiousbusiness.co.uk
Author: Curious Business
Author URI: https://curiousbusiness.co.uk
Description: A bold, structured single-page theme for podcast production services. Features dark design with yellow accents, smooth scroll animations, and sections for services, benefits, approach, and portfolio.
Version: 2.6.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: curious-business
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --yellow: #f5c518;
    --yellow-dark: #d4a912;
    --yellow-light: #ffe066;
    --grey-dark: #1a1a1a;
    --grey-mid: #2d2d2d;
    --grey-light: #a8a8a8;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.nav-brand {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

.nav-brand {
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand-icon svg {
    width: 20px;
    height: 20px;
}

/* Primary Navigation */
.primary-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: nowrap;
}

.primary-navigation a {
    color: var(--grey-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.primary-navigation a:hover {
    color: var(--white);
}

.primary-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.primary-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Custom Logo */
.nav-brand .custom-logo {
    max-height: 50px;
    width: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        z-index: 1002;
        position: relative;
    }

    .site-header {
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);
    }

    .primary-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #0a0a0a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .primary-navigation.is-open {
        opacity: 1;
        visibility: visible;
    }

    .primary-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .primary-navigation a {
        font-size: 1.5rem;
        color: var(--white);
    }

    .nav-cta {
        position: relative;
        z-index: 1003;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(245,197,24,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245,197,24,0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--yellow);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-section h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-section h1 span {
    color: var(--yellow);
}

.hero-description {
    font-size: 1.35rem;
    color: var(--grey-light);
    max-width: 600px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--yellow);
    color: var(--black);
    padding: 1.25rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-cta:hover {
    background: var(--white);
    transform: translateX(10px);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Waveform decoration */
.hero-waveform {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 60%;
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

.waveform-bar {
    fill: var(--yellow);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Section Base Styles
   ========================================================================== */

.content-section {
    padding: 8rem 4rem;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--yellow);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    max-width: 800px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    background: var(--grey-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--grey-mid);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: #333;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--grey-light);
    font-size: 1.05rem;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.benefits-section {
    background: var(--black);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-stat {
    background: var(--grey-dark);
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--yellow);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.benefits-content {
    padding: 2rem 0;
}

.benefits-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.benefits-text {
    font-size: 1.1rem;
    color: var(--grey-light);
    line-height: 1.8;
}

.benefits-text a {
    color: var(--yellow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.benefits-text a:hover {
    color: var(--white);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--grey-dark);
    padding: 2.5rem;
    border-left: 4px solid var(--yellow);
    position: relative;
}

.testimonial-card:nth-child(2) {
    margin-top: 3rem;
}

.testimonial-card:nth-child(3) {
    margin-top: 1.5rem;
}

.testimonial-quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--grey-mid);
}

.testimonial-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--grey-light);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        margin-top: 0;
    }
}

/* ==========================================================================
   Approach Section
   ========================================================================== */

.approach-section {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
}

.approach-section .section-label {
    color: var(--black);
}

.approach-section .section-title {
    color: var(--black);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
}

.approach-step {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.15);
    position: relative;
}

.approach-step:last-child {
    border-right: none;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 0.8;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.approach-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.approach-step p {
    font-size: 1rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.portfolio-section {
    background: var(--grey-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background: var(--black);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.podcast-card:hover {
    transform: translateY(-10px);
}

.podcast-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--grey-mid);
    position: relative;
    overflow: hidden;
}

.podcast-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, transparent 50%);
    z-index: 1;
}

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

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

.podcast-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.podcast-info {
    padding: 2rem;
}

.podcast-category {
    color: var(--yellow);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.podcast-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.podcast-info p {
    color: var(--grey-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.podcast-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-mid);
}

.podcast-stat {
    font-size: 0.85rem;
    color: var(--grey-light);
}

.podcast-stat strong {
    color: var(--white);
    margin-right: 0.25rem;
}

.podcast-listen-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--yellow);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.podcast-listen-link:hover {
    color: var(--white);
}

.podcast-listen-link svg {
    transition: transform 0.3s ease;
}

.podcast-listen-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: var(--black);
    text-align: center;
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section-secondary {
    padding: 6rem 4rem;
    background: var(--grey-dark);
}

.cta-section-secondary::before {
    display: none;
}

.cta-section-secondary h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.cta-section p {
    font-size: 1.35rem;
    color: var(--grey-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--yellow);
    color: var(--black);
    padding: 1.5rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(245,197,24,0.3);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-page-section {
    min-height: 100vh;
    padding: 10rem 4rem 6rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--black);
}

.contact-container {
    width: 100%;
    max-width: 700px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.15rem;
    color: var(--grey-light);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--grey-dark);
    padding: 3rem;
    border-top: 4px solid var(--yellow);
}

/* HubSpot Form Overrides */
.contact-form-wrapper .hs-form {
    font-family: 'Source Serif 4', Georgia, serif;
}

.contact-form-wrapper .hs-form-field {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .hs-form-field label {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-wrapper .hs-input {
    width: 100% !important;
    padding: 1rem;
    background: var(--grey-mid);
    border: 1px solid var(--grey-mid);
    color: var(--white);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper .hs-input:focus {
    outline: none;
    border-color: var(--yellow);
}

.contact-form-wrapper textarea.hs-input {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .hs-submit {
    margin-top: 2rem;
}

.contact-form-wrapper .hs-button {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-form-wrapper .hs-button:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.contact-form-wrapper .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.contact-form-wrapper .hs-error-msgs li {
    color: #ff6b6b;
    font-size: 0.85rem;
}

.contact-form-wrapper .submitted-message {
    color: var(--yellow);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 8rem 1.5rem 4rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.single-post-main {
    width: 100%;
}

body.single .site-footer,
body.single-post .site-footer {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Hero: Shorter, Full-width, Centred */
.post-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.3) 100%);
}

.post-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.post-hero .section-label {
    justify-content: center;
    margin-bottom: 1rem;
}

.post-hero .post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-hero .post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--grey-light);
    font-size: 0.9rem;
}

/* Fallback header for posts without featured image */
.post-header {
    text-align: center;
    padding: 10rem 2rem 3rem;
    background: var(--black);
}

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

.post-header .section-label {
    justify-content: center;
    margin-bottom: 1rem;
}

.post-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--grey-light);
    font-size: 0.9rem;
}

.meta-separator {
    opacity: 0.5;
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.main-content {
    min-width: 0;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey-light);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content p.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-content h2 {
    font-size: 2rem;
}

.post-content h3 {
    font-size: 1.6rem;
}

.post-content h4 {
    font-size: 1.3rem;
}

.post-content a {
    color: var(--yellow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: var(--white);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid var(--yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--white);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.post-content pre,
.post-content code {
    background: var(--grey-dark);
    border-radius: 4px;
}

.post-content pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.post-content code {
    padding: 0.2rem 0.4rem;
    font-size: 0.9em;
}

.post-content pre code {
    padding: 0;
    background: none;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--grey-dark);
    padding: 1.5rem;
}

.sidebar-widget h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--yellow);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-buttons a {
    width: 44px;
    height: 44px;
    background: var(--grey-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-light);
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Sidebar Podcast Card */
.sidebar-podcast-card {
    display: block;
}

.sidebar-podcast-image {
    aspect-ratio: 1;
    background: var(--grey-mid);
    overflow: hidden;
    position: relative;
}

.sidebar-podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.sidebar-podcast-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.sidebar-podcast-play svg {
    margin-left: 3px;
    fill: var(--black);
}

.sidebar-podcast-card:hover .sidebar-podcast-play {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.sidebar-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sidebar-cta-button:hover {
    background: var(--grey-dark);
}

/* Post Footer */
.post-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid var(--grey-mid);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    background: var(--grey-dark);
    color: var(--grey-light);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Responsive */
@media (max-width: 900px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1 1 280px;
    }

    .post-hero {
        height: 45vh;
    }

    .post-header {
        padding: 8rem 1.5rem 2rem;
    }

    .post-footer {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Email Sign-up Page
   ========================================================================== */

.signup-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 6rem;
    background: var(--black);
}

.signup-page-content {
    max-width: 600px;
    text-align: center;
}

.signup-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.signup-page-description {
    font-size: 1.2rem;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.signup-form-wrapper {
    background: var(--grey-dark);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.signup-form-wrapper .hs-form-field {
    margin-bottom: 1.5rem;
}

.signup-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--grey-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signup-form-wrapper .hs-input {
    width: 100%;
    padding: 1rem;
    background: var(--grey-mid);
    border: 1px solid var(--grey-mid);
    color: var(--white);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.signup-form-wrapper .hs-input:focus {
    outline: none;
    border-color: var(--yellow);
}

.signup-form-wrapper .hs-submit {
    margin-top: 1.5rem;
}

.signup-form-wrapper .hs-button {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.signup-form-wrapper .hs-button:hover {
    background: var(--white);
}

.signup-form-wrapper .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.signup-form-wrapper .hs-error-msgs li {
    color: #ff6b6b;
    font-size: 0.85rem;
}

.signup-form-wrapper .submitted-message {
    color: var(--yellow);
    font-size: 1.2rem;
    padding: 1rem;
}

.signup-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--grey-mid);
}

.signup-cta p {
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.signup-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.signup-cta-button:hover {
    color: var(--white);
}

.signup-cta-button svg {
    transition: transform 0.3s ease;
}

.signup-cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .signup-page-section {
        padding: 8rem 1.5rem 4rem;
    }

    .signup-form-wrapper {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Blog Archive Page
   ========================================================================== */

.blog-archive-section {
    min-height: 100vh;
    padding: 10rem 4rem 6rem;
    background: var(--black);
}

.blog-archive-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-archive-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.blog-archive-description {
    font-size: 1.2rem;
    color: var(--grey-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: var(--grey-dark);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    display: block;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--grey-mid);
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-light);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--grey-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
    color: var(--white);
}

.blog-card-read-more svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read-more svg {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.blog-pagination a,
.blog-pagination span {
    padding: 0.75rem 1rem;
    background: var(--grey-dark);
    color: var(--grey-light);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background: var(--yellow);
    color: var(--black);
}

.blog-pagination .current {
    background: var(--yellow);
    color: var(--black);
}

.no-posts {
    text-align: center;
    color: var(--grey-light);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .blog-archive-section {
        padding: 8rem 1.5rem 4rem;
    }

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

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--grey-dark);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-mid);
    width: 100%;
    max-width: none;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--grey-light);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.footer-links svg {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .site-header {
        padding: 1rem 2rem;
    }

    .content-section {
        padding: 5rem 2rem;
    }

    .hero-section {
        padding: 6rem 2rem 4rem;
    }

    .hero-waveform {
        display: none;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .approach-step {
        border-bottom: 1px solid rgba(0,0,0,0.15);
    }

    .approach-step:nth-child(2) {
        border-right: none;
    }

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .approach-step {
        border-right: none;
    }

    .site-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-section {
        padding: 6rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .podcast-info {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip link */
.skip-link {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2rem;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: top 0.3s ease;
}

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

/* Admin bar adjustment */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
