/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #ffffff;
    --text-color: #222222;
    --gray-color: #999999;
    --pink-color: #e91d63;
    --link-color: #0085bd;
    --link-hover: #60a5dd;
    --border-color: #e3e3e3;
    --footer-bg: #ffffff;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    color: var(--text-color);
    background-color: var(--primary-bg);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

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

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

/* Header */
#header {
    padding: 60px 0 40px 0;
    position: sticky;
    top: 0;
    background-color: var(--primary-bg);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#header.header-stuck {
    background-color: #fcdde8;
}

#header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo h1 {
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

#logo h1 a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

#logo h1 a:hover {
    color: var(--pink-color);
}

#main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

#main-nav li {
    position: relative;
}

#main-nav a {
    font-size: 0.95em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gray-color);
    padding: 5px 0;
    transition: color 0.3s ease;
}

#main-nav a.active {
    color: var(--text-color);
}

#main-nav a:hover {
    color: var(--pink-color);
}

/* Mobile Menu */
#mobile-menu-toggle {
    display: none;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 400;
}

#mobile-nav {
    display: none;
}

#mobile-nav.mobile-nav-visible {
    display: block;
    text-align: center;
    padding: 20px 0;
    background-color: var(--footer-bg);
}

#mobile-nav ul {
    list-style: none;
}

#mobile-nav li {
    margin: 10px 0;
}

#mobile-nav a {
    font-size: 1.1em;
    font-weight: 300;
    padding: 10px 20px;
    display: inline-block;
    color: var(--text-color);
}

#mobile-nav.mobile-nav-hidden {
    display: none;
}

/* Page Dividers */
.page-divider {
    height: 2px;
    background-color: var(--border-color);
    margin: 0 3%;
}

/* Main Content */
#main-content {
    padding: 50px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3%;
    align-items: center;
}

.left-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 0.5px solid transparent;
    transition: border-color 0.3s ease;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 66%;
    transition: opacity 0.3s ease;
}

.profile-link {
    display: block;
    position: relative;
}

.profile-link:hover .image-container {
    border-color: var(--pink-color);
}

.profile-link:hover .profile-image {
    content: url('../images/profile.jpg');
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background-color: rgba(252, 221, 232, 0.1);
}

.profile-link:hover .profile-overlay {
    opacity: 1;
}

.about-text {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--pink-color);
    background-color: rgba(252, 221, 232, 0.9);
    padding: 15px 30px;
    border-radius: 8px;
}

.right-column {
    display: flex;
    align-items: center;
}

.intro-text {
    padding: 0 20px;
}

.intro-text h1 {
    font-size: 1.85em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    line-height: 1.3;
    color: var(--text-color);
}

.intro-lines {
    border-left: 1px solid var(--text-color);
    padding-left: 30px;
}

.intro-lines p {
    font-size: 1.15em;
    font-weight: 320;
    line-height: 1.9;
    margin-bottom: 12px;
    color: var(--text-color);
}

.intro-lines p strong {
    font-weight: 700;
}

.intro-lines a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.intro-lines a:hover {
    color: var(--pink-color);
}

/* Footer */
#footer {
    padding: 50px 0;
    background-color: var(--primary-bg);
}

#footer .wrapper {
    display: flex;
    justify-content: flex-end;
}

#social-links {
    display: flex;
    gap: 15px;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-color);
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: var(--pink-color);
}

/* Responsive Design */
@media (max-width: 767px) {
    #header .wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    #main-nav {
        display: none;
    }
    
    #mobile-menu-toggle {
        display: block;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text h1 {
        font-size: 1.5em;
    }
    
    .intro-lines p {
        font-size: 1em;
    }
    
    #header {
        padding: 30px 0;
    }
    
    #logo h1 {
        font-size: 2em;
    }
    
    #main-content {
        padding: 30px 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .intro-text h1 {
        font-size: 1.8em;
    }
    
    .intro-lines p {
        font-size: 1em;
    }
}

@media (max-width: 640px) {
    .wrapper {
        padding: 0 5%;
    }
    
    .page-divider {
        margin: 0 5%;
    }
    
    .intro-text {
        padding: 0;
    }
    
    .intro-text h1 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    
    .intro-lines p {
        font-size: 0.9em;
    }
    
    .intro-lines {
        padding-left: 20px;
    }
}

/* Work Page Styles */
.work-hero {
    margin-bottom: 30px;
    padding: 20px 0;
}

.work-hero h1 {
    font-size: 1.4em;
    font-weight: 320;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
    text-transform: uppercase;
}

.work-hero h1 strong {
    font-weight: 800;
    color: var(--pink-color);
}

.work-intro {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.work-intro p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.work-intro a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.work-intro a:hover {
    color: var(--pink-color);
}

.button-group {
    margin: 25px 0;
}

.btn {
    display: inline;
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    font-size: 1.05em;
    font-weight: 320;
    transition: color 0.3s ease;
}

.btn:hover {
    color: var(--pink-color);
}

.btn strong {
    font-weight: 700;
}

.work-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.work-section:last-of-type {
    border-bottom: none;
}

.work-section h2 {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    padding-top: 5px;
}

.work-section-content p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.work-section-content p strong {
    font-weight: 700;
}

.work-section-content p em {
    font-style: italic;
}

.work-section-content a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.work-section-content a:hover {
    color: var(--pink-color);
}

.accomplishments-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.accomplishments-list li {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.accomplishments-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.accomplishments-list li strong {
    font-weight: 700;
}

.accomplishments-list li a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.accomplishments-list li a:hover {
    color: var(--pink-color);
}

@media (max-width: 900px) {
    .work-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-hero h1 {
        font-size: 1.3em;
    }
}

/* Cirque Page Styles */
.cirque-hero {
    margin-bottom: 30px;
    padding: 20px 0;
}

.cirque-hero h1 {
    font-size: 1.4em;
    font-weight: 320;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
    text-transform: uppercase;
}

.cirque-hero h1 strong {
    font-weight: 800;
}

.cirque-content-grid {
    margin-bottom: 50px;
}

.cirque-content-grid::after {
    content: "";
    display: table;
    clear: both;
}

.cirque-content-grid p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cirque-text a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.cirque-text a:hover {
    color: var(--pink-color);
}

.cirque-video {
    float: right;
    width: 48%;
    margin-left: 4%;
    margin-bottom: 20px;
}

.cirque-video video,
.cirque-video iframe {
    width: 100%;
    display: block;
}

.cirque-links {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.cirque-links p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
}

.cirque-links a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.cirque-links a:hover {
    color: var(--pink-color);
}

/* Gallery Styles */
.cirque-gallery {
    margin-bottom: 60px;
}

.cirque-gallery h2 {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 40px;
}

.gallery-main {
    position: relative;
    margin-bottom: 20px;
}

.gallery-display {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-display img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.photo-credit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 320;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 2em;
    color: var(--text-color);
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background-color: rgba(255, 255, 255, 1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .cirque-video {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
        position: static;
    }

    .cirque-hero h1 {
        font-size: 1.2em;
    }

    .gallery-nav {
        font-size: 1.5em;
        padding: 5px 15px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

/* Aerial Acts Page Styles */
.acts-hero {
    margin-bottom: 30px;
    padding: 20px 0;
    text-align: center;
}

.acts-hero h1 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
}

.act-section {
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.act-video {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
}

.act-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ffffff;
    display: block;
}

.act-content {
    overflow: hidden;
}

.act-content h2 {
    font-size: 1.4em;
    font-weight: 320;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 20px;
}

.act-content p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.act-content p strong {
    font-weight: 700;
}

.act-content p em {
    font-style: italic;
}

.act-button {
    margin-top: 25px;
}

.btn-dark {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-dark:hover {
    background-color: #000000;
    color: #ffffff;
}

.section-header-light {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 40px;
}

.other-acts-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.grid-act h3 {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 20px;
}

.grid-act p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.grid-act p strong {
    font-weight: 700;
}

.grid-act p em {
    font-style: italic;
}

.grid-act-video video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #ffffff;
    display: block;
}

.grid-act-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.sequence-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.sequence-list li {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.sequence-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.sequence-list li a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.sequence-list li a:hover {
    color: var(--pink-color);
}

.booking-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.booking-section h2 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
    margin-bottom: 20px;
}

.booking-section p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
}

.booking-section a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.booking-section a:hover {
    color: var(--pink-color);
}

/* About Page Styles */
.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    cursor: pointer;
}

.about-image img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.about-headshot:hover {
    content: url('../images/Headshot-illustrated.png');
}

.about-content p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-content p strong {
    font-weight: 700;
}

.about-content a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: var(--pink-color);
}

.get-in-touch {
    margin-top: 60px;
}

.get-in-touch h2 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
    margin-bottom: 20px;
}

.get-in-touch > p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

.get-in-touch a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.get-in-touch a:hover {
    color: var(--pink-color);
}

.contact-group {
    margin-bottom: 40px;
}

.contact-group h3 {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 15px;
}

.contact-group p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-group p:last-child {
    margin-bottom: 0;
}

/* Writing Clips Page Styles */
.writing-hero {
    margin-bottom: 30px;
    padding: 20px 0 40px 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.writing-hero h1 {
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
}

.writing-intro {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.writing-intro p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
}

.writing-intro a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.writing-intro a:hover {
    color: var(--pink-color);
}

.writing-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.writing-section:last-of-type {
    border-bottom: none;
}

.writing-section h2 {
    font-size: 1.15em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    padding-top: 5px;
}

.writing-section-content {
    /* Content flows in right column */
}

.writing-item {
    margin-bottom: 40px;
}

.writing-item:last-child {
    margin-bottom: 0;
}

.writing-item h3 {
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: 8px;
}

.writing-date {
    font-size: 0.95em;
    font-weight: 320;
    color: #888888;
    margin-bottom: 5px;
    font-style: italic;
}

.writing-item p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.6;
    margin-bottom: 5px;
    color: var(--text-color);
}

.writing-item a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.writing-item a:hover {
    color: var(--pink-color);
}

.writing-list {
    list-style: none;
    padding-left: 0;
}

.writing-list li {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.6;
    margin-bottom: 5px;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.writing-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.writing-list li a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.writing-list li a:hover {
    color: var(--pink-color);
}

/* Blog/Travel Reads Page Styles */
.blog-hero {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.blog-hero h1 {
    font-size: 1.4em;
    font-weight: 320;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.blog-hero h1 strong {
    font-weight: 800;
    color: var(--pink-color);
}

.blog-hero p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.blog-post {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

.blog-post:last-of-type {
    border-bottom: none;
}

.blog-post-header h2 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.blog-post-date {
    font-size: 0.95em;
    font-weight: 320;
    color: #888888;
    margin-bottom: 30px;
    font-style: italic;
}

.blog-section {
    margin-bottom: 40px;
}

.blog-section h3 {
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.media-list {
    list-style: none;
    padding-left: 0;
}

.media-list li {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.media-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.media-list li strong {
    font-weight: 700;
}

.media-list li em {
    font-style: italic;
    color: #888888;
}

.media-list li a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.media-list li a:hover {
    color: var(--pink-color);
}

@media (max-width: 900px) {
    .act-video {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .acts-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .acts-hero h1 {
        font-size: 1.3em;
    }

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

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

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

    .writing-hero h1 {
        font-size: 1.3em;
    }

    .blog-post-header h2 {
        font-size: 1.4em;
    }
}

/* Blog Post Preview (for index page) */
.blog-post-preview {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.blog-post-preview:last-of-type {
    border-bottom: none;
}

.blog-post-preview h1.preview-title {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.blog-post-preview h1.preview-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-preview h1.preview-title a:hover {
    color: var(--pink-color);
}

/* Keep old h2 selector for backwards compatibility */
.blog-post-preview h2 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.blog-post-preview h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-preview h2 a:hover {
    color: var(--pink-color);
}

.blog-post-preview .blog-post-date {
    font-size: 0.95em;
    font-weight: 320;
    color: #888888;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-post-preview .blog-post-excerpt {
    font-size: 1em;
    font-weight: 320;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.blog-post-preview .blog-post-excerpt ul {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-preview .blog-post-excerpt li {
    margin-bottom: 10px;
}

.blog-post-preview .excerpt-ellipsis {
    color: #888888;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Featured Image - Preview (on index page) */
.featured-image-preview {
    margin: 20px 0;
    max-width: 600px;
}

.featured-image-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.featured-image-preview a:hover img {
    opacity: 0.85;
}

/* Featured Image - Full Width (on individual blog post page) */
.featured-image-full {
    margin: 30px 0;
    width: 100%;
}

.featured-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.read-more {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.3s ease;
}

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

/* Blog Navigation */
.blog-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.btn-back {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: var(--pink-color);
}

/* Pagination Navigation */
.pagination-nav {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
    transition: color 0.3s ease;
}

.pagination-link:hover {
    color: var(--pink-color);
}

.pagination-link.older {
    margin-left: auto;
}

/* Blog Post Content Styling */
.blog-post-content h2 {
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.blog-post-content h3 {
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-post-content p {
    font-size: 1em;
    font-weight: 320;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.blog-post-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-post-content a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

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

/* Also apply same styles to excerpts */
.blog-post-excerpt h2 {
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-post-excerpt h3 {
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.blog-post-excerpt p {
    margin-bottom: 15px;
}



/* Product Portfolio Styles */
.portfolio-header {
    margin-bottom: 40px;
}

.portfolio-header h2 {
    font-size: 1.4em;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-bottom: 0;
    color: var(--text-color);
    text-transform: none;
}

.portfolio-header h2 .portfolio-title {
    font-weight: 700;
    color: var(--pink-color);
    text-transform: uppercase;
}

.portfolio-header h2 em {
    font-style: italic;
    font-weight: 400;
}

.portfolio-intro {
    margin-bottom: 40px;
}

.portfolio-intro p {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.portfolio-phases {
    margin-bottom: 60px;
}

.phases-list {
    list-style: decimal;
    margin-left: 30px;
    margin-bottom: 30px;
}

.phases-list li {
    margin-bottom: 30px;
    color: var(--text-color);
}

.phase-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.phase-title .phase-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phase-title .phase-link:hover {
    color: var(--pink-color);
}

.phase-title strong {
    font-weight: 700;
}

.phase-description {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
}

.phase-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phase-link:hover {
    color: var(--pink-color);
}

.see-examples {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    font-style: italic;
}

.see-examples:hover {
    color: var(--pink-color);
}

.portfolio-footer-text {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 30px;
}

.portfolio-footer-text a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.portfolio-footer-text a:hover {
    color: var(--pink-color);
}

.portfolio-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.portfolio-btn {
    background-color: #2B2B2B;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    display: block;
}

.portfolio-btn:hover {
    background-color: var(--pink-color);
}

/* Section Break */
.section-break {
    background-color: #333333;
    padding: 30px 0;
    margin: 160px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    scroll-margin-top: 100px;
}

.section-break img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.section-break span {
    font-size: 18px !important;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.phase-section {
    margin-bottom: 60px;
    padding-top: 0;
}

/* Portfolio Learn Section Styles */
.section-title {
    font-size: 1.2em;
    font-weight: 320;
    letter-spacing: 0.08em;
    margin-bottom: 60px;
    color: #999999;
    text-transform: uppercase;
}

.section-title strong {
    font-weight: 700;
    color: #999999;
}

.subsection-title {
    font-size: 1.4em;
    font-weight: 320;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    margin-top: 80px;
    color: var(--pink-color);
}

.subsection-title strong {
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    background-color: #e8e8e8;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-quote {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-quote strong {
    font-weight: 700;
}

.testimonial-author {
    font-size: 0.85em;
    font-weight: 400;
    color: #666666;
}

.testimonial-author strong {
    font-weight: 600;
}

/* Portfolio Gallery Specific Styles */
.portfolio-gallery .gallery-thumbnails {
    display: none;
}

.portfolio-item-image .gallery-main {
    width: 100%;
    flex-shrink: 0;
}

.portfolio-gallery {
    position: relative;
    width: 100%;
    height: 380px;
}

.portfolio-gallery .gallery-display {
    position: absolute;
    left: 15.2%;
    width: 69.6%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-gallery .gallery-display img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.portfolio-gallery .gallery-preview {
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
}

.portfolio-gallery .gallery-preview.prev {
    left: 5%;
}

.portfolio-gallery .gallery-preview.next {
    right: 5%;
}

.portfolio-gallery .gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-gallery .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
}

.portfolio-gallery .gallery-prev {
    left: 10%;
}

.portfolio-gallery .gallery-next {
    right: 10%;
}

.section-intro {
    font-size: 1.05em;
    font-weight: 320;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.portfolio-item-container {
    background-color: #f5f5f5;
    padding: 40px 30px 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    border-radius: 8px;
}

.portfolio-item-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-item-image img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    width: auto;
    display: block;
}

.portfolio-item-content {
    display: flex;
    flex-direction: column;
}

.portfolio-item-content h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--text-color);
}

.portfolio-item-text {
    color: #000000;
}

.portfolio-item-text p {
    font-size: 0.95em;
    font-weight: 320;
    line-height: 1.7;
    margin-bottom: 15px;
}

.portfolio-item-text p:last-child {
    margin-bottom: 0;
}

.portfolio-item-text .caption {
    font-size: 0.85em;
    font-style: italic;
    margin-top: 10px;
}

/* Sticky Vertical Navigation Sidebar */
.portfolio-navigation-sticky {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-navigation-sticky.visible {
    opacity: 1;
    visibility: visible;
}

.portfolio-navigation-sticky .nav-circles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-navigation-sticky .nav-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    position: relative;
}

.portfolio-navigation-sticky .nav-circle:hover {
    transform: scale(1.1);
}

.portfolio-navigation-sticky .nav-circle img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.portfolio-navigation-sticky .nav-circle span {
    font-size: 0.65em;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    max-width: 60px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.portfolio-navigation-sticky .nav-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    z-index: -1;
}

.portfolio-navigation-sticky .nav-circle:hover::before {
    background-color: var(--pink-color);
}

/* Old navigation styles (removed but keeping for reference) */
.portfolio-navigation {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.portfolio-navigation h3 {
    font-size: 1.1em;
    font-weight: 320;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 40px;
    color: #cccccc;
    text-transform: uppercase;
}

.nav-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    position: relative;
}

.nav-circle:hover {
    transform: translateY(-5px);
}

/* Circular background - light grey by default, pink on hover */
.nav-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    z-index: 0;
}

.portfolio-navigation-sticky.stuck .nav-circle::before {
    width: 40px;
    height: 40px;
}

.nav-circle:hover::before {
    background-color: var(--pink-color);
}

.circle-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.circle-icon.pink {
    background-color: var(--pink-color);
}

.nav-circle:hover .circle-icon {
    background-color: var(--pink-color);
}

.nav-circle.active .circle-icon {
    background-color: var(--pink-color);
}

.circle-icon img {
    width: 60px;
    height: 60px;
    background: transparent;
    object-fit: contain;
}

.nav-circle span {
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-header h2 {
        font-size: 1.3em;
    }
    
    .portfolio-statement {
        font-size: 1.2em;
    }
    
    .portfolio-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-buttons {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation - Bottom Sticky */
@media (max-width: 1280px) {
    .portfolio-navigation-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        background-color: #ffffff;
        border-top: 1px solid #ddd;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        opacity: 1 !important;
        visibility: visible !important;
    }

    .portfolio-navigation-sticky .nav-circles {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
        max-width: 100%;
    }

    .portfolio-navigation-sticky .nav-circle img {
        width: 35px;
        height: 35px;
    }

    .portfolio-navigation-sticky .nav-circle span {
        font-size: 0.55em;
        max-width: 50px;
    }

    .portfolio-navigation-sticky .nav-circle::before {
        width: 35px;
        height: 35px;
    }

    /* Add padding to bottom of page content so it doesn't get hidden behind nav */
    #main-content {
        padding-bottom: 100px;
    }
}

/* Mobile Case Study Layout - Stack Vertically */
@media (max-width: 768px) {
    .portfolio-item-container {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .portfolio-item-image {
        grid-column: 1 !important;
        order: 1;
    }

    .portfolio-item-content {
        grid-column: 1 !important;
        order: 2;
    }

    .portfolio-item-container h4 {
        grid-column: 1 !important;
        order: 0;
    }

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

    .portfolio-gallery {
        height: 300px;
    }
}
